I have finally found something that works in IE but breaks in Firefox. I am using Drupal 6.6 and have a Nice Menu on the top of the page. In IE6 the menu drops down on top of the DIVs below it, but in Firefox it drops down below them.
I have played around with the z-index but have had no luck. Any thoughts would be appreciated. Thanks.
| Comment | File | Size | Author |
|---|---|---|---|
| #12 | nice_menus_default.tgz | 1.44 KB | matteoraggi |
| #9 | ie7 win xp.jpg | 168.5 KB | matteoraggi |
| #4 | O962.jpg | 7.84 KB | Treglis |
| #4 | FF304.jpg | 5.68 KB | Treglis |
| #4 | IE7.jpg | 7.31 KB | Treglis |
Comments
Comment #1
codi commentedI had this same problem for a while. Ended up finding that my nav div had a overflow:hidden which prevented any of the drop downs from showing. Worth double checking before you pull out all your hair like I did.
Comment #2
gettysburger commentedThanks for the clue, but it did not fix it. All of my DIVs have overflow:auto. I played around with other settings and nothing changed. Still hoping for a fix. Many thanks, though.
Comment #3
jondauz commentedI have this same issue... for me this issue popped up after i changed the breadcrumb bar. But the menu seems to behind all the content in the page. So if anyone knows a way to fix this plz tell. Im using drupal 5.x with zen subtheme.... Apparently the drop down doesnt work in both safari and firefox.
Thanks.
Comment #4
Treglis commentedMaybe same problem, except works perfect in Opera 9.62.
Comment #5
Damjan Dvorsek commentedSame problem here.
Anyone found a solution by now.
Comment #6
Damjan Dvorsek commentedjust changing version back to 6.x-1.2
Comment #7
add1sun commentedAny progress here?
Comment #8
gettysburger commentedI have not played with this issue for a while, although it is still broken for me. My guess is that it is theme related. I am using Basic, and I believe that in the page.tpl.php they put the main body div before the header div to load the important content first. This might make the header think that it is below the main body, thus the menu goes below. It's just a thought that I have not tested.
Comment #9
matteoraggi commentedon www.forniture-alberghiere.net is ok with firefox 3.5 but with ie7 there is problem with framework theme
Comment #10
pipicom commentedIndeed it was an "overflow:hidden" issue for me too.. problem solved!
Comment #11
gettysburger commentedI am still having trouble with this. Could you please be more specific how you fixed this, eg. "I put overflow:visible on selector x"? Thanks.
Stephen
Comment #12
matteoraggi commentedhere the patch, you cna check it on www.forniture-alberghiere.net and on www.egioiellerie.com
Comment #13
gettysburger commentedAwesome. Many thanks.
Comment #14
add1sun commentedComment #16
synesis commentedThis fixed it for me...
#navbar
{
overflow: visible;
}
Comment #17
milotimbol commentedI had the same problem menu hiding behind content div on Firefox but not on IE 6
This worked for me
#navbar
{
overflow: visible;
}
thanks synesis!