View Single Post
  #3 (permalink)  
Old May 11th, 2008, 01:37
Aerdan Aerdan is offline
Junior Member
Join Date: Nov 2007
Location: Michigan
Age: 22
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Background-Position Causes IE to Scroll

That makes sense, I looked at the code to see what it could be exposing and this is what I found...

The culprit code:

Code: Select all
#content .box-info {
    background:url(../images/box-top.jpg) no-repeat;
    width:936px;
    overflow:hidden;
    min-height:150px;
    padding:17px;
The displacement was 17px, and it fit the bill. When I removed this padding, the problem was solved. For my own CSS, I put the padding within the main and side column CSS code, and no more problem! Thank you!
Reply With Quote