Tagged: testimonials
In mobile mode, testimonials text & logos get cropped. It doesn’t happen in normal desktop sizes.
Is there a way to fix that?
thanks
Hey!
This is being caused by the height attribute in this code in your child theme’s CSS:
.avia-testimonial-wrapper{
height:250px!important;
min-height:250px!important;
padding:0 0 100px 0!important;
}
You can restrict this to desktops and most landscape-oriented tablets only by using this instead:
@media only screen and (max-width: 1024px) {
.avia-testimonial-wrapper{
height:250px!important;
min-height:250px!important;
padding:0 0 100px 0!important;
}
}
Please let us know if you have further questions.
Best regards,
Sarah