Site logo

[Support request] Change link colors on all posts page (blog)

Home Forums Support [Support request] Change link colors on all posts page (blog)

Home Forums Support Change link colors on all posts page (blog)

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1033743
    David

    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

    #1033760
    Leo
    Staff
    Customer Support

    Hi there,

    Try Customizer > Colors > Blog Post Title:
    https://docs.generatepress.com/article/colors-overview/

    Let me know if this helps 🙂

    #1034640
    David

    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 🙂

    #1034666
    Leo
    Staff
    Customer Support

    Have you tried modifying the setting in WP Show Posts?
    https://docs.wpshowposts.com/article/content-overview/#title-colors

    Let me know 🙂

    #1035911
    David

    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?

    #1036406
    David
    Staff
    Customer Support

    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;
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.