Showing Mobile Menu on Desktop

Wouldn’t it be cool to force the mobile menu to show on desktop? It’s easy!


Copy and paste this code into CSS editor:

/* MOBILE MENU ON DESKTOP *******/

//Show burger and hide desktop nav//
.header .header-burger {
  display: flex;
  order: 2;
}

.header-nav, .header-actions {
  display: none;
}

.header--menu-open .header-menu {
  opacity: 1;
  visibility: visible;
}

Hide desktop navigation and display the mobile menu instead!