Re: [WSG] Ie7 test?

2010-02-18 Thread tee
On Feb 18, 2010, at 12:13 PM, Joseph Taylor wrote: Can anyone guess why the columns overlap? http://freemealcenter.com IE7 is confused when you have float and fixed position sat together, the width it moved away from is exactly double the width you declared, as if it triggered the

RE: [WSG] Ie7 test?

2010-02-18 Thread Thierry Koblentz
Can anyone guess why the columns overlap? http://freemealcenter.com The first thing I'd try is to remove the float declaration on the fixed element -- Regards, Thierry www.tjkdesign.com | www.ez-css.org *** List

RE: [WSG] Ie7 test?

2010-02-18 Thread Kepler Gelotte
Add an extra div within left_column, and declare the position:fixed in the new div instead. Or, since you already have an extra div, add this to screen.css: .left_column { width: 220px; float: left; } .left_column .column_cushion { width: 180px; position: fixed; } Best regards, Kepler

RE: [WSG] Ie7 test?

2010-02-18 Thread Thierry Koblentz
Add an extra div within left_column, and declare the position:fixed in the new div instead. Or, since you already have an extra div, add this to screen.css: .left_column { width: 220px; float: left; } .left_column .column_cushion { width: 180px; position: fixed; } I don't think there