I am using the Original theme. I am trying to remove the titles for the collections on my homepage. I have images with the titles and do not want the text over the images.
Hi, you can do this by adding this CSS code below at the bottom of your theme.scss.liquid file
.collection-grid-item__title {
display: none !important;
}
Please add below css in bottom of assets/theme.scss.css file
.collection-grid-item__title-wrapper {
display: none;
}
Thank you.