How to alter product row count to 5 in Prestige theme?

How can I change the products per row to 5 in the prestige theme? It only allows a maximum of 4.

1 Like

@MST65912

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.

Thank you, the url is:

https://aestheticblendd.com/collections/stainless-steel-chains

1 Like

@MST65912

thanks for store url please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
    this code apply for after 5 - 6 second
@media screen and (min-width: 1140px) {
.ProductList.ProductList--grid .\31\/4--desk, .ProductList.ProductList--grid .\33\/12--desk {
    width: 20%;
}
}
1 Like

I tried it, but the maximum products per row is still at 4.

I tried it, but the maximum products per row is still at 4.

hello @MST65912

please Go to Online Store->Theme->Edit code
Asset->/theme.css ->paste below code at the bottom of the file. see screenshort http://prnt.sc/13gxaip

@media screen and (min-width: 1024px) {
 .template-collection .CollectionInner__Products .ProductListWrapper  .ProductList    .Grid__Cell {
         width: 20% !important;
}
}

@MST65912

please add again and see view

@media screen and (min-width: 1140px) {
.ProductList.ProductList--grid .\31\/4--desk, .ProductList.ProductList--grid .\33\/12--desk {
    width: 20%;
}
}

1 Like

@KetanKumar This works! But the total products on a page remains to be multiple of 4. Any way to change it so it’s multiple of 5?