How can I center the reviews section on my desktop theme?

Hello,

Is it possible to have the reviews section centered on the page for the desktop?

URL yellowstonenaturalnutrition.com

Thank you

@YNN This should be a possible.

1. Option: Check App Settings

I don’t know which app you are using, but there might be something in the settings about the styling. Maybe you’ll find something about the alignment of the review. Looking at the CSS code, there are some indicators for that.

2. Option: Add Custom CSS to the Review through App

Most apps have a section, where you can modify the existing CSS classes. In your case, this would apply to the Class alireview-layout-list__right

You’ll have to enter the following CSS to the Custom CSS field in the app (if it exists):

@media only screen and (min-width: 1440px)
#shopify-ali-review .alireview-layout-list__right {
    margin: 0 auto;
}

3. Option: Place the CSS code at the bottom of your styles.css file in the code editor.

Hope this helps.

Hello,

Thank you for reply. I am having hard time finding alireview-layout-list__right to insert the code.

Where Can I find it? It is not showing under assets.

Thank you,

@YNN if there is a custom css field in the app, you just have to place the code i’ve sent. If you place it in the styles.css you can place it at the bottom of the file.