@indiedog, All of that custom-frame-wrapper
like CSS classes around the image itself is custom code and not part of the Testimonials plugin. Further, there’s some CSS authoring problems like missing semicolons between float
and height
properties that’s causing some mischief. However, the Testimonials plugin wrapper itself was left alone and can be updated like the following to get that left wrap.
Affect only widget areas for your theme.
.widget .testimonials-widget-testimonial .image {
float: left;
}
Affect all areas using testimonials.
.testimonials-widget-testimonial .image {
float: left;
}
@elarson, it’s possible each persons CSS fix is different because of theme differences.