Hello. Regarding the sidebar/footer widget that displays the latest posts / portfolio items. How do you… (1) Remove the thumbnail border? (2) How can I create a larger thumbnail image? I’m using the resize image plugin, but I’m not sure what size thumbnail the widget is using? Thanks.
Hi,
Add this on your custom.css
.news-thumb {
border: none;
}
To resize the thumbnail, go to functions.php then find this code
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
Add this on your custom.css. Change the width and height according to the thumbnail size then regenerate the thumbnails.
.image_size_widget .news-thumb {
height: 36px;
width: 36px;
}
Regards,
Ismael