Tagged: Portfolio, size, thumbnails
-
AuthorPosts
-
August 7, 2013 at 9:08 pm #27395
HI
Could you please help me figure out how I can have my portfolio thumbnails, on my home page, all the same size?
August 7, 2013 at 9:14 pm #133886Would be nice to have the thumbnails all the same size in my art gallery page as well
August 9, 2013 at 1:42 pm #133887Hi eyeCreative,
You can use this plugin to view the themes thumbnail settings: http://wordpress.org/plugins/simple-image-sizes/
For the portfolio items you can set it Crop and then regenerate your image thumbnails so that the newly regenerated sizes are cropped to your specific size.
Just note that the theme will still be resizing the image to fit the column choices and css sizing but will use the base image size you designate as the source.
Regards,
Devin
August 9, 2013 at 9:05 pm #133888Awsome! That worked! Thank you Devin!
August 10, 2013 at 3:48 am #133889Hey,
You can find the theme’s thumbnail sizes on functions.php:
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
$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)
$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
//overwrite blog and fullwidth image on extra large layouts
if(avia_get_option('responsive_layout') == "responsive responsive_large")
{
$avia_config['imgSize']['gallery'] = array('width'=>845, 'height'=>684 ); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize slider
}Regards,
Ismael
-
AuthorPosts
- The topic ‘Portfolio Thumbnails all Same Size’ is closed to new replies.