Archived topic
How To combine
3 replies · Started by Sourabh on November 29, 2020
HI,
How to combine the secondary menu within the primary menu on the mobile version? I really would like one menu instead of two separate menus on mobile??
Better if all the (Primary + Secondary Header Menus) option combines under Hamburg icon of mobile version?
Thanks:
Hi there,
you would need to enable the Off Canvas Navigation option for Mobile:
https://docs.generatepress.com/article/off-canvas-panel-overview/
Then create a new Menu that has ALL of your menu items and assign this to the Off Canvas location.
Then add this CSS to remove the Secondary Nav Hamburger on Mobile:
@media(max-width: 768px) {
#secondary-navigation {
display: none !important;
}
}
Okay Trying, Thanku
You're welcome