Change category link color on Posts

I’d like to change the category link color on my posts. I’ve tried a few different CSS variations but nothing solid.

I’m referring to the area on the post where it says Title, Author, Date, Category Link

Hi there,

Thanks for writing in! Try adding the following code in the Theme Options > CSS:

.single-post .p-meta span {
    color: red !important;
}

If this doesn’t work then please provide us the URL of the page in question so we can take a closer look and suggest you the solution accordingly.

Thanks!

I provided the URL in a Secure Note , and the CSS provided changed everything. I just need the link category link color to be changed.

and only for blog posts.

Hello @JosephLucero,

Thanks for asking. :slight_smile:

Please add following CSS under Theme Options > CSS:

.p-meta span:nth-child(3) a {
    color: #ddd !important;
} 

Thanks.

1 Like

There we go! Thanks.

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.