Shopify themes, liquid, logos, and UX
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
Hello!
Basically I want to remove the "menu" icon from the header, both on mobile and desktop.
My theme is Stiletto and my website is www.winnerofficial.com
I tried many codes but nothing works!
Solved! Go to the solution
This is an accepted solution.
Hi @martujv
Check this one.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
button.header__menu-icon.header__icon-touch.header__icon-menu {
display: none !important;
}
And Save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
Hi @martujv
Go to Online Store, then Theme, and click on Edit code.
Locate the file assets/theme.css, and paste the code provided below at the end of the file.
.header__inner .header__links-primary-scroll-container {
display: none;
}
.menu-icon {
display: none !important;
}
Save the changes and refresh your site. This should hide the menu icon on both mobile and desktop
This is an accepted solution.
Hi @martujv
Check this one.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
button.header__menu-icon.header__icon-touch.header__icon-menu {
display: none !important;
}
And Save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
hey im using the theme showcase... ive tried this step but it didnt work.. any idea on how to make it work and remove the button for mobile?
Hi @Zuips
Would you mind sharing your store URL? Thanks!
This is an accepted solution.
Hi @martujv
Go to Online Store, then Theme, and click on Edit code.
Locate the file assets/theme.css, and paste the code provided below at the end of the file.
.header__inner .header__links-primary-scroll-container {
display: none;
}