Different color for "Add to cart" button.
Hello, I only want to give my add to cart button and proceed to check out button different color. How can I change this? Css is not working.
The gold Button must be green.
Hello, I only want to give my add to cart button and proceed to check out button different color. How can I change this? Css is not working.
The gold Button must be green.
Comments
Nevermind following css did the job:
.single_add_to_cart_button {
background: #2da337;
}
.single_add_to_cart_button:hover {
background: #e44f50;
}
.button-default .single_add_to_cart_button, .button-flat .single_add_to_cart_button, .button-round .single_add_to_cart_button, .button-default .woocommerce .button:disabled, .button-flat .woocommerce .button:disabled, .button-round .woocommerce .button:disabled, .button-default .woocommerce .button.alt, .button-flat .woocommerce .button.alt, .button-round .woocommerce .button.alt {
background-color: #2da337!important;
}
Hi,
That is great you found a solution.
Please, let me know if I can help with anything else.
Thanks