How do I Remove the Collection Page Text & Product Count from the Debut Theme?

I would like to know how to edit the code in order to remove the “Products” and “2 products” texts from my default collection page. I’ve attached a screenshot below. Thanks in advance!

hi @b3amuh

Can you share with me the page url?

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.scss.liquid and paste this at the bottom of the file:
span.filters-toolbar__product-count {
display: none;
}
header.collection-header h1 {
display: none;
}

Thank you so much!