Deleting the text in 'collection list'-section in Brooklyn theme

Hey, is it possible to delete the text (see image) in the clickable tile of the ‘Collection list’-section in the brooklyn theme?

preview site here (merchandise-section):

https://j90atd5kuh1j7bij-36166205576.shopifypreview.com

Hey @JOR_M ,

Welcome to the Shopify Community!

In order to remove the text overlay from the collection list, you will need to implement a small change in your themes code:

  • Head to Online Store → Theme → Edit code
  • Find the folder labelled Asset → /theme.scss.liquid
  • Paste the below code at the bottom of the file:
.collection-grid__item-title {
display: none;
}

It’s important to note that before making any coding changes, you should always duplicate your theme. This way, if any mistakes are made you can easily revert back to your original theme.

As you continue to develop and edit your store, I highly suggest taking advantage of the Shopify Developers website. This is a place where our developers post hundreds of step-by-step coding tutorials which is a great way to familiarise yourself with all the different customisation possibilities within your theme!

Let me know how you get on!

Hi @JOR_M ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file:
.collection-grid__item-title {
  display: none;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Best regards.