Tagged: , , ,

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #263320

    It seems that in a recent update all of the blog images (when using ‘big preview images’) have changed size. Naturally, this has caused all of my blog images to be framed incorrectly and cut-off (as can be seen here). How can I change the blog images back to the old size?

    Thanks,
    Tom

    #263326

    Hey tmunz!

    A bug was fixed in the last version to use the correct image size for blog pages that had a sidebar. So you can change this image size in your functions.php to the previous height of entries without a sidebar (360):

    
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);	
    

    Or use this plugin to do it:
    http://wordpress.org/extend/plugins/simple-image-sizes/

    Make sure to regenerate all images after.

    Regards,
    Devin

    #263349

    Hey Devin,

    I made the recommended change to the functions.php file, but it does not appear that the image sizes have changed. I tried clearing my cache, refreshing, and tried opening it in a different browser, but the images are still cropped the same. Any ideas?

    Thanks,
    Tom

    #264141

    Simply changing the size is not enough. You must also regenerate all of the images to use the new size.

    #264217

    Hey Devin, I’m not sure what you mean by ‘regenerate images’. Is that a function somewhere?

    As a note, all of the uploaded images are 700×360.

    #264413

    Hey!

    Thank you for the info.

    Please edit functions.php then look for the same code Devin suggested. Replace it with this:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>360, 'crop'=>false);
    

    Use this plugin to regenerate the thumbnails, go to Tools > Regen. Thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    #264678

    That did the trick, thanks guys!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Featured Blog Images Changed Size’ is closed to new replies.