Hi Tim-
Thanks for reaching out! The Evolv theme determines the Post title color based on the color palette, depending on what colors you choose the theme will choose a color that adequately “contrasts” with the background color. If you’re looking for a theme that will let you choose the color without coding, I recommend checking out the highly customizable Crio SuperTheme.
That being said, you can use Custom CSS similar to the following to change your post title:
.palette-primary .entry-title a {
color: #000000;
}
You can add additional rules for things like the font-weight
, text-decoration
, and so on, depending on what you’re trying to achieve.
-
This reply was modified 3 years, 7 months ago by Jesse Owens. Reason: Fix typo in CSS code