Site logo

Archived topic

Need help for menu displaying

3 replies · Started by Den on February 3, 2021

Viewing posts 1–4 of 4

hello team,

I wanna display MENU on mobile devices but not on desktop devices. Is there any way i can use in order to fulfill this request?

Thanks

Hi there,

do you mean the Menu label that is beside the Hamburger icon ?
If so can you share a link to your site so i can see the current layout.

Hi David,

I want the menu section to display only on mobile devices. Means, if someone opens up my website on computer/desktop, I don't want them to see my menu. Is there any way to "Hide menu in computer devices"

I have shared my website link in the Private Information section.

Theres a few methods, one of which is just adding this CSS to your site:

@media(min-width: 769px) {
  #site-navigation {
    display: none;
  }
}

https://docs.generatepress.com/article/adding-css/

If you also enable the Navigation as Header option in Customizer > Layout > Header it will remove the empty site header that is adding space between the navigation and the content.

This archived topic is closed to new replies.