How can I change the 'Remove' button color on my cart page?

Hello,

How do I change color of “Remove” button from my cart page in Debut theme. I want to set different color for this button since doing it in editor will change every buttons color.

Kind regards, Marko

Hi, welcome to the Shopify Community.

Please share your store URL.

https://youcartoonish.com/

Thank you

Here’s the code to change the “Remove” button’s color.

.cart__remove a {
    color: #000;
}

To add it to your store,

  1. Go to Online Store > Themes > Edit Code

  2. Seach for “theme.css”, open the file with similar name, so either theme.css or theme.css.liquid

  3. At the end of the file, paste the above code and save the file.

  4. The hext code “#000” is for black color, you can find hex color for the color of your choice and update it in the code.

Let me know if you need further help with this.

Thank you very much!! That worked