Archived topic
Blog, Archives and Latest posts - Title center alignment and font color
7 replies · Started by Former User on June 10, 2020
Hi,
I would like to change Post Titles alignment to Center for BLOG, ARCHIVES and LATEST POSTS. I can't find that settings in Customizer.
Another thing regarding these titles - how can I change the font color of titles and post categories for BLOG, ARCHIVES and LATEST POSTS?
I don't want to change link color in general, only for these elements.
(For example - When I open BLOG page I want to see all posts titles in black font, even though they are links - and blue in default).
I hope you can help we with these
thank you
Hi there,
this CSS to center the titles:
.entry-title,
.wp-block-latest-posts li {
text-align: center;
}
You can change the color of the Archive Content Title in Customizer > Colors > Content.
Perfect! It worked for BLOG and ARCHIVES.
How can I achieve the same with LATEST POSTS?
What do you mean by Latest posts?
Any chance you can link us to the site in question?
You can edit the original topic and use the private URL field.
Let me know :)
I just updated the post with my URL, please have a look.
I edited the code here to include them
thank you.
Just last thing regarding the block LATEST POSTS.
How to change title font color?
The color is coming from the Customizer > Colors > Body > Link Color
Or you can change just that with this CSS:
/* static color */
.wp-block-latest-posts li a {
color: #000;
}
/* hover color */
.wp-block-latest-posts li a:hover {
color: #ccc;
}