[Sense Theme] Hiding/Disabling Cart Icon from all pages

Website url: https://vt-cosmetics-global.myshopify.com/ with password vttest

I was wondering if there’s a way to hide or disable cart icon from the website, as all purchase options will be disabled until they’re ready to be launched. We want it to look perfectly like a brand introduction website instead of an e-commerce website at the moment.

1 Like

@VTCos

Go to Assetes/Base.css

Find below class and add display as none.

.header__icon, .header__icon--cart .icon
{display: none;}
1 Like

Please add below css in bottom of assets/base.css file

.header__icon.header__icon–cart{

display: none;

}

Thank you.

3 Likes
svg.icon.icon-cart-empty {
    display: none !important;
}

@VTCos
Add this code in the base.css file

2 Likes

Perfect. It worked! Thanks so much.

I actually prefer this code because I don’t have to mess with the original code :slightly_smiling_face: Thanks!

thanks