How do I increase the white space (padding) between Featured Collection Images?
See below:
Thank you!
How do I increase the white space (padding) between Featured Collection Images?
See below:
Thank you!
share the url please…
Hi @UniquelyClaudia ,
You can follow the instruction below:
@media (min-width: 750px) {
.collection .grid {
column-gap: 20px !important;
}
.collection .grid .grid__item {
max-width: calc(25% - 20px * 3 / 4) !important;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
.card.card--standard.card--media {
padding: 10px !important;
}
Add this code in the bottom component-card.css file and save it.
Go to Online Store->Theme->Edit code
Asset->/base.css->paste below code at the bottom of the file:
.collection .card.card--standard.card--media {
padding: 10px !important;
}
Thank you! This was exactly what I was looking for!
@UniquelyClaudia
Thank you,
Let me know if you need any more help.