View Full Version : help with my CSS


bluepink
08-25-2003, 07:18 AM
I need the font family to be verdana.
The size 8.
This color for the text: #43D5FF
This color for the Italic: #FFFF00
This color for the bold: #FF0099
The line height to be 15/17/19
The letter spacing 1.7
The link to be #43FF6B
The hover to be orange
The visited to be #FEFF95
The active to be #D71DFF
The text decorations to be none
The font weight to be normal

pb&j
08-25-2003, 09:21 AM
what have you tried so far?
perhaps something like this...

body,p,td,br {
font-family:verdana;
font-size:8px;
color:#43D5FF;
line-height:17px;
letter-spacing:2px;
}
i {color:#ffff00;}
b {color:#ff0099;}
a {text-decoration:none;}
a:link {color:#43ff6b;}
a:visited {color:#feff95;}
a:active {color:#d71dff;}
a:hover {color:orange;}

all of this is probably found in lissa's css tutorial section.

bluepink
08-25-2003, 09:51 AM
thank you