Quote:
|
Originally Posted by John84 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;
}