Site logo

Archived topic

Post Images size on "News" page

3 replies · Started by Suresh on November 15, 2019

Viewing posts 1–4 of 4

Hi,

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

Many thanks.

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.

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

This archived topic is closed to new replies.