Hello,
First thing,by default there is no any background color is set for testimonials. But you can set custom backgound color to your testimonial through css. For this apply css for ‘.widget’ class.
for example:
.widget{
background-color:#F00;
}
Thank you
That did not work, but I found a workaround if anyone else has the same question.
p.testimonial_content {
background-color:#572760;
}
Even setting background to transparent or none resulted in a black background with my theme, obviously something elsewhere is overrriding it. I did a spot color sample to find out the color of the widget area and matched it with my code above.