Hide Mobile Menu

Solved

Hide Mobile Menu

domo2
Explorer
78 0 19

Hi, how can I completely hide the mobile menu? Thank you!

 

https://qc3p791ywwxe10sl-69711397132.shopifypreview.com

Accepted Solution (1)

BiDeal-Discount
Shopify Partner
365 39 85

This is an accepted solution.

Hi @domo2 

Let try to add custom CSS below:

@media only screen and (max-width: 1023px) {
    .mobile-menu__button--burger {
        display: none;
    }
}

The result will be:

Screenshot 2025-05-07 at 23.10.36.png

 

- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with bundles, quantity breaks, volume discounts. AOV+ with gifts, shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330

View solution in original post

Replies 14 (14)

BiDeal-Discount
Shopify Partner
365 39 85

This is an accepted solution.

Hi @domo2 

Let try to add custom CSS below:

@media only screen and (max-width: 1023px) {
    .mobile-menu__button--burger {
        display: none;
    }
}

The result will be:

Screenshot 2025-05-07 at 23.10.36.png

 

- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with bundles, quantity breaks, volume discounts. AOV+ with gifts, shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330
domo2
Explorer
78 0 19

Thank you very much!

domo2
Explorer
78 0 19

another question would be to hide the video in the background only on the mobile version. Could you help me with that one, too?

 

BiDeal-Discount
Shopify Partner
365 39 85

Yes you can add this custom css:

@media screen and (max-width: 767px) {
    .video__player video {
        display: none;
    }
}
- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with bundles, quantity breaks, volume discounts. AOV+ with gifts, shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330
domo2
Explorer
78 0 19

it worked but there is a Play Button above Sport. Ho do I remove that?

BiDeal-Discount
Shopify Partner
365 39 85

I just checked your site but don't see my recommend code added, did you add it?

- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with bundles, quantity breaks, volume discounts. AOV+ with gifts, shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330
domo2
Explorer
78 0 19

My bad. Just added it.

BiDeal-Discount
Shopify Partner
365 39 85

does it working as expect?

- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with bundles, quantity breaks, volume discounts. AOV+ with gifts, shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330
domo2
Explorer
78 0 19

Yes, but that weird play button is still there.

BiDeal-Discount
Shopify Partner
365 39 85

oh, you should add more this custom css to hide Play button

@media screen and (max-width: 767px) {
  .video-text-wrapper .main-buttons{
    display: none;
  }
}
- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with bundles, quantity breaks, volume discounts. AOV+ with gifts, shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330
domo2
Explorer
78 0 19

It worked, that you very much my guy!!

 

BiDeal-Discount
Shopify Partner
365 39 85

no problem my buddy. Let me know if you need any other support

- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with bundles, quantity breaks, volume discounts. AOV+ with gifts, shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330

devcoders
Shopify Partner
1411 168 442

Hello @domo2 

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > theme.css and paste this at the bottom of the file:


.mobile-menu__button--burger {
    display: none;
}

 

devcoders_0-1746634627968.png

 

 

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!

StevenT_A7
Excursionist
37 4 3

@media only screen and (max-width: 1023px) {
.mobile-menu__button--burger {
display: none !important;
}
}

 

Use this code in CSS file 

Steven Taylor
302-260-8345