Site logo

Archived topic

How to combine primary and secondary menu together?

3 replies · Started by Jennifer on September 18, 2020

Viewing posts 1–4 of 4

How do you combine the secondary menu within the primary menu on mobile? I really would like one menu instead of two separate menus on mobile.

Thank you

Hi there,

the simples method would be to use the Off Canvas navigation for mobile, create a new combined Menu and assign it to the off canvas.

Then use this CSS to remove the secondary nav on Mobile:

@media(max-width: 768px) {
    #secondary-navigation {
        display: none;
    }
}

The alternative is to use this method:

https://docs.generatepress.com/article/using-a-different-menu-on-mobile/

Okay thank you :)

You're welcome

This archived topic is closed to new replies.