superfish

Superfish drop down menu, how to fix z-index in ie6 and ie7?

我怕爱的太早我们不能终老 提交于 2019-12-06 16:13:17
I am using the superfish plugin for jquery here: clicky it works fine in all modern browsers FF,Safari, Chrome, IE8 but it seems like the z-index is not working in ie6 and 7 you can see the menu is appearing, but being cut off by the elements below it. I have tried adding a z-index everywhere I can think of but nothing seems to fix this. How can I fix this? Thanks!!! I don't have IE6 handy right now so I can test for you. You could try adding "position:relative" to the elements you are applying z-index to. Using superfish with IE you should use the bgiframe plugin. From the superfish FAQ :

Z-index problem in IE7 with jQuery Superfish menu plugin

拈花ヽ惹草 提交于 2019-12-06 00:36:43
问题 I needed to modify jQuery Superfish menu plugin to accommodate using image for the menu. There are submenus under Om oss and Medieomtale. I used sprites images for this menu. It works fine with IE8, FF etc. However IE7 has a problem to show submenus. It shows the submenu but when I try to navigate in the submenu, it fades out. Editor's note A link in this question to www.okadadesign.no to demonstrate the issue was removed, as it is no longer accessible. 回答1: I fixed the z-index problem for

Rails 3.1, assets pipeline and IE 6 & 7 in production mode - some CSS & js are not loaded properly

时间秒杀一切 提交于 2019-12-04 23:58:13
问题 Trying out my Rails 3.1 app in production mode ( Debian 6, Ruby 1.9.2, Passenger). I tried it out using IE 6 & IE 7 and some of the assets are not loaded properly. Everything works fine in dev mode. Some css & js are not loaded properly, thou all the files are being compiled. Specifally I'm having issues with the drop-down ( jquery superfish menu). Everything works fine in IE8, IE 9, Firefox, Chrome both in production & development. The problem only shows up in IE 6 & 7 in Production. Tried

Rails 3.1, assets pipeline and IE 6 & 7 in production mode - some CSS & js are not loaded properly

守給你的承諾、 提交于 2019-12-03 14:16:48
Trying out my Rails 3.1 app in production mode ( Debian 6, Ruby 1.9.2, Passenger). I tried it out using IE 6 & IE 7 and some of the assets are not loaded properly. Everything works fine in dev mode. Some css & js are not loaded properly, thou all the files are being compiled. Specifally I'm having issues with the drop-down ( jquery superfish menu). Everything works fine in IE8, IE 9, Firefox, Chrome both in production & development. The problem only shows up in IE 6 & 7 in Production. Tried clearing out cache ( both in browser and on the server). Recompiling assets. Nothing sees to help. Did

jQuery Menu and ASP.NET Sitemap

早过忘川 提交于 2019-11-29 20:29:15
Is it possible to use an ASP.NET web.sitemap with a jQuery Superfish menu? If not, are there any standards based browser agnostic plugins available that work with the web.sitemap file? I found this question while looking for the same answer... everyone says it's possible but no-one gives the actual solution! I seem to have it working now so thought I'd post my findings... Things I needed: Superfish which also includes a version of jQuery CSS Friendly Control Adaptors download DLL and .browsers file (into /bin and /App_Browsers folders respectively) ASP.NET SiteMap (a .sitemap XML file and

How can I open a Superfish jQuery Menu on click rather than hover?

别来无恙 提交于 2019-11-29 10:13:14
I've had a quick browse around the web for an implementation of Superfish menu by Joel Birch that works on onclick, rather than hover. Found this link by Karl Swedberg at Github, which looks like the ticket. https://gist.github.com/917446 It works like a charm, right up to the point where I click on an active link, at that point the menu closes, and appears to return false. How can I get it to navigate to the actual link destination? Changing this line (line 21, over function): $$.showSuperfishUl().siblings().hideSuperfishUl(); To this: $$.click(function(){$(this).showSuperfishUl().siblings()

jQuery Menu and ASP.NET Sitemap

放肆的年华 提交于 2019-11-28 16:30:57
问题 Is it possible to use an ASP.NET web.sitemap with a jQuery Superfish menu? If not, are there any standards based browser agnostic plugins available that work with the web.sitemap file? 回答1: I found this question while looking for the same answer... everyone says it's possible but no-one gives the actual solution! I seem to have it working now so thought I'd post my findings... Things I needed: Superfish which also includes a version of jQuery CSS Friendly Control Adaptors download DLL and

How can I open a Superfish jQuery Menu on click rather than hover?

北战南征 提交于 2019-11-28 03:23:06
问题 I've had a quick browse around the web for an implementation of Superfish menu by Joel Birch that works on onclick, rather than hover. Found this link by Karl Swedberg at Github, which looks like the ticket. https://gist.github.com/917446 It works like a charm, right up to the point where I click on an active link, at that point the menu closes, and appears to return false. How can I get it to navigate to the actual link destination? 回答1: Changing this line (line 21, over function): $$