Can't remove items from cart in Dawn theme

I remember there was a bin button for removing each item in the cart but it has disappeared.
Basically the customers need to clear cookies for removing the items from the cart. It is frustrating explaining such a workaround.

Here is the store link: https://vintageboutique.it/
Thank you for any suggestion to solve this issue

Hey @5irjoe

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT

If I managed to solve your problem then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi @5irjoe .

You just need to enable the color for it. Here’s how to achieve that.

1: Go to Online StoreThemeEdit code
2: Search file base.css
3: Add the following code to the bottom of the fileSave

cart-remove-button .button {
	color: rgb(var(--color-foreground))!important;
}

If done correctly, the result should be:

I hope this helps!