Hi,
My news thumbnails have suddenly become larger than 36x36. I checked my uploads and I do have thumbnails images 36pxX36px. Can you help figure out what may have happen and how I can resolve this display issue?
Thanks,
Lyse
Hi,
My news thumbnails have suddenly become larger than 36x36. I checked my uploads and I do have thumbnails images 36pxX36px. Can you help figure out what may have happen and how I can resolve this display issue?
Thanks,
Lyse
Hi,
Can you give us a link on your site? Is the new size of the images 163x120px?
You can go to framework > php class-framework-widgets.php and find this code
if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
{
$image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image');
}
if(!$image && current_theme_supports( 'post-thumbnails' ))
{
$image = get_the_post_thumbnail( get_the_ID(), 'related' );
It says that if the current theme doesn't supports thumbnails use the related thumbnail size which is indicated in the functions.php
$avia_config['imgSize']['related'] = array('width'=>163, 'height'=>120); // small images for related items
Hope this helps.
Regards,
Ismael
Hi Ismael,
I logged in using a different computer today and all works well. I must clear my cache on my laptop!
Sorry for any inconvenience.
Lyse
This topic has been closed to new replies.