• Hello all,

    I need some help with the mobile version of WordPress. Following plugin updates, the hamburger menu isn’t working on mobile. Even after deactivating all the plugins, the hamburger menu still did not work. Although I know there are javascript conflicts on the website, I have no idea how to resolve them. Can anyone help me with this?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Hi there,

    I visited the site and I am not seeing any Javascript errors right now. The mobile menu is opening for me, but it looks like the font and background are colored white, which makes it look like the menu items aren’t there.

    In your Custom CSS section in the Customizer, please locate this code:

    #site-header,
    #menu-primary-container,
    #site-header-sticky-wrapper {
      z-index: 39;
      background: #fff;
    }

    Once you find it, update it to look like this instead:

    @media all and (min-width: 800px) {
    
      #site-header,
      #menu-primary-container,
      #site-header-sticky-wrapper {
        z-index: 39;
        background: #fff;
      }
    }

    You can copy and paste the whole thing to make it easy. Then you’ll see the menu items in the mobile menu.

    Thread Starter chinerdene

    (@chinerdene)

    Thank you so much! it worked.

    Theme Author Ben Sibley

    (@bensibley)

    You’re welcome! Stay in touch if you need anything else and I’ll be happy to help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hamburger menu not working on mobile’ is closed to new replies.