How to force mobile menu to remain on desktop site - v. 7.1 - Coding and Customization - Squarespace Forum

PHOTO EMBED

Tue Mar 09 2021 00:52:28 GMT+0000 (Coordinated Universal Time)

Saved by @Abhi #html

/* 768 for tablet - desktop - 992 for desktop */
@media screen and (min-width:768px) {
 /* hide navigation */
    .header-nav {
    display: none;
}
/* Hide header button */
.header-actions {
    display: none;
}
/* show burger */
.header-burger {
  display: flex;
}
/* Show overlay mobile menu */
.header--menu-open .header-menu {
opacity: 1;
visibility: visible;
}
}
content_copyCOPY

https://forum.squarespace.com/topic/154584-how-to-force-mobile-menu-to-remain-on-desktop-site-v-71/