I would like that the latest article picture is bigger. I prefer it if you could see the whole picture automatically with each newest article. Not the older ones See the link.
How should I do this?
Hey studioinktvis!
I am not 100% sure what you mean but I guess you want to show an uncropped picture?
If thats the case you need to edit the picture size for the magazine element in your functions.php file. In the functions.php file at around line 107 you need to change:
$avia_config['imgSize']['magazine'] = array('width'=>710, 'height'=>375 ); // images for magazines
to
$avia_config['imgSize']['magazine'] = array('width'=>710, 'height'=>375, 'crop'=>false ); // images for magazines
Once that is done all images uploaded from this point wont be cropped and are just smaller versions of the original images. These changes dont apply to existing uploads. If you would want to change that you need to use a plugin to regenerate the thumbnails: https://wordpress.org/plugins/regenerate-thumbnails/
Cheers!
Kriesi
OK. That was quick ;-)
Thank you!