Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #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.

    #521575

    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

    #521598

    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.

    #521602

    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

    #521619

    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.

    #521624

    Hey!

    Please add following code to Quick CSS as well

    .avia-testimonial-image img, .avia-testimonial-image {
        border-radius: 0;
    }

    Best regards,
    Yigit

    #521698

    Thank you Yigit!

    #521707

    Hey!

    You are welcome :) Let us know if you have any other questions or issues

    Cheers!
    Yigit

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Testimonials images problem’ is closed to new replies.