So I encountered this problem on my store, when I wanted to remove an item from cart I couldn’t make Item quantity go down to 0, then I accidentally discovered that if you press right beside on item quantity counter there is an invisible trashcan to delete the item which turns black once it’s pressed. Can someone help me to make either quantity go down to zero or make trash can visible at all times. Here is link to the website to better understand https://donesha.ca/
Hello @KM26 ![]()
Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom
.cart-remove-button {
color: rgb(var(--color-foreground));
}
The result
Hope it helps!
1 Like
Thank you so much
1 Like
You are welcome!
