How to center align author in testimonials section?

Hi there! I was wondering how I would be able to center align the author at the bottom of my testimonials on my homepage. I would also like to add the 5 stars above the text. Is this possible? Currently it looks like this:

However, I would like it to look like this:

I am mainly concerned with how to center align the, “@username” at the bottom of those testimonials and adding the 5 stars at the top.

The link to the preview is this: https://ybp7q69jilq2jx5j-55086776342.shopifypreview.com

I am comfortable with editing code! Thank you!

Hi @williamk0601
You can try follow this path:
Themes => edit code => asset => theme.min.css
and add this code to bottom of the file theme.min.css

.multi-column-blocks__item > div {
text-align: center!important;
}
.multi-column-blocks__item > div a{
margin-inline: 0!Important;
}
1 Like