Hello, I am looking to change my menu layout in the home page of my store. I currently have the hamburger menu on the side of the screen. I would like to change the layout so the collections are displayed from left to right. Is there a way to implement this, but only on desktop? I would like to keep the side menu on mobile due to its phone-friendly layout.
Here is my store link for reference: https://www.sportsoutletexpress.com/
1 Like
@gadjetsgalore
sorry for that issue its theme default menu functionality if long menu item so that was convert hamburger menu you have reduce menu item and font size automation change horizontal menu
Hi KetanKumar,
Could you show me where in my code I would either have to edit or add code to change the menu layout and font size?
1 Like
Yes! this is what I am looking to do on desktop only. can you send me the code?
1 Like
@gadjetsgalore
thanks for confirm please add this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss.liquid->paste below code at the bottom of the file.
@media only screen and (min-width: 1200px) {
button#SiteNavCompressed {
display: none;
}
ul#SiteNav {
display: block !important;
}
.site-nav__link {
font-size: 9px;
padding: 5px;
}
}
1 Like
Thank you! This worked great! I have marked it as a solution.