@jonathanfokker did you try https://aihrus.zendesk.com/entries/24910733-How-to-Correct-Testimonials-Widget-CSS-Issues.
I’m referring to http://shigroupchina.com/nl/testimonials-shi-group-china/ for the following.
I did the steps and scrolled down a ways on the applied css to find.
media="screen"
.social_icons a, #scroll_to_top, .top-aside .social_icons a, .article_preview strong a, .member-contact-email, .member-contact-twitter, .member-contact-facebook, .member-contact-google, .member-contact-linkedin, .member-contact-phone, #banner-search input, .tabs_type_1_arrow, .accordion dt:before, .accordion dt.current:before, .post-categories, .post-leave-comment, .metadata, .tt-notification.success p:before, .tt-notification.error p:before, .tt-notification.warning p:before, .tt-notification.tip p:before, .tt-notification.neutral p:before, .tt-icon:before, .tt-mono-icon:before, .tabs_type_2_arrow, .closeable-x:before, .banner-slider .next, .banner-slider .prev, .pagination li a, .pagination li.current a, .pagination li a:hover, blockquote:before, .top-aside ul.custom-menu a .sf-sub-indicator {
background: url(images/global/sprite.png) no-repeat;
}
Buried in there is `blockquote:before {
background: url(images/global/sprite.png) no-repeat;
}`
So if you try something like the following, the left pull quote should go away.
.testimonials-widget-testimonial blockquote:before {
background-image: none;
}
@kvwebmaster, what’s your URL? Did you debug as well per above link?