I tried updating, but nothing changed. I reviewed the testimonials, and there doesn’t seem to be any extra line breaks in the testimonial itself.
I also reviewed the code and found the extra unclosed <p> after each testimonial.
<div class="test_nuggets">
<div class="testimonialswidget_testimonials testimonialswidget_testimonials_list">
<div class="testimonialswidget_testimonial testimonialswidget_testimonial_list"><q>
<p>“I learned how to answer behavioural questions effectively.”</p>
<p></q></div>
</div>
</div>
Shouldn’t this look more like this:
<div class="test_nuggets">
<div class="testimonialswidget_testimonials testimonialswidget_testimonials_list">
<div class="testimonialswidget_testimonial testimonialswidget_testimonial_list">
<q><p>“I learned how to answer behavioural questions effectively.</p></q>
</div>
</div>
</div>
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]