We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Hide menus on mobile but show on desktop

Hide menus on mobile but show on desktop

Dan1213
Excursionist
25 0 8

 

My Shop URL : DanLo

I’ve implemented custom coding in my store that allows specific menus to be hidden on the header when viewed on desktop but visible on mobile. Now, I need additional code to do the opposite—hide certain menus on the mobile header while ensuring they display perfectly on desktop.

Like i want to hide Men, Women, Kids, electronics, accessories, Home Decor & Kitchen Accessories.

Replies 6 (6)

topnewyork
Astronaut
1552 191 253

Hi @Dan1213 , kindly share your store URL

Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
Dan1213
Excursionist
25 0 8

danlo.in

topnewyork
Astronaut
1552 191 253

 

@Dan1213  check the below code

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
    /* Hide specific menu items on mobile */
    @media only screen and (max-width: 767px) {
        #HeaderDrawer-men,
        #HeaderDrawer-women,
        #HeaderDrawer-kids,
        #HeaderDrawer-electronics,
        #HeaderDrawer-accessories,
        #HeaderDrawer-home-decor,
        #HeaderDrawer-kitchen-accessories {
            display: none !important;
        }
    }

    /* Ensure menu items are visible on desktop */
    @media only screen and (min-width: 768px) {
        #HeaderDrawer-men,
        #HeaderDrawer-women,
        #HeaderDrawer-kids,
        #HeaderDrawer-electronics,
        #HeaderDrawer-accessories,
        #HeaderDrawer-home-decor,
        #HeaderDrawer-kitchen-accessories {
            display: block !important;
        }
    }
</style>

 

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
Dan1213
Excursionist
25 0 8

Home Decor & Kitchen Accessories       it is together so edit the code accordingly

topnewyork
Astronaut
1552 191 253

This is what you wanted? right? if so, my above code will work well with this.

topnewyork_0-1724998825991.png

 

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
hvjjfghh8
Visitor
2 0 0

I was looking for it and this code really worked as i wanted for my site.