On 30/03/2010, at 11:27 AM, Joe Jackson wrote:

> Hi
>
> Does anybody have any solutions on how to get around the following  
> problem
> when viewing the following page in IE6
>
> http://www.ian.thfctalk.com/ccosmetic/index.php
>
> The dropdown menu displays behind the main images on the homepage?   
> On IE8,
> Firefox, Chrome etc it works fine - it's just IE6 that is playing up.
>
> Any ideas or hacks to get around this problem would me most  
> appreciated

It's an IE z-index bug. One way of solving it would be...

#globalnav {
        position: relative;
        z-index: 2;
}

.home-main-text-wrapper {
        z-index: 1;
}

This won't hurt any other browsers but I would put it in an IE  
stylesheet anyway with a comment as to what IE bug is being handled  
just to keep the IE nonsense separate.

Cheers, Tim

______________________________________________________________________
css-discuss [cs...@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