Changing the color of the error messages
-
I’m currently adding a WooCommerce store to my existing website, which is built using the DiviBuilder. For some reason WooCommerce is inheriting this terrible light grey but I cannot find out from where.
Essentially I need help either finding the right setting or finding the right CSS to override these issues. The weird grey is appearing on the following:
-The price on the product page
-The links for my categories and tags on the product page
-The error messages in my checkout
-The coupon code notice in my checkoutI have gone through every inch of the theme customizer, every setting for every plugin, and every WP setting and I cannot find where it it getting this color. I was able to use some CSS to fix the price color but this is the only one that works so far. I’ll put the successful CSS below as well as my failed ones. TYIA!
–SUCCESSFUL–
.price .woocommerce-Price-currencySymbol{
color: #595959 !important;
}.woocommerce-Price-amount.amount {
color: #595959;
}–FAIL#1–
div.woocommerce-message {
background-color: #53007a !important;
color: #53007a !important;
}.woocommerce-error {
background-color: #53007a !important;
color: #000000 !important;
}–FAIL#2–
.woocommerce-error {
background-color: #53007a;
}.woocommerce-info {
background-color: #53007a;
}.woocommerce-message {
background-color: #53007a;
}body.single-product .woocommerce-message .message-inner {
background-color: #53007a;
}The page I need help with: [log in to see the link]
- The topic ‘Changing the color of the error messages’ is closed to new replies.