[Support request] Mobile Hamburger Menu Appearing Twice

Home Forums Support [Support request] Mobile Hamburger Menu Appearing Twice

Home Forums Support Mobile Hamburger Menu Appearing Twice

  • This topic has 3 replies, 2 voices, and was last updated 2 years ago by David.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2181781
    Warren

    I am having an issue where the Mobile Menu is appearing twice. I have a Mega Menu hamburger menu, as well as what looks like the default Mobile Menu from GP displaying at the same time. When I disable the Mobile Menu in GP, it disables the Mega Menu as well, leaving only the logo. Enabling it produces both menus, of which the GP menu is empty.

    Has there been a fix/solution for this yet?

    #2181799
    David
    Staff
    Customer Support

    Hi there,

    you can hide it using CSS:

    @media (max-width: 750px) {
        #mobile-header .menu-toggle {
            display: none !important;
        }
    }
    #2181802
    Warren

    Thanks David, that worked.

    Is there any way to get the menu to overlay over the content, and not push it down?

    #2181840
    David
    Staff
    Customer Support

    Hmmm… you could try this CSS:

    @media only screen and (max-width: 768px) {
        #mega-menu-wrap-primary {
            position: static !important;
        }
        #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary {
            z-index: 1000;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
        }
    }
    

    But you may want to check with the plugin developer as I do not know if that will cause other issues.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.