• Hi folks. I am modifying a site and added the WP-Cycle PHP code directly into the template. Now the drop down menu winds up behind the slide show so no one can click on it. I think it’s a JQuery conflict, but I don’t know how to solve it. Any thoughts?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi efpeterson, this is likely a z-index issue. If you raise the z-index of your menu, or lower the z-index of your slideshow, you should be able to fix the layering order of those elements.

    I had an issue like this. Raising the z-index on my menu didn’t help.

    But when I wrapped the entire menu in another div, and raised it’s z-index to 999 it worked perfectly. So you may have to wrap it

    example

    <div id="menuWrap">
    existing menu code
    </div>

    and css

    #menuWrap {
         z-index: 999;
         }

    @rev. Voodoo Well along with the z-index, you sometimes have to set or adjust the position value, or tweak the z-index of an element higher up. So you might set the z-index of your whole menu to 1 and the z-index of your menu’s dropdowns to 99 or something like that.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Menu Dissapears Behind WP-Cycle’ is closed to new replies.