Archived topic
Blog featured image resize
3 replies · Started by jonathan on June 6, 2018
Hi,
I imported a WordPress blog and need to set ALL the featured images to 800px wide. I set the dimension in the layout>blog>archives about a month ago, but they still are showing various sizes.
Am I missing something, or should this resize all the blog images?
Thanks,
Jon
Hi there,
They should resize to that specific width.
However, our image resizer will only do so if your server has enough resources to make the changes.
You could try:
1. Setting a difference size and saving.
2. Regenerating thumbnails with a plugin like this: https://wordpress.org/plugins/regenerate-thumbnails/
Thanks Tom, I just ended up using CSS to enforce a uniform Featured Image size for posts:
.post-image .size-full {
width: 800px;
height: auto;
}
Glad you got something working :)