Hi Luisa
Please add this style code to your child theme/ theme style.css file and it will fix alignment of the image with text.
.testimonials-widget-testimonial .image {
margin-right: 0.4em;
margin-top: 1em;
}
Please let me know if you still face any issue.
Thanks
Thank you for the response, but now it shows this gray on the top:
http://i.imgur.com/01FgNpT.png
How to hide it?
Thank you.
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