trying to remove the word “menu” next to the burger menu. www.cuzzoclothing.com for desktop and mobile
Topic summary
A user seeks to remove the text “menu” appearing next to their burger menu icon on both desktop and mobile versions of their Shopify store.
Multiple solutions were provided, all involving CSS code:
Two main approaches:
- Add code to
base.cssfile via Online Store → Theme → Edit code - Add code to Custom CSS section via Online Store → Themes → Customize → Theme settings
The CSS solution targets:
#Details-menu-drawer-container > summary.header__icon > span::after {
display: none !important;
}
Or alternatively sets content: "" to empty the text.
All respondents provided essentially the same fix with minor variations in implementation method. The discussion appears resolved with multiple working solutions offered.
Hello @Mrstep ,
Follow these steps:
-
Go to Online Store → Theme → Edit code
-
Open your base.css file and paste the following code at the bottom:
#Details-menu-drawer-container>summary.header__icon>span:after {
display: none !important;
}
Problem solved don’t forget to Like it and Mark it as Solution!
If you need help with customization/code part you can contact me for services
You can find the email in the signature below.
Regards
Guleria
Hi @Mrstep
Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings
#Details-menu-drawer-container>summary.header__icon>span:after {
content: '' !important;
}
Hello @Mrstep
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.
#Details-menu-drawer-container > summary.header__icon > span::after {
display: none !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hi @Mrstep
You can change it on your store by following this instruction:
-
Go to Shopify > Theme > Customize
-
Copy and paste this code on Theme settings > Custom CSS section
#Details-menu-drawer-container>summary.header__icon>span:after {
content: "" !important;
}
here is the result :


