- 
		AuthorPosts
 - 
		
			
				
October 20, 2015 at 12:10 pm #521527
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.
October 20, 2015 at 1:00 pm #521575Hey 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,
YigitOctober 20, 2015 at 1:19 pm #521598HI 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.October 20, 2015 at 1:20 pm #521602Hey!
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!
YigitOctober 20, 2015 at 1:35 pm #521619Hi 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.
October 20, 2015 at 1:39 pm #521624Hey!
Please add following code to Quick CSS as well
.avia-testimonial-image img, .avia-testimonial-image { border-radius: 0; }Best regards,
YigitOctober 20, 2015 at 2:42 pm #521698Thank you Yigit!
October 20, 2015 at 3:01 pm #521707 - 
		AuthorPosts
 
- The topic ‘Testimonials images problem’ is closed to new replies.
 
