|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Hover state is causing issues in Firefox
I've having an issue with Firefox and my navbar. It's image based I can't find a way to exclude it from the hover state of a:hover { border-bottom:1px dashed #666;}
When you hover over the links on the navbar, it shifts the page a bit and then back to normal when you leave the hover state. http://www.graphics-tech.com/concept There is the link for example. Thanks |
|
#2
|
||||
|
||||
|
it shifts because of the border-bottom statment in the a:hover.
you can avoid this by setting the border to border:none; for the a-elements in the nav. something like this Code:
#nav_plain a:hover {
text-decoration: none;
color: #AB6700;
border: none;
}
|
|
#3
|
|||
|
|||
|
I did that already. Lol. Not sure how I messed it up but I had that code in there. Just left out the color: xxx;. Could have just been a typo though. Oh well though.
Thanks. |
![]() |
| Viewing: Dev Shed Forums > Web Design > CSS Help > Hover state is causing issues in Firefox |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|