Dynadot โ€” .com Transfer

[Resolved] Stupid IE bumping links up and down on hover

Spaceship Spaceship
Watch

John84

Established Member
Impact
2
stupid IE bumping links up and down on hover

This is driving me nuts. If you view the following page on IE ...

http://bornwild.info/new/index.php

... and hover over the navigation, you'll notice the darn thing jumping around. Why is this? Even if I just change the background color on hover it still jumps around so it's not the relative positioning screwing it up.

Help pleeeeeeeease.
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
AfternicAfternic
John84 said:
This is driving me nuts. If you view the following page on IE ...

http://bornwild.info/new/index.php

... and hover over the navigation, you'll notice the darn thing jumping around. Why is this? Even if I just change the background color on hover it still jumps around so it's not the relative positioning screwing it up.

Help pleeeeeeeease.

In your css.css file, Change:

Code:
#navblock .menu a:hover
{
position:relative;
top:1px;
left:1px;
border-color:#0099FF #B2D9F8 #B2D9F8 #0099FF;
}

to

Code:
#navblock .menu a:hover
{
position:relative;
top:0px;
left:0px;
border-color:#0099FF #B2D9F8 #B2D9F8 #0099FF;
}
 
0
•••
Actually, it was fixed.... had to set a height attribute to the li element. Thanks, though.
 
0
•••
Dynadot โ€” .com TransferDynadot โ€” .com Transfer
Domain Recover
DomainEasy โ€” Payment Flexibility
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back