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!