Reply To: mobile menu transparent but when expanded black background

Home Forums Support mobile menu transparent but when expanded black background Reply To: mobile menu transparent but when expanded black background

Home Forums Support mobile menu transparent but when expanded black background Reply To: mobile menu transparent but when expanded black background

#211622
Tom
Lead Developer
Lead Developer

Ah, it looks like you’re creating the transparency with custom code instead of using the built in code in the Page Header add-on.

You’ll want to adjust your code to this:

@media (min-width: 769px) {
    .home .main-navigation:not(.navigation-clone) {
        position: absolute;
        width: 100%;
        background-color: transparent;
    }
}