Site logo

Archived topic

Change link colors on all posts page (blog)

5 replies · Started by David on October 13, 2019

Viewing posts 1–6 of 6

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 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 :)

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;
}
This archived topic is closed to new replies.