Archived topic
Post Images size on "News" page
3 replies · Started by Suresh on November 15, 2019
Hi,
I would like to set a fixed size for the blog images that appears on the "News" page.
Many thanks.
Hi there,
Have you tried the customizer options?
https://docs.generatepress.com/article/adjusting-the-featured-images/
Let me know :)
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 :)