Hi everyone,
I’ve tried the following code and it works perfectly on desktop. However, I’m running into an issue on the mobile version.
On mobile, there is a white gap on the sides of the titles and prices, and also a gap between the two product rows. On desktop everything looks exactly how I want it.
Could someone help me adjust the CSS so the spacing is removed on mobile?
Here’s the code I’m currently using:
/* PRODUCT COLLECTION CARD COLOR */
@media screen and (min-width: 750px) {
.product-grid {
–product-grid-gap: 10px;
}
}
.group-block.group-block–height-fill.group-block–width-fill.border-style.spacing-style.size-style {
background: #f3f3f3;
padding-bottom: 20px;
}
Ideally, I’d like the mobile layout to match the clean spacing of the desktop version without the side gaps or extra space between rows.
Any help would be greatly appreciated. Thanks!

