CSS and linking help needed

admin

Administrator
Staff member
I have a web page and all linked text is color #336699, which is a hue of orange. Anyway, The current code I am using is:

<STYLE>
A {color:none;text-decoration:underline}
A:visited {color:#336699;text-decoration:underline}
A:active {color:#336699;text-decoration:underline}
A:hover {color:none;text-decoration:none}
</STYLE>

My problem is that visited links are still appearing underlined in blue even though i want it and have designated it to be underlined in color #336699. The active and hover states seem to be working fine, it is just the visited that isn't.

Thanks,
Davenone isn't a valid value for the property color.
If I understand what you want, this should work. Also, please refer back to your post in the HTML Section, there have been several replies there.

<style type="text/css">
a:link, a:visited {
color: #369;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
</style>Yeah, it was definately a good idea to look back to the HTML forums because I found my answer there. Also, thank you for your help. As it turns out all i needed to do was pick the right color

-DaveGood, good, glad you got it all worked out. ;)
 
Back
Top