Hemingway Rewritten Change Post Title Colors
-
Is it possible to change the primary color of all post titles to what I have set as the link highlight color? The titles are the same color as the post body text, and it looks a bit boring.
If possible, I’d also like to select a custom link highlight color, as well.
Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi there,
Yes it is possible to change the post title colors. It can be done by customizing some CSS codes using the WordPress CSS editor, if you are familiar with it.You need to customize the color property of the “.entry-title a” CSS selector:
.entry-title, .entry-title a, .entry-title a:visited, .comments-title { color: #7c7c7c; }For example, if you want to change the color of the post title to blue use, your code will look something like this:
.entry-title, .entry-title a, .entry-title a:visited, .comments-title { color: #5b89d2; }You can read more about the “color” property here: https://www.w3schools.com/cssref/pr_text_color.asp
Let me know if this helps :)
- The topic ‘Hemingway Rewritten Change Post Title Colors’ is closed to new replies.