Navbar Icon wont close navbar

Im having an issue where when I load my site, source3media.com, the menu automatically opens on page load and will not close. I have checked the inspector console, nothing seems to show up. I haven’t modified any of the code for the theme outside of the customizer/x editor.

It would be great if I could get help on this,
thank you in advance!

Hi there,

It is because of the code that you have added to change the main navigation to a mobile menu for all device width.

Please try this instead:

  .masthead-stacked .x-btn-navbar {
    display: inline-block;
  }

  .x-nav-wrap.desktop {
    display: none;
  }

  .x-nav-wrap.mobile.collapse.in,
  .x-nav-wrap.mobile {
    display: block !important;
  }

  .x-nav-wrap.mobile.collapse,
  .x-nav-wrap.mobile.x-collapsed {
    display: none !important;
  }

Hope this helps.

1 Like

Awesome! This worked perfectly, I took over the site from someone else and didn’t realize they had that in there! Thank you for the help!

1 Like