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,
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?
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