hello,
How can I change the notification banner colour when a product is added to the cart? it’s showing green and I’d like it to be more in line with my branding
thank you,
Colleen
Hey Colferg,
There’s no option to change that color, however you can use this css code in Quick CSS (located in Enfold > General Styling):
#top #wrap_all div.woocommerce-message {
border-color: black;
background-color: darkgray;
color: white;
}
Just change the color values. Hope it helps :)
Best regards,
Nikko
Great thank you Nikko,
how can I customize this button color and font color only for the shop notification banner?
Colleen
Hi,
For the button, please Try this code in the General Styling > Quick CSS field and adjust the colors:
#top div.woocommerce-message a.button {
color: #fff!important;
background: rgba(0,0,0,0.2)!important;
}
Best regards,
Mike
Perfect thank you Mike!
would you happen to know how I can make the font bold in the notification banner itself? I’m not referring to the button anymore.
Thank you,
Colleen
Hi,
Please try adding “font-weight: bolder;” to your message css like this:
#top #wrap_all div.woocommerce-message {
border-color: #cbb482;
background-color: #FEEFE7;
color: #cbb482;
font-weight: bolder;
}
your choices are “bold” or “bolder”
Best regards,
Mike