How can I adjust the picture sizes in my Prestige Theme collection?

Hi There Shopify Community,

I am trying to make a small adjustment to the store but its nog working.
I would like to make the collection pictures bigger that there is a small to no gap betweem them

See picture

I dont like that there is so much padding or margin between it.
So basically I want it fill

Thanks in advance!
Site: Needsomemore.com
pw: NSM2213321

@User27272727272

Hi,

Do you want to remove all padding & margin around them as below?

If you want to make them as above, please go to Assets > theme.css file and add the code below.

@media screen and (min-width: 641px) {
  .CollectionList--spaced {
    margin: 0 !important;
  }
  .CollectionList--spaced .CollectionItem {
    padding: 0 !important;
  }
}

If you like to add a small gap, please use the code below.

@media screen and (min-width: 641px) {
  .CollectionList--spaced {
    margin: 0 !important;
  }
  .CollectionList--spaced .CollectionItem {
    padding: 1px !important;
  }
}

Hope it helps.