Remove spacing between products on collection page (debutify theme)

Hello, I’m looking for the simple code which would reduce spacing between products in height on the collection page for debutify theme. I’d like to leave a little bit of spacing. This should be for web and mobile.

Please see sample below.

My website is www.checkoutfirst.com

Hi @checkoutfirst ,

You can add the code below to your theme.scss under the Asset folder.

.grid-spacer>.grid__item.grid-product.flex  {
margin-bottom: 0
}

if you want to decrease the space farther. You can add the code below and change the “10px” to what ever you want.

.card-body.grid-product__meta {
padding: 10px
}
1 Like