How can I remove the page title from Craft Theme?

Topic summary

A user seeks to remove the page title from their Craft theme, specifically from the About Us page, after previous solutions failed.

Working Solution:

  • Add CSS code to section-main-page.css file (located in Themes > Edit Code > Assets)
  • Insert .main-page-title { display: none !important; } at the bottom of the file
  • This successfully removes the title across both desktop and mobile views

Alternative Method:

  • Another suggestion involves adding similar CSS to base.css, though one user reported this only worked on desktop, not mobile

Outcome:

  • Multiple users confirmed the primary solution works effectively for the Craft theme as of 2024
  • The issue is resolved with the CSS modification to section-main-page.css
Summarized with AI on November 9. AI used: claude-sonnet-4-5-20250929.

This worked for me as well. Craft theme in 2024. I tried using the following method in base.css file as suggested elsewhere, but it only removed it from desktop and not in mobile. This method suggested here worked for both. Thank you!

.main-page-title {
display: none; /* Hide the main title */
}