Skip to main content

Testimonial module settings

How do I set the Testimonial module so the the image is on top and the text below. All center aligned.

Mathias G

Anders Nisses You can do this with a little CSS directly in the Testimonial module.

Go to Advanced → CSS → Free-Form CSS and add:

``

selector .et_pb_testimonial_portrait {
float: none;
display: block;
margin: 0 auto 20px;
}

selector .et_pb_testimonial_description {
margin-left: 0 !important;
}

selector .et_pb_testimonial:before {
display: none;
}

```
Then set the text alignment to center in the module settings.

This will place the image centered above the testimonial text, like in the screenshot.

Alternatively, you can build your own layout using separate modules and place them inside a Group.