The problem is IE7. The drop down menu stays behind the picture from the main area.
www.slackword.net/astute

Since IE7 and older have broken z-index support, and you have given elements further down the page a z-index, you have to lift the parent-element to make IE7 play ball.

ul.nav li.hover, ul.nav li:hover {
position : relative;
z-index: 3 /* or higher */;
}

regards
        Georg

______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
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/

Reply via email to