I’d like the hamburger menu to be displayed on both mobile and desktop. Could someone advise how this can be achieved please? Domain is struckbylashes.com.
Thank you!
I’d like the hamburger menu to be displayed on both mobile and desktop. Could someone advise how this can be achieved please? Domain is struckbylashes.com.
Thank you!
Hello @StruckByLashes ,
Find this css and comment/remove ‘display: none;’
.header--left-side [data-off-canvas--open=left-sidebar] {
display: none;
}
Not sure where it is but may be in theme.liquid or header.liquid.
Once you do it after that add this css in bottom of theme–critical.css , You can find this file under assets.
.header--left-side [data-off-canvas--open=left-sidebar] {
float: left;
}
Thanks
sorry for that issue can you please try this code
.header--left-side [data-off-canvas--open=left-sidebar] {
display: inline-block;
}
ul.x-menu--level-1--container {
opacity: 0;
visibility: hidden;
}
hello @StruckByLashes
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
@media only screen and (min-width: 768px){
.header--left-side [data-off-canvas--open=left-sidebar] {
display: none;
}
}
Thank you very much all!
Both solutions worked great!
If I wanted to have the navigation sub-menus collapsible could you advise how I could do this please? Example store here: doseoflashes.com
Thank you very much! ![]()
I am missing my main menu in the DEBUT template. I tried many solutions from the community but none seems to work. the site is www.hairbyus.net
try this code your menu
@media only screen and (min-width: 750px) {
nav#AccessibleNav {
display: table-cell !important;
}
}