The CSS hover command works but nothing else does. Here is the webpage http://www.mmsracing.ca/events.html and here is the css: http://www.mmsracing.ca/styles.css THANKS!
I don't understand the problem. Your CSS for links has them all remaining white with no decoration other than the hover and this is what they are doing in IE 7.0. Haven't tried any other browsers. What's the problem with the page?
I have the links blue with a ugly underline I want them to be light grey all the time with no underline and red with no underline when you hover.....
a:link, a:visited { color:#ccc; text-decoration: none; } a:hover { color: red; text-decoration: none; } Code (markup): There you go!
You are missing the ; in all a: styles (a:link, a:visited, a:active) , between the words none and color.. except for the a:hover and that is why it is the only one working ... take care