Archived topic
Post featured image size in Search Theme
3 replies · Started by web2022 on May 16, 2022
Hi,
Firstly, I apologise in advance if this topic was already solved previously, I couldn't find it though.
I'm using the Search theme in Generate Press Premium, I would like to get the Post Featured Image sizes to be all displayed the same width and height, even though they may be different dimensions when uploaded. I've tired Regenerate Thumbnails but nothings working.
Can you please help?
Thanks
Hi there,
so that page is using the core Latest Post block, and for that you could use this CSS:
.wp-block-post-featured-image img {
aspect-ratio: 16 / 9;
object-fit: cover;
}
adjust the aspect ratio to suit your images.
Perfect, thank you!
You're welcome