Site logo

[Support request] Post Images size on "News" page

Home Forums Support [Support request] Post Images size on "News" page

Home Forums Support Post Images size on "News" page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1064498
    Suresh

    Hi,

    I would like to set a fixed size for the blog images that appears on the “News” page.

    Many thanks.

    #1064506
    Leo
    Staff
    Customer Support

    Hi there,

    Have you tried the customizer options?
    https://docs.generatepress.com/article/adjusting-the-featured-images/

    Let me know 🙂

    #1064524
    Suresh

    Wow, that’s the right option!

    Can I ask you where is the setting to adjust the Post Title size on the archive?
    In the typography there is h2 but I would like to apply a custom option.

    #1064563
    Leo
    Staff
    Customer Support

    CSS is needed for now:

    h2.entry-title {
        font-size: 30px;
    }

    If you need mobile specific:

    @media (max-width: 768px) {
        h2.entry-title {
            font-size: 30px;
        }
    }

    Adding CSS: https://docs.generatepress.com/article/adding-css/

    Let me know if this helps 🙂

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