I’m trying to fix this issue in IE7 that when you hover on it it won’t remain in its position but will go to the left side. I’ve tried display:inline but it won’t work in this case.
You can test it here: http://www.sneakyrascal.com/kayak/results.html
This is the code I am using for the main-box(the middle one):
.results #container{
float:left;
width: 527px;
margin:38px 0 0 20px;
padding-left:1px;
position: relative;
border: #ccc 1px solid;
background: #fff;
}
Thanks in advance
The problem is caused by
position:relativeon#main-content. If you remove it the container will not jump any more:Also you might have noticed that your
.sitesdiv was not lining up properly. Addingleft: 0will fix that: