Posts: 9,669
Name: Steven Bradley
Location: Boulder, Colorado
|
I'm not seeing it in your code, but the problem you're having is typical for IE6 when the two boxes end up being wider than the container. The common causes are the double margin float bug where you float and add a margin in the same direction (left/left or right/right). IE6 doubles the margin. The other cause is how IE6 mishandles the box model. In that case it's usually the width of any border you've added to one or both of the boxes that adds the extra width.
I didn't see either of those in your code. I'm wondering if it has to do with your use of % for the widths instead of px. Since you're constraining the page in a fixed width wrapper anyway try assigning widths in px to each of the boxes and the wrapper and see if that helps.
|