Hide collection title on homepage collection card - DAWN THEME

I am looking to hide the collection titles under the collection cards on the featured collection collages on the homepage. I am using the dawn theme.

URL www.willowrhode.com

Thanks in advance!

Hey @jennarose ,
Welcome to the Shopify community!
You can follow the instruction below:
Go to Online Store->Theme->Edit code->base.css->paste bellow code in bottom of file.

.collage .collage__item--collection .full-unstyled-link {
    opacity: 0 !important;
}

If you feel like my answer is helpful, please Like and mark it as a solution**.** Let me know if you have any further questions.
Thank you!
Raman

1 Like

Thank you! It worked great but now can I now reduce the white space between collection cards on the collage?

Hey @jennarose ,

Go to Online Store->Theme->Edit code->base.css->paste bellow code in bottom of file.

.collage .collage__item--collection .card__information {
    height: 0 !important;
    padding: 0 !important;
}

If you feel like my answer is helpful, please Like and mark it as a solution**.** Let me know if you have any further questions.
Thank you!
Raman

1 Like