How can I hide images on my collections page?

Hello, I am trying to hide the image in the collections of my shopify store, I would like it not to take any image, not even the one of the products.

https://icasesatlanta.com/collections

Thanks :grinning_face_with_smiling_eyes: my theme does not allow me to do it easily

@gkoecvhion , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset >base**.css** and paste this at the bottom of the file:
.page-width > .collection-list .media{
    display: none
}

.page-width > .collection-list .collection-list__item .card__text-spacing > .h3{
    font-size: 40px !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

@media (max-width: 749px){
    .page-width > .collection-list .collection-list__item .card__text-spacing > .h3{
    font-size: 30px !important
}
}

Kind regards,
Diego

You are the best!!! Thank you