I want to display 2 navigation menus in desktop and 3 in mobile.
I have added third navigation menu using this following doc.
https://generatepress.com/forums/topic/add-third-navigation-menu-gpp-1-8/
I wanted to display this menu in mobile only so I added this CSS.
@media (min-width: 768px) {
.third-navigation{
display: none !important;
}
}
1.In mobile it is displaying full menu instead of showing toggle button (3 lines). How can I display toggle button for third navigation?
2. Also In mobile i want to display 3 menu toggles side by side instead of as stacked. How can I do that?
I want to display like this.
Header
Menu_1 Menu_2 Menu_3
Content
Thanks