Shopify themes, liquid, logos, and UX
Hi, how can I completely hide the mobile menu? Thank you!
https://qc3p791ywwxe10sl-69711397132.shopifypreview.com
Solved! Go to the solution
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:
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:
Thank you very much!
another question would be to hide the video in the background only on the mobile version. Could you help me with that one, too?
Yes you can add this custom css:
@media screen and (max-width: 767px) {
.video__player video {
display: none;
}
}
it worked but there is a Play Button above Sport. Ho do I remove that?
I just checked your site but don't see my recommend code added, did you add it?
My bad. Just added it.
does it working as expect?
Yes, but that weird play button is still there.
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;
}
}
It worked, that you very much my guy!!
no problem my buddy. Let me know if you need any other support
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;
}
@media only screen and (max-width: 1023px) {
.mobile-menu__button--burger {
display: none !important;
}
}
Use this code in CSS file
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