Need Text and Overlay Removed from Collection

Hello, I am using the Debut theme - and would like to get rid of the overlay and text from the boxes on my Collections on the main page.

Thank you: www.shirts915.com

hello @SPEmpress

can you please share a screenshot which overlay removed from collection

Hello @SPEmpress

  1. In your Shopify Admin go to online store => themes => actions => edit code

  2. Find Asset => theme.css and paste this at the bottom of the file:

.collection-grid-item__title-wrapper {
    display: none;
}

Hope it will help you!

Thanks.

Hi mate thanks for posting here what I am thinking that it can be removed through custom coding

@SPEmpress Go to assetes/theme.css and paste below css at bottom of file.

.collection-grid-item__title
{
display: none !important; 
}

.collection-grid-item {
--color-image-overlay: none !important; 
}

Hi @SPEmpress ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css->paste below code at the bottom of the file:
.collection-grid-item__title-wrapper {
    display: none !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

This did the trick!!! Thank you!!!