info 2m-design.net wrote:
> Hey
>  
> I would build a suckerfish menu but the IE6 means to call a strike. In IE6
> the 2nd menu layer was hidden under the next follow menu item...
> i’d tested to fix it with any combinations of  “z-index” but nothing
> happens... 
>  
> i havn’t no more idea and hope one of you could help me...
>  
> here the html code:
>  

'Here is the URL' would be more helpful.

Anyway, the idea is to change the stacking /on hover/

Conditional Comment for IE6:

#nav li.sfhover {
        z-index:1;
        }


Conditional Comment for IE7:

#nav li:hover {
        z-index:1;
        background-position: 0 0;
        }

The background-position hack is to prevent IE7's new hover-bug, 
otherwise, you'd get a sticky flyout.

Grüße

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/

Reply via email to