Burger menu

hey what is the best way of setting up a burger menu on my site for desktop and for mobile?

Thanks
Max

Hi Max,

Do you mean you want to have the burger menu avaiable for both desktop and mobile?

If so, please add this code in the Global CSS:

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

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

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

You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.