Archived topic
featured image size
3 replies · Started by demoxing on August 26, 2020
Hello,
I want to make my featured images alignment the same for all posts.
the featured images shape look different for different posts. I want to make them the same for all posts.
please help me.
reference: https://imgur.com/xz7y5yp
Hi there,
there is no way to adjust the position of variable size images without using Javascript which would create performance and layout issues.
The very most you could do is set a minimum height on the entry-header like so:
.entry-header {
min-height: 120px;
}
But this will add space to all posts and is not responsive.
The best fix is to 'crop' your images so they all have the same aspect ratio.
I see I don't want to compromise with site performance and layout so, it's better to do some manual work.
thanks, David.
You're welcome