Download
We're evolving to serve you better! This current forum has transitioned to read-only mode. For new discussions, support, and engagement, we've moved to GitHub Discussions.

How to switch off mobile menu?

  • #11497
    Avatar photo[anonymous]

    Hi there,

    I am using the  Massively  theme, and do not need a menu at all… so I have not created one, but in mobile view, it still has the menu button , even though its blank… how can I switch this off in the theme? thank in advance for any help you can offer

    #11499
    Avatar photo[anonymous]

    I haven’t tested this because I don’t have that theme installed, but try this:

    @media screen and (max-width: 980px)
    #navPanelToggle {
        display: none;
    }

    Add it to your Custom CSS in Tools & Plugins.

    #11500
    Avatar photo[anonymous]

    ok thank you, I will try it.

    #11501
    Avatar photo[anonymous]

    I did try it, but it did not work unfortunately,

    #11593
    Avatar photo[anonymous]

    You could just say

    #navPanelToggle {
        display: none;
    }

    and that will hide the mobile menu.

    #11594
    Avatar photo[anonymous]
    [anonymous] wrote:

    You could just say

    Plain text
    Copy to clipboard
    Open code in new window
    <span class=”enlighter-c0″>#navPanelToggle {</span>
    <span class=”enlighter-text”> display: none;</span>
    <span class=”enlighter-g1″>}</span>
    #navPanelToggle { display: none; }

    #navPanelToggle { display: none; } and that will hide the mobile menu.

    Amazing.. that did the job.. nice and simple… appreciate the reply fix.