Rob Crowther wrote: > Hi > > I'm working on the following page (sorry for long URL): > > http://www.serviceworksglobal.com/demo/pages/case_studies_testimonials/computacenter.html > > I've encountered a weird problem with IE7. If I right click on one of > the images and select 'Properties' then the content gets cut off just > below the main heading. The page retains it's initial length but the > content disappears. Re-sizing the browser window brings the content > back. I've tried this on an IE7 on XP and an IE7 on Vista. >
Thats a pretty cool guillotine-like effect. I think the problem is this construction body --#outer ----#wrapper #outer is positioned relatively, but has no layout. #wrapper gets layout via zoom and a height of 180px in ie7.css when you click on an img's properties, #outer guillotines #wrapper to its specified height, 180px, and doesn't look further. Interesting, since they have redesigned the position:relative in IE7. Again, a rule of thumb is: whenever a relatively positioned block has to contain a layout-block, be sure that the relatively positioned block has layout, or funny things like disappearance will happen. Move the zoom to #outer (applying layout via zoom and height in #wrapper is tautologous.) Ingo -- http://www.satzansatz.de/css.html ______________________________________________________________________ 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/
