Hello ~ RE: http://wildmustard.net/index.html, I notice the rollover link colors change correctly in IE 8.0; HOWEVER, SOME of the rollover link colors do not change in Firefox 4.0.1(!).
Top and bottom links in the index table on the left change, 2 middle links do not. Also "Contact" at the bottom of the page does not change.
this is because of the visited state of the links. Every link you clicked on does not do the hover effect.
You need to either get rid of the a:visited definition in your stylesheet completely or move it above the a:hover entry in your CSS, that will do too.
Thank you! Your comment helped a lot. The following works fine in both Firefox and IE. In looking more closely, I think I deleted the: 'text-decoration: none;' line in the a:visited {declaration}. I think that was the root cause of the original problem.
Thank you for your assistance and looking at this with new eyes.
Web development includes all aspects of presenting content on intranets and the Internet, including delivery development, protocols, languages and standards, server software, browser clients, databases and multimedia generation.
this is because of the visited state of the links. Every link you clicked on does not do the hover effect.
You need to either get rid of the a:visited definition in your stylesheet completely or move it above the a:hover entry in your CSS, that will do too.
bye,
Alex