Hi,
I used the testimonial option in the builder.
The images are stretched in a weird way.
I used testimonial grid, 1 column.
I read some of suggestions in the other posts but it did not help.
If it is possible I would prefer the images 200×200 not round.
Thank you.
Hey eyeweb!
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['square'] = array('width'=>200, 'height'=>200);
return $size;
}
then regenerate the thumbnails afterwards, http://wordpress.org/extend/plugins/regenerate-thumbnails/
and add following code to Quick CSS
.avia-testimonial-image { width: 200px; height: 200px; }
Best regards,
Yigit
HI Yigit,
I already added this function to my functions.pho to sort a problem with the blog list images:
add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
function enfold_customization_modify_thumb_size( $size ) {
$size['square'] = array('width'=>180, 'height'=>120);
return $size;
}
I also add the css:
.avia-testimonial-image { width: 200px; height: 200px; }
But it is not working here.
Hey!
You said you would prefer 200x200px so that is why i posted the code to change the size to 200x200px. If you are using 180x120px, your custom CSS should be
.avia-testimonial-image { width: 180px; height: 120px; }
Cheers!
Yigit
Hi Yigit,
I changed both php and css to 200×200.
Still not solving the issue in the testimonial page.
Can you please check again?
Thank you.
Hey!
Please add following code to Quick CSS as well
.avia-testimonial-image img, .avia-testimonial-image {
border-radius: 0;
}
Best regards,
Yigit
Thank you Yigit!