This topic has 6 replies, 3 voices, and was last updated 9 years, 3 months ago ago by Eva Kemp
I’m trying to change the color of the woocommerce buttons on the shop page, however when I try to change it I see no effect? It’s currently a greyish color and I want to change the buttons background to a black color and leave the hover color as is.
Hello,
I’ve changed buttons color in 8Theme Options > Styling > Woocommerce.
Please check Shop page now.
Best regards,
Jack Richardson.
I don’t see the color being changed to black in 8theme options > styling > woocommerce. I see the change has been made on the shop page thank you, I would like to play with the button colors to see exactly what I like can you please tell me how as it’s not working through 8theme options > styling > woocommerce. Thank you.
Hello,
Also you can try this code in child style.css:
.product .content-product .btn {
border-color: black !important;
}
.product .progress-button, .product .product_type_simple, .product .progress-button, .product .product_type_simple {
background-color: black !important;
}
Regards,
Eva Kemp.
Hello,
Instead of calling background or border color ‘black’, can I use a hex color code there instead because there are different variations of colors? Like example below using hex color for black for example…
.product .content-product .btn {
border-color: #000000 !important;
}
.product .progress-button, .product .product_type_simple, .product .progress-button, .product .product_type_simple {
background-color: #000000 !important;
}
Hello,
Yes, you can use hex color values.
Regards,
Eva Kemp.
You must be logged in to reply to this topic.Log in/Sign up