TEN2
December 21, 2023, 9:33am
1
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
TEN2
December 21, 2023, 10:13am
3
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?
@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;
}
}
TEN2
December 22, 2023, 5:40am
7
Many thanks for this. It works.