Hello, I have an issue with selecting quantities in the cart. When I add a product to the cart, I can’t decrease the quantity below 1, which makes it impossible to remove the product from the cart. The template is refresh, and the website is https://sztukawdrewnie.com.
Topic summary
Main issue: In the cart, product quantity cannot be decreased below 1, effectively preventing item removal. The store uses the Refresh theme, with a screenshot provided and a live site link.
Proposed fix: A reply suggests the delete (remove) icon exists next to the quantity selector but is hidden by CSS. Steps given: Online Store → Theme → Edit code → open component-cart-items.css and add a CSS rule to set cart-remove-button .button color to rgb(var(–color-foreground)).
Outcome: After applying the CSS change, the issue persists; the user still cannot decrease the quantity below 1 or remove the item.
Status: Unresolved/ongoing. The suggested CSS adjustment did not resolve the visibility/removal issue, and no alternative solution or further diagnostics were provided in the thread.
Delete icon is available next to the quantity selector you need to fix it css.
Follow these steps:
-
Go to Online Store → Theme → Edit code
-
Open your component-cart-items.css file and paste the following code at the bottom:
cart-remove-button .button {
color: rgb(var(--color-foreground));
}
I made everything as you said and this doesnt work, still cant go under “1”
