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
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.
Thank you
Here’s the code to change the “Remove” button’s color.
.cart__remove a {
color: #000;
}
To add it to your store,
Go to Online Store > Themes > Edit Code
Seach for “theme.css”, open the file with similar name, so either theme.css or theme.css.liquid
At the end of the file, paste the above code and save the file.
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