Hi everyone can someone please tell me how to hide the cart icon in the header or simply some code to put in.
Using Origin Theme.
Thankyou
Hi everyone can someone please tell me how to hide the cart icon in the header or simply some code to put in.
Using Origin Theme.
Thankyou
go to edit code and search base.css add this code in bottom
#cart-icon-bubble{
display: none !important;
}
Please add the following code to your assets/base.css bottom of the file.
.header__icon--cart {display: none !important;}
Thanks!
Hi @kaidickson ,
You can try this one.
a#cart-icon-bubble {
display: none;
}
Result:
I hope it help.