Disabling Mobile Menu/Header Bar on Mobile

Hi there,

I want to use the Touchy Menu Plugin, but I need to disable the menu/header that shows up on mobile. The black menu bar is the one we want to disable (see in screenshot).


Is there a way of disabling this?

Let me know! :slight_smile:

Thanks,

Nolan Flynn

Hello,

If I understand you correctly, you want to completely remove the header part that holds menu, logo, search icons… from mobile only but leave them on ipads and desktop etc.

If so, please go to Appearance >> customize >> custom css and js >> custom css box

And then copy and paste the following block of code there and publish.

@media only screen and (max-width: 767px) {
#header {
display: none;
}
}

Thank you