• I’m trying to get rid of the hamburger menu from mobile/tablet designs for my theme.

    It is located here: here

    I’m using the theme Sydney with a child theme.

    Also, if possible, could someone point me to past discussions on how to look for this in the php.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Simple trick, use media queries to hide the menu on mobile / tablet.

    Something like,

    <style type=”text/css”>

    /* Tablet and Wide smartphone styles */
    @media only screen and (max-width: 640px)
    {
    nav[class=mynavmenu] {display: none;}
    }

    </style>

    Thread Starter tom.senkus

    (@tomsenkus)

    Oh, I screwed up. I meant, how do I modify the breakpoints so that this doesn’t occur on mobile. I’m using three social media icons in the menu area, so I’d like to keep the menu display on mobile in the same way that it appears on desktop.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I get rid of the hamburger menu from mobile?’ is closed to new replies.