Okay
  Public Ticket #1804068
Testimonial slider font size on mobile
Closed

Comments

  • InnovationHaven started the conversation

    Hi,
    The letter size in the testimonial slider is perfect for the large screen but I want to reduce the letter size on mobile because the testimonials do not fit one scree without scrolling.

    How can I change the testimonial font size only on mobile screens?

  •  3,030
    Andrew replied

    Hi,

    Thank you for contacting us.

    You can use the following custom CSS on the page settings to change the font size on mobile screen.

    @media only screen and (max-width: 690px){
        body .testimonial_slider blockquote p{
          font-size: 12px !important;
        }
    }
    

    Kind Regards

  • InnovationHaven replied

    Works great!
    I added a line high modification and now it looks exactly how I wanted it to be. Thank you! :)

    @media only screen and (max-width: 690px){
        body .testimonial_slider blockquote p{
          font-size: 15px !important;
          line-height:2em!important;
        }
    }