Site logo

Archived topic

Changing color of post titles in archive view of a category.

1 reply · Started by John on November 24, 2021

Viewing posts 1–2 of 2

Hello,
I'm having a hard time figuring out how to change the color of the post titles and the excerpts below each title as they are displayed in an archive/category view. The page I'm working on is linked to in the private information on this post.

In that example, I'd like to swap the colors. Meaning I'd like to make the excerpts the same color the titles are now, and make the titles the same color the excerpts are now. If that makes sense. Thank you so much for any help you can provide!

Hi John,

I'm not fully sure I understood what you mean but if it's simple text color change for the post title and the excerpt for the archive pages, you can try this CSS:

/*Archive post title*/
body.archive .entry-title a {
    color: red;
}
/*Archive excerpt*/
body.archive .entry-summary {
    color: blue;
}

You can change the color values to your preference.

This archived topic is closed to new replies.