Lisa Benham wrote: > Layout works fine in Firefox 2, but IE7 nests absolute positioned > #pageNav and h1, h2 header divs in content div (sibling) instead of > wrapper (parent)? > > Or at least it looks like it - lines up with it, exactly? > > http://www.artbetweenus.org/stage/
Your absolute positioned elements (#pageNav, #homeheader1, #pagethread1...) do not have a specified left position, and sometimes this gives unreliable/wrong results in IE. What I would do is: 1) Make #wrapper position:relative (so it is the reference for the absolute positioned elements) 2) Assign left:0 to all your absolute positioned elements hth, Bruno -- Bruno Fassino http://www.brunildo.org/test ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
