Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #632524

    Hi Kriesi team,

    I would like to ask, can we make the width of the featured image bigger?
    I mean, the default featured image in that layout is at around 840 x 320 (at least at my case it is).

    But since default picture from my DSLR is usually at 5184 x 3456, or if I resize it to 840, so the size will be 840 x 560.
    So my question is, what should I do to get the featured image at the size of 840 x 560 ?

    Regards,
    Aji

    • This topic was modified 8 years, 6 months ago by ajeeyunz.
    #633318

    Hey Aji!

    Please add following code to functions.php file of your child theme in Appearance > Editor

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size['entry_with_sidebar'] = array('width'=>1210, 'height'=>560);
    return $size;
    }

    then regenerate thumbnails – https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Yigit

    #633739

    Perfect, Yigit. Thank you so much!

    Regards,
    Aji

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Bigger Featured Image in Elegant Blog Style’ is closed to new replies.