Hi, thanks for reaching out.
It looks like the first image is 720 x 400, the second and third are 848 x 400.
Is there any change if you regenerate thumbnails? https://ww.wp.xz.cn/plugins/regenerate-thumbnails/
OK that will then make the thumbs all the new size which is the wrong size for my original images to work. It’s OK – I think I will have to resize all my images to suit the new theme.
thanks for your help.
Unfortunately, the Code Snippets plugin no longer allows the use of pluggable functions. To edit the related posts function you’ll need to use a child theme.
https://siteorigin.com/corp-documentation/child-theme/
Here is how to migrate Customizer settings from the parent to the child:
https://siteorigin.com/migrating-parent-child-customizer-settings/
You can then insert the function into the child theme functions.php file: https://github.com/siteorigin/siteorigin-corp/blob/develop/inc/template-tags.php#L367-L410.
Once the function is in your child theme functions.php file you can edit this line: https://github.com/siteorigin/siteorigin-corp/blob/develop/inc/template-tags.php#L394.
You could use Simple Image Sizes plugin to create a new image size or change the size to:
<?php the_post_thumbnail(); ?>
Thereby removing the size.
The above is an alternative option to manually resizing images.
thank-you, I will give that a try