Site logo

Archived topic

Why is my main menu sliding behind the home page content?

1 reply · Started by Gabriel on January 26, 2022

Viewing posts 1–2 of 2

My main menu isn't visible and is sliding behind the main content. I thought this was an issue with the Z index settings but adjusting those did not do the trick.

Thanks for your help!
Gabe

Hi there,

Try editing this CSS:

.main-navigation .inside-navigation .main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

To this:

.main-navigation .inside-navigation .main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

I don't think the Outer and Inner z-index: 10; set on the first GB container is needed either.

Let me know :)

This archived topic is closed to new replies.