Dawn Theme: Increase white space (padding) between Featured Collection Images

How do I increase the white space (padding) between Featured Collection Images?

See below:

Thank you!

1 Like

@UniquelyClaudia ,

share the url please…

Sure!
https://www.uniquelyclaudia.com

1 Like

Hi @UniquelyClaudia ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css->paste below code at the bottom of the file:
@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.

1 Like

@UniquelyClaudia

.card.card--standard.card--media {
    padding: 10px !important;
}

Add this code in the bottom component-card.css file and save it.

3 Likes

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;
}
1 Like

Thank you! This was exactly what I was looking for!

1 Like

@UniquelyClaudia
Thank you,
Let me know if you need any more help.