single product page add to cart button colour
-
could you guide me to how i change the add to cart button colour on a single product page
thank you
Attachments:
You must be
logged in to view attached files.
Hello,
You can change the buttons globally in the Theme Settings > Styles and colors > Buttons.
If you want to change the button on the product page only, add this code to the Theme Settings > Custom CSS > Global:
body .btns-shop-light .single_add_to_cart_button{
color: black;
}
body .single_add_to_cart_button{
background-color:red;
}
body .btns-shop-light .single_add_to_cart_button:hover{
color: black;
}
body .single_add_to_cart_button:hover{
background-color:red;
}
Set the colors as per your needs.
Best Regards