I am working on a redesign for my site at http://www.financenewstoday.com/newindex.php . My question is I have move just about all the page code controls to CSS, but I can't seem to get something right. I'm sure I am missing something minor but I just don't see it. Here is the code for links in the content: #content a:link{text-decoration:none; color: #1A4771;} #content a:hover{text-decoration:underline; color: #FFAA00;} #content a:visited{text-decoration:none; color: #1A4771;} #content a:active{text-decoration:none; color: #1A4771;} But, for some reason when you visit a page and then go back to the page being worked on and hover over the link you just visited, it no longer changes color or underlines. What could I be missing?
a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective http://www.w3schools.com/css/css_pseudo_classes.asp