100% column width not working in IE6-7

The typical problem…everything working great except in IE6&7. The 2nd column gets knocked down below the first. And, no I don’t want it that way for mobile devices.

I want the gray box to fill the width of the browser.

Here’s the url:

http://dayaceglia.com/clients/LL-test/test.php

Anyone know how to fix that?

Any help would be much appreciated.

Thank you.

On your second column simply remove the 100% width and it should work correctly, in IE6 however you may need to apply the double margin fix which is just a matter of halving the margin and applying it for IE6 only which you can do with the the underscore hack as seen below:

#column2 {
    _margin-left: 150px;
}

Works like a dream. Thank you! Thank you!