How do you hide the collection titles on the collection grid in Debut

I have images with titles on it already and I find the text over image very grainy. I was wondering how to remove the text over image for the collection grid in Debut.

Hi,

Please share your store URL.

Thanks

I am not published yet

Hi,

You can share preview URL and password if the store is password protected.

Thanks

here is a preview link if that helps https://sf78s9lnxx4n1nc0-36835295372.shopifypreview.com

Hi,

Add a collection or image in the section for reference.

Thanks

done

1 Like

Please add below css code in bottom of assets/theme.scss.css file

.collection-grid-item__title.h3 {
display: none;

}
Thank you.

assets/theme.scss.liquid?

1 Like

@Crafty630

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

Add this code in the bottom of theme.scss.css file.

Thank you.

Hi,

Add below css in theme.css file.

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

Thanks

Hit Like and Accept as Solution.

@Crafty630

Yes,

in assets/theme.scss.css file is there in that you will put above css code

Thank you.

The theme I am using is still in .scss

@Crafty630 add the code in theme.scss file.