Archived topic
Content Colors
2 replies · Started by Andreas on October 1, 2016
Hi to All,
is there a way to use different content colors depending on the category?
I'm not very familiar with CSS
Thanks
Andreas
Yes you can. You will find your site has classes based on your category names in the <body> and <article> sections. If your category was named "french food", then you would use the class .category-french-food to make color changes.
As an example, the following would make any posts categorized under "french food" have red paragraph text:
.category-french-food p{
color: #dc1028;
}
Hi Paul,
that works... so easy
Great!
Thank you so much
Andreas