How can I center my product page?

My product page sits left centred, I’d like it directly in the middle. Does someone have a code for this?

Thanks!

1 Like

@kindredpeople

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

https://kindredpeople.myshopify.com/

hellohello

Thanks Ketan!

1 Like

@kindredpeople

thanks can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/styles.css ->paste below code at the bottom of the file.
.product-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
1 Like