Issue with menu in mobile view

Hi,

we are having an issue with a couple of our sites with the hamburger menu in the mobile view - basically does not work, you click on it and get nothing?

I am sure it is potentially a clash with another plugin, but was hoping someone could take a quick look and see if anything obvious stands out and if any workarounds could be suggested.

The primary web site is https://www.assurestor.com

Many thanks

Jason

Hi Jason,

Did you add some custom CSS to change when the mobile menu displays?

If so, please update your code to:

@media (max-width: 1024px) {

  .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.

Hi Jade,

thank you very much, that solved the issue :grinning:
We have not added any CSS ourselves, however my guess is one of the plugins we use on the site had made this change.