Hello. For the “Testimonials” Content Element, for the “Testimonial Slider (Large)” style, the image gets cropped to be a circle. This is unfortunately cropping parts of my images (they are company logos) that I need to see. Can you tell me how to lessen the crop if the images must be circles, or how to remove the auto crop of a circle and just leave the image as its normal size?
I will provide a link in the private content section below.
Thank you.
Hey santanin!
Add this to your custom CSS.
.avia-testimonial-meta, .avia-testimonial-meta * {
border-radius: 2px !important;
}
Cheers!
Elliott
Hello. Thank you for your reply. I definitely see the difference in the radius crop using your CSS. However my problem still exist. Is there a way to not crop the image at all? Yes your CSS doesn’t do the circular crop, but it still crops off an important part of the logo image. Thank you.
Hey!
please add the below css
#top .av-large-testimonial-slider .avia-testimonial-meta .avia-testimonial-image {
width: auto!important;
height: auto!important;
}
Best regards,
Vinay
Worked perfect! Thanks!