I want to equally distribute these 2 sections so they have the same background distance between each one. So for example it might be like 500px (section) 500px (section) 500px
yes this section
let try to add Custom CSS below:
@media screen and (min-width: 1140px) {
.CollectionList .CollectionItem {
min-width: 50%;
}
}
not quite what I’m looking for. That code made the images wider and not the space in between them. I created this mockup in Canva of what I’m going for.
1 Like
I fixed it with the code
.CollectionList {
justify-content: space-evenly;
}



