On Sep 26, 2009, at 4:31 PM, Chris Blake wrote: > http://airora.redrunner.co.uk/node/1 (The spelling mistakes aren't > mine.) > > The logo is too big for it's container, but it's positioned absolute > with a massive z-index. IE7 does not like it and I am certain that I > feel the same about IE.
The usual stacking levels problems in IE 6 & 7. the parent of the logo is relative positioned but the next block (the nav) is also positioned. Both have the same z-index (auto, = 0). The nav comes on top as it comes later in the markup, no mater what z-index you assign to the logo. The usual solution is to assign a z-index to the parent of the logo. Philippe --- Philippe Wittenbergh http://l-c-n.com/ ______________________________________________________________________ css-discuss [[email protected]] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
