How can I hide category titles on my ecommerce site?

https://beauty-doctrine.myshopify.com/collections I want to hide the titles and grayed out box so that it just shows my image, how do I do so?

Please place this code at the end of theme.scss

.collection-grid-item__title-wrapper::before {
  background-color: none !important;
  opacity: 0 !important;
}
.collection-grid-item__title {
display: none !important;
}
2 Likes