Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #841585

    In mobile mode, testimonials text & logos get cropped. It doesn’t happen in normal desktop sizes.

    Is there a way to fix that?

    thanks

    #841605

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.