How to change Products per row in desktop version

I’ve seen other sites that also use the “Prestige” theme and its collection page can show 2 products in a row. But I didn’t find where I could change it.

Even I asked the support team of Prestige. But they still said that can not be changed.

Anyone can help me with this?

Hi @TEN2 ,

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file → Save

I checked the theme Prestige and I see an option to change the items per row on the desktop mode. you can re-check

Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

Thanks, Oliver

I think we are talking about the different “Prestige” themes.

But thanks anyway.

Can you share the URL so I can check it?

Sure.

ten2.com.au

@TEN2 please add this code to your theme’s CSS file.

@media screen and (min-width: 700px){
.collection .product-list[collection-desktop-layout=large] {
    --product-list-items-per-row: 2 !important;
}
}

Many thanks for this. It works. :grin: