Superfish dropdown goes behind when published to server on IE -


its fine when run on visual studio goes behind if deployed web server on ie. works mozilla.

i found technique ie supersede via z-index , making div @ position:relative. see code example below.

given html.

<div id="header">     <ul class="sf-menu"></ul>     <div id="content"></div> </div> 

and, css..

#header{z-index:2;position:relative; } #content{z-index:1;position:relative; } 

then superfish dropdown in ie should on top of content.


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -