Archived topic
Change link colors on all posts page (blog)
5 replies · Started by David on October 13, 2019
Hi GP team!
I want to customize with CSS the color of the links on the entries page. That is, where all posts are displayed. I don't want it to affect any part of the web.
I do not get it!
Thank you
Hi there,
Try Customizer > Colors > Blog Post Title:
https://docs.generatepress.com/article/colors-overview/
Let me know if this helps :)
Hi Leo!
It works in a blog page, but I have Elements (header) + WPShowPosts plugin to show the entries. You can check out the website.
I'm looking to make the same like "Mellow" example on your Site-library (https://generatepress.com/site-library/)
It's possible?
Thank you :)
Have you tried modifying the setting in WP Show Posts?
https://docs.wpshowposts.com/article/content-overview/#title-colors
Let me know :)
Hi leo!
I don't have this options. I have a feed less!
I'm using a standard version of "WPShowPost" (Not pro)
Image: https://ibb.co/kcSCnBR
The info are updated?
Hi there,
Color options are only available in WPSP Pro.
Otherwise they inherit the content link color from the Customizer.
You can override them directly with some CSS:
/* Entry title */
.wp-show-posts-entry-title a {
color: red;
}
.wp-show-posts-entry-title a:hover {
color: green;
}
and:
/* Entry Meta */
.wp-show-posts-entry-meta a {
color: red;
}
.wp-show-posts-entry-meta a:hover {
color: green;
}