Hello
I need to remove the search icon and cart icon from Studio theme from header.
Any help?
Thanks!
Hello
I need to remove the search icon and cart icon from Studio theme from header.
Any help?
Thanks!
Hi @Aziz99
If you just don’t want those icons to be shown - you can remove them using CSS - but I wouldn’t really recommend doing it unless you’ve got a really good reason (i.e. you have a single product store, you don’t want people to buy multiple products).
But adding this to the bottom of your theme.css or theme.scss should achieve what you’re asking:
header .header__icon svg.icon.icon-search {display: none;}
header .header__icon svg.icon.icon-cart-empty {display: none;}
header .header__icon svg.icon.icon-cart {display: none;}
header .cart-count-bubble {display: none;}
Hi @Aziz99
Can you please share store URL?
oh sorry for that issue can you try this code
.header__icon--cart, .header__search {display: none !important;}
This just fixed it.
Thanks alot!
its my pleasure to help us