I'm fairly new to CSS and I'm having a bit of an issue. I have used the following:
<style type="text/css">
body {scrollbar-base-color:#5c5a4e; font:Verdana;}
.brown {font-color:#583303; font-size:8pt;}
.red {font-color:#b50909; font-size:8pt;}
a:link{text-decoration:none;}
a:visited{text-decoration:none;}
a:active{text-decoration:none;}
a:hover{text-decoration:none;}
</style>
And then, in the body of the page I am using:
<span class="brown">Text that should be brown</span>
and
<span class="red">Text that should be red</span>
The font style and size are working great, but the color always defaults to black regardless of whether the text is in a brown span or a red span.
Please educate me here. THX
<style type="text/css">
body {scrollbar-base-color:#5c5a4e; font:Verdana;}
.brown {font-color:#583303; font-size:8pt;}
.red {font-color:#b50909; font-size:8pt;}
a:link{text-decoration:none;}
a:visited{text-decoration:none;}
a:active{text-decoration:none;}
a:hover{text-decoration:none;}
</style>
And then, in the body of the page I am using:
<span class="brown">Text that should be brown</span>
and
<span class="red">Text that should be red</span>
The font style and size are working great, but the color always defaults to black regardless of whether the text is in a brown span or a red span.
Please educate me here. THX