I have been trying to remove the shopping cart/bag icon from the upper right header menu on website but any time I manage to change some CSS code to make it disappear, the rest of the icons suddenly disappear as well. I would like to ONLY remove the shopping cart icon, is there a way to do that?
Link to website: https://highfallscannany.com/
In theme.css at the very bottom try this
.header__icon-touch a[href=“/cart”] {
display: none;
}
HI @highfallscanna ,
Add this css on theme.css
span.icon-button.icon-button-header-shopping-cart {
display: none;
}
[data-js-cart-icon=cart] [data-js-cart-count] {
display: none;
}
Result:
if this code ia helpful , Mark is accepted
Thanks And regards