Archived topic
How to combine primary and secondary menu together?
3 replies · Started by Jennifer on September 18, 2020
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