Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
Hello, I have a Glozin theme. How can I add the ability to select different menus for the mobile version? Everything is fine in my desktop theme, but for the mobile version I want to change the collection list a little. Thank you
All you need to add media query and add two navigation code.
For media query use below code
<style>
/** For desktop **/
.d-web,.d-mobile{display:none}
@media(min-width:768px){
.d-web{display:block}
}
/** For Mobile only **/
@media(max-width:768px){
.d-mobile{display:block}
}
</style>
add additional div to parent of menu code d-web for web version menu and d-mobile for mobile menu.
We have this advance code for our vendor please refer the below link to see it in action where we have implement completely new menu for mobile users.
Hope this will helps...
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025