Hi there,
For the featured image in the blog post, I’m trying to make the preview image full size for our blog. Here is an example: http://cityofskies.com/illustrations/dreamy-illustrations-paintings-marine-crosta/
It’s being cut off and I want the image to be full size or at least within parameters where the image isn’t being cropped so aggressively.
Thanks!
Hi jlovebomb!
Thank you for using the theme!
Please edit functions.php, find this code on line 102:
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
Adjust the width and height then set the crop parameter to false. Something like this:
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>400, 'crop'=>false); // big images for blog and page entries
Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
Cheers!
Ismael