Hi,
imo the images should get resized to the custom thumbnail sizes after uploading. i tested with several images and only some of them are displayed with the wrong size. resizing the images with a 3rd party app before upload is NOT an option!?!!! if needed, the script has to scale images up to the maximum needed width and height.
here is a screenshot of a quick test
Hi,
You can find the thumbnail sizes on functions.php, find this codes
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
$avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
$avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)
You can adjust the max-height of portfolio thumbnails with css.
.attachment-portfolio.wp-post-image {
max-height: 150px;
}
Regards,
Ismael