I would like to have consistent spacing between my collection cards on mobile. On desktop, my sections are spaced correctly but I can’t figure out how to change this on mobile. The sections under “good golf, great friends, quality apparel” has the spacing I want to achieve. The collection cards are labeled “All products, Apparel, and Accessories”
@insideyagolf copy and paste code in base.css
@media only screen and (max-width: 768px) {
.collection-list {
row-gap: 16px !important;
padding-top: 3px !important;
}
}
1 Like
@insideyagolf copy and paste code in base.css
@media only screen and (max-width: 768px) {
.collection-list {
row-gap: 16px !important;
padding-top: 3px !important;
}
}
1 Like
Just follow the steps Below:
- Go to online store → theme
- select three dots and select code edit
- Search for the file theme.css and base.css
- past that code at the end
@media(max-width:766px){
.collection-list {
row-gap: 16px;
padding-top: 5px;
}
}
I hope this solution worked for you!
If yes Just like this Reply and Mark it as a Solution and to keep me motivated BUY ME A Coffee
1 Like

