How to hide my collection names for my shop?

Hello, I have a bunch of different collections on my store, honestly I think it would look better without displaying the collection name on the top of the page. How do I go about removing the collection name with this theme? Thank you! Here is my website: https://teemania.co/

Hey @teemania ! You can do this by using some CSS code.

To do so, open your theme editor from your Shopify admin by going to Online store > customize, and navigate to the ‘Default collection’ template. Once on this page, you can select the ‘Collection banner’ from the left sidebar, and add the following code into the custom CSS section.

h1 {
  display: none;
}

Hopefully this helps you out!