Tagged: thumbnails
hi,
i use thumbnails to show the last blog-entries in the sidebar. But i want to use a lager size for the thumnails than 36x36px. Where can i change the thumbnail size?? In WordPress under options >> Media the Changes didnt work.
i look forward to hear from you…
Best regards
Chris
found it in the functions.php. can i copy the functions.php to my child theme?
Hey!
Please add following code to Functions.php file of your child theme
add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
function enfold_customization_modify_thumb_size( $size ) {
$size['widget'] = array('width'=>250, 'height'=>250);
return $size;
}
Then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
Then add following code to Quick CSS in Enfold theme options under General Styling tab
.news-thumb img,.news-thumb {
height: 100%;
width: 100%;
}
Cheers!
Yigit
thanks for the fast and good support.
cheers Chris