Remove Menu Icon From Header

Solved

Remove Menu Icon From Header

martujv
Pathfinder
154 2 35

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!

Accepted Solutions (2)

Made4uo-Ribe
Shopify Partner
8380 2004 2463

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:

Made4uoRibe_0-1715976651744.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

devcoders
Shopify Partner
286 43 65

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;
}

devcoders_0-1716035436166.png

 

 

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

View solution in original post

Replies 5 (5)

conversionist
Shopify Partner
94 8 11
  1. Go to Online Store > Themes > Actions > Edit Code.
  2. In the Assets folder, open your theme.css or theme.scss.liquid file.
  3. Add this code at the end:

 

.menu-icon {
    display: none !important;
}
​

 

Save the changes and refresh your site. This should hide the menu icon on both mobile and desktop

Building 100 Shopify apps for that BMW M5 dream

Follow the journey at https://www.youtube.com/@conversinist
https://
conversionist.online/
Buy me a coffee

Made4uo-Ribe
Shopify Partner
8380 2004 2463

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:

Made4uoRibe_0-1715976651744.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
Zuips
Tourist
4 0 1

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?

Made4uo-Ribe
Shopify Partner
8380 2004 2463

Hi @Zuips 

Would you mind sharing your store URL? Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

devcoders
Shopify Partner
286 43 65

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;
}

devcoders_0-1716035436166.png

 

 

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