This topic has 6 replies, 3 voices, and was last updated 9 years, 11 months ago ago by Robert Hall
I am having an issue with changing the site colors. I put the color in the Theme Options, main color part but how do I change all the site colors from the gold in the icons (like the cart, and search), lists (like in FAQ’s), product pricing, and so on.
Hello,
Cart icon color can be changed using some image editor as it’s an image wp-content/themes/royal/images/sprite/icons.png
Search icon can be changed via css class in custom.css file:
.fa-search:before {
color: #F00 !important;
}
Change color value to yours.
How to create custom.css you can watch in this tutorial (it’s for Legenda theme but the process is the same).
For FAQ lists add this code in custom.css:
.toggle-block.bordered .toggle-element > a:before {
background: #F00 !important;
}
and price color can be changed with this code:
.price {
color: #000 !important;
}
Thank you.
Regards,
Eva Kemp.
Thanks for the information. One last thing, how can I change the colors on the notification colors, like “…was successfully added to your cart” from green to a light grey?
Hello,
Please provide us with link to the page.
Regards,
Robert Hall.
Please see below in private.
Please add following code into custom.css file.
.woocommerce-message{
background-color: #DBDBDB;
border-color: #DBDBDB;
}
Regards,
Robert Hall.
The issue related to '‘Site Colors’' has been successfully resolved, and the topic is now closed for further responses