Closed (fixed)
Project:
Nice Menus
Version:
6.x-1.3
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 May 2009 at 19:10 UTC
Updated:
2 Aug 2011 at 13:47 UTC
I am having problems with nice menus in IE6. I have a view with exposed select fields. The nice menu is above this form. When Nice Menus expands it tucks under the select box. This only happens in IE6 (fine in IE7, FF).
Anyone else have this problem. Ive seen some mention of this problem for previous versions.
http://drupal.org/node/67195
http://drupal.org/node/84608
Comments
Comment #1
Jonas_L commentedYes I have the exact same problem, been fiddling with z-index in the css and I hope that will solve this issue. Anyone got any other idea's how to make nice menu work in ie6?
Edit: Ok I found this -> http://drupal.org/node/113965
Solved it in IE6, still unsure about IE7 though.
Comment #2
add1sun commentedComment #4
pradeeplakhina commentedtry this it will hide select on ie6 while you hover or enter your menu and also solve z-index problem
$(document).ready(function() { if($.browser.msie) { if(($.browser.version) <= 7) { $(".pl_header_menu ul").mouseenter(function() { $("select").css("visibility","hidden"); }); $(".pl_header_menu").mouseleave(function () { $("select").css("visibility","visible"); }); } } });this is html for menu
thanks
pradeep lakhina