View Full Version : font color not showing too


cupids90
09-01-2003, 10:52 AM
Is there sth wrong with my style sheet??
<style type="text/css">
<



a:link
{text-decoration: none;
}

a:active
{text-decoration: none;
color:#ff33ff;
}

a:link
{text-decoration: none;
}


a:visited
{text-decoration: none;
}>

If i dont put like a:link code first, the first code there cannot be seen. eg: if i put a .p div layer, the .p div layer cant be seen. or edited. y??

another thing is i put <font face="Arial, Helvetica, sans-serif" size="2" color="#FF33FF">|
<a href="http://www.lissaexplains.com"> Lissa </a>| but there is no color except for the | y?? lissa appears in blue

kicker91
09-01-2003, 01:49 PM
font colors will not change the color of links. also, you have a:link twice :)

<style type="text/css">
a:link { text-decoration:none; color:#FF33FF; }
a:visited { text-decoration:none; color:#FF33FF; }
a:hover { text-decoration:none; color:COLOR; }
</style>

then the normal link (this) would look like this!

pb&j
09-01-2003, 05:25 PM
you also seem to have a < and a > around your styles. take them out.