![]() |
|
|
| Subject:
An Issue with My Website
Category: Computers > Programming Asked by: jeffmonty-ga List Price: $9.50 |
Posted:
24 May 2006 13:09 PDT
Expires: 28 May 2006 10:07 PDT Question ID: 732079 |
I'm having an issue with the links on my website at http://www.jkmontgomery.com . When a user puts the mouse pointer over a link on my site, the active link, it is supposed to temporarily change the color of the small horizontal bar over that link from a green/blue to a light grey. This works fine in IE, but it is not working in Firefox. Please let me know what I have to change to fix this. | |
|
|
| There is no answer at this time. |
|
| Subject:
Re: An Issue with My Website
From: mwarden-ga on 24 May 2006 15:35 PDT |
Swich these two lines in your CSS:
#nav li a:hover { border-top: 5px solid #ddd; }
#nav li a.on { border-top: 5px solid #7CCAB1; }
to
#nav li a.on { border-top: 5px solid #7CCAB1; }
#nav li a:hover { border-top: 5px solid #ddd; }
You may also want to add a third line like this to get the original
behavior I think you were going for:
#nav li a.on { border-top: 5px solid #7CCAB1; }
#nav li a:hover { border-top: 5px solid #ddd; }
#nav li a.on:hover { border-top: 5px solid #7CCAB1; } |
If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you. |
| Search Google Answers for |
| Google Home - Answers FAQ - Terms of Service - Privacy Policy |