Remove Page Template Title

Topic summary

A user seeks to remove the page title “Events” from a specific page template.

A solution is provided involving CSS customization:

Steps:

  • Navigate to Shopify admin → Online Store → Themes
  • Click Actions → Edit code on the desired theme
  • Locate the CSS file in the Assets folder (typically base.css, style.css, or theme.css)
  • Add the following CSS code at the bottom:
.section-template--16226731842215__main-padding h1 {
  display: none;
}
  • Save the changes

The solution targets the specific page template’s heading element to hide it from display. The helper includes a screenshot showing the title element to be removed and requests marking the post as a solution if successful.

Summarized with AI on November 9. AI used: claude-sonnet-4-5-20250929.

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!