Can I display products in two rows instead of one?

Hey

Is it possible to have 2 rows here instead of one? I think the images is too big

www.portvinsflasken.dk

password: Odense123

Hi @pf2022 ,

Just do the code below.

  1. Go to your Admin store > Online store > Themes > Click Actions > Edit code

  2. Open the theme.scss file under your Asset folder.

@media only screen and (max-width: 750px) {
#CollectionSection > div > div.grid-uniform {
display: grid !important;
grid-template-columns: 1fr 1fr;
}
}

That worked on the front page thank u. Can i have the same on this page “Vinkælderen”?

Hello @pf2022

Go to your Admin store > Online store > Themes > Click Actions > Edit code

@media (max-width: 768px) {
#CollectionSection .grid-uniform{
	
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
}

Hope it helps. Thank you