Category Title Colour/ Accent Change

Hello

I have made the text on my website black. I also changed the accent colour to black.

There are two issues I need to solve:

  • The category showing above each post on the posts page is still in grey. When you open the post it shows in black. How can I make it grey throughout?

  • Changing the accent colour to black means my hyperlinked words do not show up in posts. I would like to make these grey again (I used #7c7c7c previously).

Thank you,
Lucy

Hi Lucy,

I hope you are well today and thank you for your questions.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

.post-inner-content .cat-item a {
    color: #000;
}
#page .entry-content a {
    color: #7c7c7c;
}

Best Regards,
Movin