[Resolved] Hide Mobile Menu (primary navigation)

Home Forums Support [Resolved] Hide Mobile Menu (primary navigation)

Home Forums Support Hide Mobile Menu (primary navigation)

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #607942
    Bambun

    Hi,

    As you can see in the screenshot, I would like to disable the mobile menu (hamburger icon). I use elementor pro menu and I tried different solution read in the forum.

    If use this code


    @media
    (max-width: 768px) {
    .page-id-209 .menu-toggle {
    display: none;
    }
    }

    The hamburger menu disappears in the id page 209

    if I use


    @media
    (max-width: 768px) {
    .menu-toggle {
    display: none;
    }

    It doesn’t work.

    Screenshot

    #607955
    Bambun

    If I use This code, It Rocks!


    @media
    (max-width: 768px) {
    .menu-toggle {
    display: none !important;
    }
    }

    #607957
    David
    Staff
    Customer Support

    Looks like you found the solution!

    #1344093
    Jeffrey

    How can o hide the menu to logged in users only?

    #1344346
    David
    Staff
    Customer Support

    Hi there,

    can you raise a new topic and let us know which menu you need to hide, and is this for Mobile users only.

    #1344656
    Jeffrey

    I just want to do the same thing in this post. Except hide/disable it only for the logged in users. Sorry for the confusion.

    #1344796
    Tom
    Lead Developer
    Lead Developer

    You could do this:

    .logged-in button.menu-toggle {
        display: none !important;
    }
Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.