Hey everyone, I wanted to add some more padding between the rows of products on Prestige theme, without changing the spacing between each product card. Currently there isn’t much space between the colour variant text and the product underneath. Any advice would be appreciated!
1 Like
Check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
@media screen and (min-width: 749px) {
.product-list .product-card {
padding: 1rem 0;
}
}
And save.
Result:
Note: this will show only on the desktop not on mobile.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like

