Hi @jepg45 ,
Thanks for reaching out!
I understand that you would like to change the color of the “Continue Shopping” button, is this correct?
To edit the font color of the “Continue Shopping” button, you will have to make some changes in your sites CSS.
Unfortunately, WooCommerce doesn’t provide a direct option in the settings to edit the appearance of this button, and this would depend heavily on the current theme you are using.
You can try adding the following custom CSS to Appearance → Customize → Additional CSS and see if this does the trick:
/* Change Continue Shopping Button Color */
.woocommerce-page .woocommerce-message .button {
background-color: green !important ;
}
You can change the color from green to your desired color.
If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).
Cheers!