Express Theme: Empty space at the top of Featured Collection

I’d like to remove the empty spacing shown at the top of the Featured Collection. The empty space doesn’t display anything even when I include collection image or description. How can I remove the spacing?

Hi @calculicious

That is the space for the featured collection header, if you dont like to add some header and remove it then try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.featured-collections__header {
    display: none;
}

Thank you for the quick response. Would this be theme.min.css?