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
Post a Comment