Remove Page Titles For All Pages - Turbo Theme

Topic summary

Goal: remove page titles across all pages in a Shopify store using the Turbo theme after a theme update changed file structure (theme.scss.liquid not found).

Solution (confirmed):

  • Admin > Online Store > Themes > Actions > Edit code.
  • Open Assets > styles.css.
  • Add at the bottom:
    section.section .container.content.page { display: none; }
    Outcome: All page titles hidden; also eliminated previous top white space. OP confirmed success.

Follow-up (page-specific need):

  • To remove the title on only one page/product without custom code, create a separate product template that hides the title, then assign that template to the specific product. Many themes allow toggling the product title within the template settings. A tutorial link was provided for adding a template.

Status:

  • Main request resolved with a CSS snippet.
  • Page-specific request has guidance via template approach; no confirmation of implementation.

Notes: A screenshot was shared but not essential; the CSS snippet and file path are central to the solution.

Summarized with AI on January 8. AI used: gpt-5.

Hi @PjZ08 ,

Please follow the instructions below to remove the title.

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the styles.css
  3. Paste the code below at the very bottom of the file.
section.section .container.content.page {
    display: none;
}
1 Like