View Full Version : CSS Text color code not working?


digidcforumail
08-08-2004, 03:14 AM
Hey All,

How are you? I'm doing good. Just having a bit of a :rolleyes: problem with my CSS style sheet I'm making for my website. I have got everything else to work except for my plain text. Here is how I have it coded in on my style sheet...

h1 {font-family: value;Tempus Sans ITC;}
color: value;(#277E1B)}
p {font-family: value; Tempus Sans ITC;}
color: value;(#277E1B)}

Dose anyone see what is wrong?
Well thank for taking a look at my question, and any help in advance. Talk to you all laters. Have a great weekend. -Malea

Shirl
08-08-2004, 03:20 AM
after the semi-colon after your font name, take out that bracket }

and Im not sure but I dont think youre supposed to put parentheseis around your color code....

kittycat
08-08-2004, 03:25 AM
You have to replace the word value with the actual value as well.

h1 {font-family: Tempus Sans ITC;
color: #277E1B; }
p {font-family: Tempus Sans ITC;
color: #277E1B;}