Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #618193

    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

    #618318

    found it in the functions.php. can i copy the functions.php to my child theme?

    #618323

    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

    #618999

    thanks for the fast and good support.

    cheers Chris

    #619597

    Hi Chris,

    Glad we could help :-)

    Regards,
    Rikard

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.