Hello!
I would like to remove the quantity from the cart bubble in Debut theme when products are added to cart. I still want the bubble to show up, but no numbers inside.
My website is www.Bikinginparadise.com
Thank you!
Hello!
I would like to remove the quantity from the cart bubble in Debut theme when products are added to cart. I still want the bubble to show up, but no numbers inside.
My website is www.Bikinginparadise.com
Thank you!
Hi @socialexpmnt ,
You can use the following code
[data-cart-count] {
display: none;
}
Outcome:
Did not work, still showing the quantity. Anything else I can try?
Hi @socialexpmnt ,
Use the following code:-
#CartCount span[data-cart-count] {
display: none !important;
}
Hello @socialexpmnt
Add this CSS code
Online Store > Themes > Edit code > Assets > custom.css
#CartCount span { display: none; }
Did not work, thank you for trying. Any other options?
Did not seem to do the trick, the numbers still appear. Any other suggestions? Thank you!
This is what I’m hoping to end up with, but none of the suggested codes have worked so far. Please help me if you have any other solutions to try. Thank you!

Hello @socialexpmnt
Add this code below theme.css file :-
.site-header__cart span[data-cart-count] {
display: none !important;
}
If this code does not work then share screenshot of the code, where are you added this code.
Hello @socialexpmnt ,
Add this code below .store-availability-list_phone css.
Check attached screenshot.
.site-header__cart span[data-cart-count] {
display: none !important;
}
Thank you so much!!