severndigital Posted May 29, 2007 Share Posted May 29, 2007 I know this is probably very simple but i have always had a problem getting this to work. I am hoping to solve this problem forever today i created some css information see below .menubar { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; color: #336699; } .menubar a:link { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; color: #336699; text-decoration: none; } .menubar a:hover { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; color: #336699; text-decoration: underline; } nothing fancy .. very simple. however, when i test the code in the browser (firefox and IE) the links turn purple and become underlined after i click them. I tried adding visited and active css to the code to try and defeat it. see below .menubar { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; color: #336699; } .menubar a:link { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; color: #336699; text-decoration: none; } .menubar a:hover { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; color: #336699; text-decoration: underline; } .menubar a:visited { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; color: #336699; text-decoration: none; } .menubar a:active { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; color: #336699; text-decoration: none; } when i do that the purple underlined goes away, but i no longer get the underline on roll over. this is sooooo frustrating. can anyone shed some light on this for me. thank you, chris Link to comment https://forums.phpfreaks.com/topic/53406-solved-cannot-figure-this-out-alink-hover-visited-problem/ Share on other sites More sharing options...
AndyB Posted May 29, 2007 Share Posted May 29, 2007 LoVe HAte helps you remember the correct sequence in which Link, Visited, Hover, Active need to be defined. Link to comment https://forums.phpfreaks.com/topic/53406-solved-cannot-figure-this-out-alink-hover-visited-problem/#findComment-263879 Share on other sites More sharing options...
severndigital Posted May 29, 2007 Author Share Posted May 29, 2007 thank you thank you thank you. Link to comment https://forums.phpfreaks.com/topic/53406-solved-cannot-figure-this-out-alink-hover-visited-problem/#findComment-263885 Share on other sites More sharing options...
bronzemonkey Posted June 1, 2007 Share Posted June 1, 2007 I'd just add that your code would be better off looking like this .menubar, .menubar a, .menubar a:hover { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; color: #336699; } .menubar a { text-decoration: none; } .menubar a:hover { text-decoration: underline; } Link to comment https://forums.phpfreaks.com/topic/53406-solved-cannot-figure-this-out-alink-hover-visited-problem/#findComment-265983 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.