Center align Logo List items - Prestige Theme

Hi there, I’ve been trying to customise my Logo List custom liquid element but cannot get the logos included to be center aligned on mobile and desktop. Right now, everything is justifying left no matter what solution I try. Most recently, I tried implementing the solution on this “solved” thread but didn’t have any success.

The original Logo List code was taken directly from Shopify’s GitHub library here.

The logo list in question appears on this page: Earp Presents - Portside Festival – earpdistillingco

Hi @edcomarketing

Can you try adding below code to the section’s Custom CSS via Editor/Customize

ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

If you require further help, please don’t hesitate to reach out.
If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please hit Like and Mark it as Solution!

1 Like

Amazing! Thanks for such quick and easy help. This solution has resolved my issue, showing the rows of icons centred on mobile and desktop in a variety of browsers and mobile types

1 Like