Where to change Woocommerce button colors?

So I’m trying to change the button color of the “Select Options” button below the woocommerce shortcode that I populated the product with:

I looked every where in Theme Options, I can’t seem to find how to change the colors of these particular buttons added with woocommerce shortcode?

Hi John,

Unfortunately, there is no option for that on Theme Options. We can change it’s colors using custom CSS. We can add it in Theme Options > Global CSS:

.postid-4123 a.wp-block-button__link.add_to_cart_button {
    color: red;
    background: green;
}

Change those colors to your preferred ones.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.