Hello,
I have been trying to decrease the line height on the Patient Reviews (testimonial page), I found a line of code that seemed to work for the page but not on the home page where I also have the testimonials scrolling.
Here is the code I used:
#top .avia-testimonial-content {
font-size: 14px;
line-height: 1.5em;
}
I tried to attach pictures so you can see how i want it (line space tight and all the font the same size), and how I don’t want it but I couldn’t.
So on the homepage where the testimonials are is what I don’t want and on the patient reviews page is how i want to homepage testimonials to look.
Thank you!
Hey ProdigalMedia1!
Just add !important overrides to the CSS like so.
#top .avia-testimonial-content {
font-size: 14px !important;
line-height: 1.5em !important;
}
Regards,
Elliott
Thank you Elliott! That seemed to fix the line height issue on the homepage.
However, the “title” of the testimonial is still super big, so big that it’s bumped down to the next line while the image is still on the first line.
Thoughts for this? Thanks again!