
Viewing 4 posts - 1 through 4 (of 4 total)
-
AuthorPosts
-
March 30, 2016 at 10:22 am #605063
Hey guys,
Is there specs on what size images work best across the site. E.g
– Feature image? When you upload it shows the whole image in the preview, but on the live site it gets cropped. So what it the preferred size?
or
– The masonry gallery when the grid is fixed?
Thanks!
March 30, 2016 at 2:06 pm #605153Hi,
Can you post the link to your website please?
Regards,
JosueApril 1, 2016 at 9:05 am #606552Hi Josue
See link
Thanks!
Rob
April 3, 2016 at 5:22 am #607113Hi!
The theme generates multiple thumbnails and apply those thumbnails on different elements in the theme. For reference, edit the functions.php file then look for this block of codes:
$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']['featured_large'] = array('width'=>1500, 'height'=>630 ); // 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'=>845, 'height'=>684 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['magazine'] = array('width'=>710, 'height'=>375 ); // images for magazines $avia_config['imgSize']['masonry'] = array('width'=>705, 'height'=>705 , 'crop' => false); // images for fullscreen masonry $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 $avia_config['imgSize'] = apply_filters('avf_modify_thumb_size', $avia_config['imgSize']);
Those are the generated thumbnail sizes for different elements. Read the comment after each thumbnail registration to see which is which.
Cheers!
Ismael -
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.