This topic has 3 replies, 2 voices, and was last updated 3 years, 8 months ago ago by Olga Barlow
Hello!
I need to move the “Add to cart” button immediately below the price. I also need to change the colour of this button.
What can I do?
Thank you for any assistance you can give me!
Antonio
This is an example screenshot
https://prntscr.com/10jrxe4
Hello,
There is no option to change the position of the add to cart in our theme but you may try WooCommerce hooks to change it if you have some PHP skills https://www.businessbloomer.com/woocommerce-visual-hook-guide-single-product-page/
Add the below CSS to Theme Options > Custom CSS to change the color
.single-product-page .product-info .single_add_to_cart_button {
background-color: #c35d47;
color: #404040;
}
.single-product-page .product-info .single_add_to_cart_button:hover {
background-color: #404040;
color: #ffffff !important;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up