Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Ramona

    (@nextend_ramona)

    Hi @sherkx

    Your problem is that the menu’s container has an overflow:hidden rule on it:

    .section {
        background-image: url("https://s593006646.websitehome.co.uk/wp-content/themes/secondskin/assets/secondskin/backgrounds/section-light-bg.png");
        background-position: center bottom;
        background-repeat: repeat-x;
        overflow: hidden;
        position: relative;
    }

    (the code is coming from your theme’s style.css )
    and that is preventing the menu items to show up when they are outside of this .section.

    If you remove this code and put back the z-index (and position) rules to the menu, it will work.

    For my test, this code was enough to make the menu show up once the overflow:hidden was removed:

    div#nextend-accordion-menu-unique2df4555 {
        position: relative;
        z-index: 3;
    }

    Thread Starter sherkx

    (@sherkx)

    omg Ramona I would never have found that… thank you so so much!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change z-index?’ is closed to new replies.