Hamburger menu on all devices

Hi guys i am responding to the thread found here https://theme.co/apex/forums/topic/always-have-burger-menu-on-all-screen-sizes-with-fixed-top-header/

This works well on my website however when i click the menu the menu items do not show, please see my dev website at: http://d05.8f3.myftpupload.com/

Any ideas?

many thanks

This is the code i used:

a.x-btn-navbar {
display: block;
float: right;
}

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

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

@media (min-width: 668px){
.x-navbar.x-navbar-fixed-top {
position: fixed !important;
}

Hi there,

Thanks for writing in! Please add the following CSS code in the Theme Options > CSS:

@media screen and (max-width: 1800px) {
  a.x-btn-navbar {
    display: block;
    float: right;
  }

  nav.x-nav-wrap.desktop {
    display: none;
  }
  .x-nav-wrap.mobile:not(.x-collapsed) {
    display: block !important;
  }
}

Cheers!

You guys are the best, worked a treat.

Top theme and even better support!

:grinning:

Glad we could help and thank you for your nice words!

Cheers!

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