I can't figure out what the default size of the thumbnails is for the Choices Theme. I would like to make a custom square size, but do not know how to do this. Here is a link to my site: http://dantepauwels.com/
Thanks!
I can't figure out what the default size of the thumbnails is for the Choices Theme. I would like to make a custom square size, but do not know how to do this. Here is a link to my site: http://dantepauwels.com/
Thanks!
I have figured out a workaround for the problem mentioned above. I now would rather ask this question:
How can I make the thumbnail image stay thumbnail size when the image is clicked on & the corresponding portfolio page opens? I do not want the image to scale as it appears blurry. (I cannot make most of my thumbnail images larger as the artwork is not available at a larger size). My portfolio is still : dantepauwels.com
Case in point for issue described:
http://dantepauwels.com/portfolio-item/nice-image/
(I want the top image to stay thumbnail size).
Thank you!
Hi,
Open functions.php and find this code
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
$avia_config['imgSize']['slider_thumb'] = array('width'=>70, 'height'=>50); // slideshow preview pics
$avia_config['imgSize']['fullsize'] = array('width'=>930, 'height'=>930, 'crop'=>false); // big images for lightbox and portfolio single entries
$avia_config['imgSize']['featured'] = array('width'=>990, 'height'=>400 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ,'copy'=>'greyscale'); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['portfolio_small'] = array('width'=>241, 'height'=>179 ,'copy'=>'greyscale'); // images for portfolio 4 columns
$avia_config['imgSize']['logo'] = array('width'=>446, 'height'=>218 ,'copy'=>'greyscale'); // images for dynamic logo/partner element
//dynamic columns
$avia_config['imgSize']['dynamic_1'] = array('width'=>446, 'height'=>150); // images for 2/4 (aka 1/2) dynamic portfolio columns when using 3 columns
$avia_config['imgSize']['dynamic_2'] = array('width'=>609, 'height'=>208); // images for 2/3 dynamic portfolio columns
$avia_config['imgSize']['dynamic_3'] = array('width'=>688, 'height'=>150); // images for 3/4 dynamic portfolio columns
You can control image sizes or thumbnails on the code above.
Regards,
Ismael
You must log in to post.