We're merging with GenerateBlocks! Learn more here.

[Support request] Style WP Show Posts Pro with CSS

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Style WP Show Posts Pro with CSS

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #36817
    Michelle
    Participant

    https://www.thedailyreach.com

    I want the Title font and meta styling on WP Show Posts Pro (found on my Home page) to match my Single Post Pages–just the styling, not an exact copy.

    On the Home Page, I want this order (different than my Single Post Pages):

    Date

    Title
    Author

    It really boils down to changing the font and font size. I just don’t know how.

    I hope you can help me. It would be wonderful to move past styling and start writing my blog. 🙂

    #36822
    Fernando
    Participant

    Hi Michelle,

    You’re using GP Premium too right? If so, you can also easily do this through Appearance > Customize > Typography.

    See this for reference: https://docs.generatepress.com/article/dynamic-typography-overview/

    The selectors for the CSS down below (h2.wp-show-posts-entry-title, .wp-show-posts-entry-summary, time.wp-show-posts-entry-date)may be used as the custom selector for your typography as such: https://share.getcloudapp.com/rRu1b0N7

    Nonetheless, If you wish to use custom CSS to achieve this, here is something you may try for the title of WPSP lists:

    h2.wp-show-posts-entry-title {
        font-family: Georgia;
        font-weight: 400;
        font-size: 41px;
    }

    Here is for the date and excerpt:

    .wp-show-posts-entry-summary {
        font-size:17px;
        font-weight: 400;
    }
    
    time.wp-show-posts-entry-date {
        font-size:15px;
        font-weight: 400;
    }

    Here is an article with regards to adding CSS: https://docs.generatepress.com/article/adding-css/#additional-css

    Adding this through additional CSS should work.

    Kindly let us know how it goes. 🙂

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.