Tagged: latest posts, thumbnail
Hi,
Is there an easy way to increase the thumbnails in the “Latest posts” alternative in the content builder?
Now they are 55×55 pixels, but I would like them to be around 100×100.
Thanks!
Hi,
I’m sorry but I’m not sure if there is a thumbnail size with the dimension of 55x55px. What do you mean “Latest Posts”? Can you give us a link to the page?
You can change the thumbnails size on functions.php
$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']['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)
Regards,
Ismael