I'm trying to write .css file so I can have multiple variations of links. The problem occurs when I add the following code:
A:link { color: #0000FF; text-decoration: none;}
A:active { color: #0000FF; text-decoration: none;}
A:visited { color: #0000FF; text-decoration: none;}
A:hover { color: #666666; text-decoration: none;}
When I use this code, all the links get defaulted to blue with gray mouseover. I want the menu to have different colored links/mouseover colors. Does anyone know how to do this?
Thanks for any help.
A:link { color: #0000FF; text-decoration: none;}
A:active { color: #0000FF; text-decoration: none;}
A:visited { color: #0000FF; text-decoration: none;}
A:hover { color: #666666; text-decoration: none;}
When I use this code, all the links get defaulted to blue with gray mouseover. I want the menu to have different colored links/mouseover colors. Does anyone know how to do this?
Thanks for any help.