help with css
help with css
Out of context: Reply #18
- Started
- Last post
- 25 Responses
- NONEIS0
You need to set a color just like you have for visited, inside each of the link selectors, i.e.
a:link { text-decoration: none; color: #666;}
a:active { text-decoration: none; color: #000;}
a:visited { text-decoration: none; color: #666; }
a:hover { text-decoration: underline; color: #000;}