Changing Category Name Colour Scheme on Conform Plus

Is there any custom CSS that will allow me to change the colour configuration of displayed category text?
I have implemented some CSS for sale and new items to be marked in red, learned from another post like this:
div.sale-new{
/*The line below will change the background color of the label*/
background-color: #c0272d!important;
/*The line below will change the text color of the label*/
color: white;
}
How and can I apply something similar for categories?
Appreciate the assistance. Thanks.
-Mick
Best Answer
-
Geanny Moderator, Lightspeed Staff Posts: 113 moderator
Hi Mick,
Yes, the following CSS rule will let you change Conform's category label color:
.categories .category span.title {
color: red!important;
}
Let me know if you have any questions
Geanny
Answers
Hi Geanny,
Solved. Thank you very much for your help.
-Mick
Glad I could help!