Hi,
Following help from @LitCommerce,
for my collection page product images, is anyone able to please provide code that will reduce the spacing between products in mobile view?
Hi,
Following help from @LitCommerce,
for my collection page product images, is anyone able to please provide code that will reduce the spacing between products in mobile view?
Welcome to shopify community.
Please share your store URL and if your store is password protected then please provide password too.
Thank you.
Hi @LeanneJ12 ,
Go to Assets > pre_theme.min.css and paste this at the bottom of the file:
@media (max-width: 767px) {
.template-collection .products.space_20 .nt_pr {
margin-top: 10px !important;
}
}
Hope it helps!
Hi @LitCommerce ,
Thank you for the code. Sorry, I don’t think I explained properly, I meant code to reduce the product column spacing as per image attached and not the row spacing.
Best wishes,
Hi @LeanneJ12 ,
Please add code:
@media (max-width: 767px) {
.template-collection .products.space_20 {
margin-right: -4px;
margin-left: -4px;
}
.template-collection .products.space_20 .nt_pr {
padding-left: 4px !important;
padding-right: 4px !important;
}
}