Site logo

Archived topic

Hide hamburger menu on mobile on select pages

3 replies · Started by Leanne on September 1, 2021

Viewing posts 1–4 of 4

Hi Leanne,

You can create a Hook element for this.

Set your hook to wp_head and add this code on your Hook Element.

<style>
@media (max-width:768px){
    span.custom.slideout-toggle {
        display: none !important;
    }
}
</style>

And then set the display rule location to the pages you want the hamburger menu to be hidden. :D

Thanks so much Elvin! That worked perfectly :)

No problem. Glad it works for you. :D

This archived topic is closed to new replies.