How to remove collection title from Brooklyn theme pages?

Hello,

I want to remove the collection name from my collection pages (brooklyn theme) what code do I have to use?

Hello @KimGottwald

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->timber.scss.css>Add this code at the bottom.

.template-collection header.section-header.text-center {
    display: none;
}

Hey @KimGottwald

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > timber.css and paste this at the bottom of the file:
header.section-header.text-center h1 {
display: none;
}

Hi, @KimGottwald .

You can try this code: it will be helpful to you

Go to the online store theme and go to base.css file paste the code mentiond below.

div#shopify-section-template--19556170662199__main h1 {
    display: none;
}

Result:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!