change color .woocommerce-info
- This topic has 10 replies, 2 voices, and was last updated 1 year ago by
PDV.
-
How can I change this green color? I added this code, but it doesn’t works everywhere in woocomerce…
.woocommerce-info{
background-color: #383e42;
}
Attachments:
You must be
logged in to view attached files.
Hi PDV,
First of all, I’m really sorry have taken long time to reply you due to the weekend.
Please use below code:
div.woocommerce-message{
background-color: #383e42;
color: #fff;
}
Regards,
But here it’s green ….
Attachments:
You must be
logged in to view attached files.
Hi PDV,
Please remove previous code and use below code:
body.woocommerce-cart div.woocommerce-message{
background-color: #383e42;
color: #fff;
}
Regards,
seems that it doesn’t work…
Attachments:
You must be
logged in to view attached files.
Hi PDV,
In the Complete order page, do you want to change background color as well? Please let me know and I will provide better Custom CSS.
Regards,
Yes, I would like that all notifications have the same color : #383e42;
Hi PDV,
Please remove previous code. You can go to Theme Settings > Styles and colors > Notices and you can now set background color and text color https://prnt.sc/1vYjwSKHB1sW
Regarding order complete message, use below code:
p.woocommerce-thankyou-order-received {
background-color: #383e42;
border-color: #383e42;
color: #fff;
}
Regards,
The topic ‘change color .woocommerce-info’ is closed to new replies.