How do I remove text overlay from specific collection lists in the Simple Theme

Hi

I have 2 collection lists on my home page. I only want to remove the text overlay from the first collection list at the top of the page.

Please help.

https://www.groomingbar.co.nz/

@vnaidu20 ,

.collection-list--16518062842a757a42 .h2.collection-grid-item__title {
    display: none;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

Note : If you are having section setting in theme customizer area then you can hide them.

If this section is appearing from liquid file code then you have to search the code and remove it.

1 Like

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

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

}
Thank you.

1 Like

Hi. Thank you so much. It worked perfectly. Have a great week.

Thank you so much.