Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #25490

    Im struggling understanding the image sizes….

    Im looking into Blog Single Author Small wich only gives the small 36×36 thumbs, but I might want the bigger image inside the single post at a later time.

    In the documentatin it says: width’=>710, ‘height’=>270); // big images for blog and page entries

    When I measure standard post format with preview Picture I get 710×256

    When I measure Blog Single Author Big I get 660×238

    So no where is the 710×270 used. Why would I make it this size?

    Is the image beeing cropped in these different layouts?

    #127163

    Hi,

    You can find the thumbnail sizes code 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']['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)

    The small differences is due to the fact that the images is being constrained by their containers.

    Regards,

    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Understanding image sizes…’ is closed to new replies.