Sight theme: Change color of "Recent Posts" title in Home page
-
Hello, I’m, trying to change the font color of the “Recent Posts” title in the home page (now it’s brown), but I couldn´t find the code. I saw in the source code of the page that says:
<div class=”latest-posts-header”>
And also the Post Title in the Post Page.
Where can I edit that class?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi There,
You can change the color of the Recent Posts header on the homepage with the following:
.latest-posts-header { color: #933D00; }Just replace #933D00 with the color that you’d like.
You can change the color of the Post Title with:
.entry-title { color: #933D00; }And if you want them both to be the same color, you can condense it down to this:
.latest-posts-header, .entry-title { color: #933D00; }Let me know if this does the trick!
-
-
And the last one… I have it in spanish “Archivo de la Categoría” (example: https://mensalco.wordpress.com/category/remodelaciones/). I would like to change its color too. (Same color than the previous two) Thanks!
-
You can style the “Archivo de la…” text with the following:
.page-title { color: #933D00; }Or you can just add it to the above, so it all looks like:
.latest-posts-header, .entry-title, .page-title { color: #933D00; } -
-
- The topic ‘Sight theme: Change color of "Recent Posts" title in Home page’ is closed to new replies.