Hi,
My URL is www.momentstayz.com.au
can you please advise how can i hide shopping cart icon in home page?
thanks
cecilia
A user seeks to hide the shopping cart icon on both desktop and mobile versions of their Shopify store (using the Studio theme).
Proposed Solutions:
base.css file (at the bottom) or within a custom Liquid section/block using a <style> tag#cart-icon-bubble, .header__icon, and related classes with display: none propertyImportant Reminders:
Status: The discussion provides technical solutions but doesn’t confirm whether the original poster successfully resolved the issue.
Hi,
My URL is www.momentstayz.com.au
can you please advise how can i hide shopping cart icon in home page?
thanks
cecilia
Studo theme - Hide the cart icon in the header for all devices and screen sizes.
Customization themes 101:
Use the following CSS either in a style tag added to a custom-liquid section|block.
Or add it to the end of the themes base.css
Always backup themes before changing code.
#cart-icon-bubble {
display: none;
}
@cecilia_jin111 Go to assets/base.css and paste below css at bottom of file.
.header__icon:not(.header__icon--summary), .header__icon span
{
display: none !important;
}
Apply the Css property {
display:none;
}