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

    Hi guys,

    Is there a way to change the cropping dimension of the blog post images? I’d like it to be a little bit taller than it currently is.

    Thanks,

    #1030922

    Is there an easy way to do this? I tried using the following but it just distorted the image:

    .small-preview img, .big-preview img {
    height: 421px !important;
    width: 845px !important;
    }

    Perhaps there’s a way to modify it in the theme functions?

    #1031287

    Hi bobfurgo,

    Try adding this php code at the bottom of functions.php:

    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'=>845, 'height'=>421);
      return $size;
    }

    then try to re-upload the image or if there are a lot of images already, you can use plugins that regenerate images. Let us know if this helps.

    Best regards,
    Nikko

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