View Full Version : text color


MistressVivi
11-06-2003, 07:26 PM
The tag to change the color of text isn't working - or at least, I'm messing it up somewhere. Here's the tag:
<style type="text/css">
<!--

A:link
{ text-decoration: none; color:#A92B2B }
A:visited
{ text-decoration: none;color:#DE7877 }
A:active
{ text-decoration: underline overline; color:#DE7877 }
A:hover
{ text-decoration: underline; color: #A92B2B;

cursor:crosshair}

body
{ background-color: #FDADAD;
background-attachment: value; fixed

font-color: #9D0605 ;


scrollbar-face-color : #FDADAD;
scrollbar-highlight-color : #FDADAD;
scrollbar-3dlight-color : #9D0605;
scrollbar-shadow-color : #FDADAD;
scrollbar-darkshadow-color : #9D0605;
scrollbar-track-color : #FDADAD;
scrollbar-arrow-color : #9D0605 }


DIV
{color: #9D0605;}
}
.head {
border:1px solid;
margin:1;padding:1;
text-align:left;}

-->
</style>

Thanks for any help anyone can give me!

lefty
11-06-2003, 07:40 PM
It should just be color: #9D0605; :)

MistressVivi
11-06-2003, 09:11 PM
nope, still doesn't work...

kittycat
11-06-2003, 09:34 PM
background-attachment: value; fixed

Change that to
background-attachment: fixed;

And right before the .head, you have an extra } that you should remove.