For the profiles section of the website I am using, I have divs floated left in another div. The container div has overflow:auto applied so that it contains the floated divs correctly. This causes the container div to be moved left, so it looks odd compared to the other pages.EDIT: The insides of the div don't seem to matter, adding this overflow auto to any of my pages' main divs causes an offset.Is there any alternative or way to fix this odd bug?My code (minus excessive PHP echoing):\[code\]<div class="box" style="overflow:auto; text-align: center;"><div style="float:left; width:70%; text-align:left; margin-left:5%; overflow:auto;"><div style = "width:100%; height:300px;"></div><br><br><br></div><div style="float:left; width:25%;"></div></div>\[/code\](To fix the offset, I just have to remove the overflow auto, but that stops it from containing the floated divs)Css:\[code\]div.box{margin: auto;position:relative;left:100px;width: 1000px;min-width:1000px;padding:5px;}\[/code\]