rezdesign |
03-31-2005 09:48 PM |
Anyone know simple CSS (font style)? Need help!
Having some trouble here with simple CSS stuff. It seems really easy but I can't find the cause of this and it's killing me.
I have a stylesheet that has:
Code:
.default a:link {font-family: Verdana,Arial,Sans-Serif; font-weight: bold; font-size: 12px; text-decoration: underline; color: #FF33FF; }
.default a:visited {font-family: Verdana,Arial,Sans-Serif; font-weight: bold; font-size: 12px; text-decoration: underlinee; color: #FF33FF; }
.default a:hover {font-family: Verdana,Arial,Sans-Serif; font-weight: bold; font-size: 12px; text-decoration: none; color: #000000; }
.default a:active {font-family: Verdana,Arial,Sans-Serif; font-weight: bold; font-size: 12px; text-decoration: underlinee; color: #FF33FF; }
and a PHP page that has:
Code:
<table width='90%' cellspacing='0' cellpadding='0' class='default'>
but for some reason the underline isn't working for the links..!
i also tried calling the class like this
Code:
<td width='100%' class='default'>
but that is basically the same shit and of course gives me the same shit..
i'm editing an exisiting PHP script, so what could cause it to ignore my underline?? :mad:
|