Tagged: Portfolio, portfolio thumbnails
I would like to know how to show the full portfolio image on the portfolio page. Right now, all of my portfolio images are the same size circle (300px by 300px) and it is automatically cutting off the top and bottom the circle. I would like it to show the full image, but maybe have the thumb 100% wide so it can fit inside smaller columns. Does this make sense?
Hi,
If you are using a 4 column porfolio, find this code on functions.php
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
Replace it with
$avia_config['imgSize']['portfolio_small'] = array('width'=>300, 'height'=>300 ); // images for portfolio 4 columns
Regenerate thumbnails using this: http://wordpress.org/extend/plugins/regenerate-thumbnails/
Regards,
Ismael