Hi Luisa,
Do you want to hide gray border or want to align with image and text?
Solution 1:- If you want to hide gray border: Simply add the below style code to your theme/child theme style.css file.
.testimonials-widget-testimonial blockquote {
border: 0 none;
}
Or
Solution 2: If you just want to align with image and text then add below code to your style.css file:
.testimonials-widget-testimonial blockquote {
line-height: 12px;
padding-bottom: 0;
padding-top: 0;
}
.testimonials-widget-testimonial .image {
margin-bottom: 0;
margin-right: 0.5em;
margin-top: 0;
}
Note:- Please note that the issue you are facing due css conflict in your theme. For more detail you can check our FAQ link: https://nodedesk.zendesk.com/hc/en-us/articles/202243372
Thanks
Saurabh