Hi everyone,
I’d like to remove the cart item count display (the little badge showing the number of items in the cart). Does anyone know how to hide or disable this?
Here’s my store preview link: https://www.rappid.run/collections/frontpage
Password: Password
Thanks in advance for any help!
Best,
Kim
1 Like
Hi @KimGottwald
You can hide that count using this simple CSS code you have to put into your theme->code-editor → base.css
.cart-count-bubble { display: none; }
If this Solution worked Like and Mark It as a Solution
Need an expert Shopify developer feel free to Contact Me
Hi @KimGottwald
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, style.css or theme.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:
.header__icon--cart .cart-count-bubble {
display: none !important;
}
- And Save.
- Result:

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
1 Like