Hello there,
As the topic of the post says, I am using the Venue theme and I need to hide the cart on the header. I commented out the entire code in Snippets > icon-cart.liquid and that did hide the icon but the item bubble that shows up on the cart is still visible.
Any tips?
Thanks!
Sean
1 Like
Hi @SeanHebein ,
Would you mind to share your URL website? with password if its protected? Thanks!
Hi @SeanHebein
I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.
Please add this css in your bottom of the css file:
.secondary-nav__item–cart, .cart-draw-trigger-icon {display: none !important;}
Regards,
San
Thank ypou for the information.
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
- And Save.
.cart-count-bubble {
display: none;
}
Result:
I hope it help.