|
bold font Hi The MoUsY spell checker!
I was wondering if there was a way to make my font on my advice column all bold, because my background is i guess pretty printed, so none of the font colors are very "readable" if you know what I mean. thanks! ps my user name on here is xosodapopx3 so if you would like to look at my column to see for yourself, go ahead :-) thanks again,
Brittney
[ ] Want to answer more questions in the Technology category? Maybe give some free advice about: Advicenators?
I wouldn't really recommend bolding the whole page, but you can use CSS to do that.
If you have a paid account and a custom style, put the following code in the Overall Page Layout box. Otherwise, put this in the Describe yourself box in Profile Settings.
<style type="text/css">
td,p,body{font-weight: bold;}
</style>
Note that if you already have <style type="text/css"> tags, you should just add the td,p,body{font-weight: bold;} line between them without repeating the style tags. If you have anything else modifying td, p, or body, you should just add the font-weight part without repeating everything else.
Another possible solution to the readability issue (without changing the background) is to put the text in a transparent box. (See example 3 on this page: [Link](Mouse over link to see full location))
<style type="text/css">
div#content
{background-color: #ffffff;
filter:alpha(opacity=60); opacity:0.6;}
</style>
For more information about CSS, I recommend this site: [Link](Mouse over link to see full location) ]
More Questions: |