Hi all,
How can I increase the font of the testimonials section title + align it to center. Also how can I increase the font size for the customer name at the bottom?
Adding screenshot for reference.
Thank you.
Hi all,
How can I increase the font of the testimonials section title + align it to center. Also how can I increase the font size for the customer name at the bottom?
Adding screenshot for reference.
Thank you.
Try to update the css file (/assets/styles.css) starting at line 6292
// increase font of the testimonials section title + align it center
.subheading {
font-size: 1em;
font-weight: 500;
line-height: 1.3em;
letter-spacing: 0.08em;
text-transform: uppercase;
text-align: center;
}
// increase font size for the customer name
.testimonial__author{
font-size: 1em;
}
Hope I could help!
Worked well for the title size but couldn’t find the quote for the author name font size.
Also, anyway I can reduce the actual testimonial message size? it’s too big
Thanks!!
If you want to reduce the actual testimonial message size add “font-size” in line 4283 (/assets/styles.css)
.testimonial__text .testimonial__blockquote {
font-size: 16px;
}
for updating the font-size of the author you need to add the following lines after 4281 (/assets/styles.css)
.testimonial__author{
font-size: 1em;
}
Super helpful thanks. One more thing if you don’t mind. How can I center the paragraph and tighten the margins when showing only one review?
My current review section:
How I want it to look (roughly - one review centered which is not taking full page width + remove the hyphen before the author name):
@nadimnahas No problem - just drop an url where I can find the issue…
Thanks! On my landing page www.urbanframes.ae (it was disabled - i renabled it)