Remove Page Template Title

Does anyone know how to remove the Title from the page. I’m trying to remove “Events” on this page. https://5f773c-e9.myshopify.com/pages/events

1 Like

Hi @MockSite

Do you mean this title?

If it is check 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:

.section-template--22673248125211__main-padding h1 {
    display: none;
}

And save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!