change colour of add to cart button

Hi, I want to change the colour of the add to cart button on the product category page. I have managed to change it on the product page itself but not on the product category page.

Thanks!

Hi @zorawar,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Unite Options -> Other -> Custom CSS


.woocommerce ul.products li.product .button {
    background-color: #000;
    color: #fff;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin