How do I increase the text size for the Tbay Testimonials? It’s very small on the page and hard to read. Thanks for any help!
Yes, that’s the section that is too small
You can change it with the CSS, eg:
.testimonials-body .description {
font-size: 18px;
}
I put that in the global css, but it still isn’t changing the size. Not sure if I’m missing something
Give me link your website so I can check.
You can use the CSS:
.testimonials-body.v2 .description {
font-size: 24px;
}
.testimonials-body .testimonial-meta {
font-size: 18px;
}
Perfect! Thank you so much!