Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter lauriel

    (@lauriel)

    My drop down menu is hidden behind the galleries when they are showing. The slider is a plugin from grass paper press ( which does not always work so well with 2012)
    Appreciate help. I have a child theme as well which I am using.

    https://www.laurielippe.com

    [Moved to “how to and troubleshooting by moderator]

    In your CSS you have this:

    .main-navigation li ul {
    display: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    z-index: 1;
    }

    The z-index controls the vertical stacking of the elements on the page.
    So if you want it to be on top all the time, I would change that to 200.

    You’ll want to add this to your child theme or custom CSS:

    .main-navigation li ul {
    z-index: 200;
    }
    Thread Starter lauriel

    (@lauriel)

    hmm – seems so logical but not woking. Thanks for your reply, Maybe a larger Z index?, I will keep monkeying with it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘dropdown menu21012 hidden behind gallery’ is closed to new replies.