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, I’m trying to remove the page titles for all of our pages. We use custom templates for each grade level. I’m using Turbo theme. I did a lot of searching around here and for some reason, I don’t see the files mentioned such as theme.scss.liquid on my end.

We’ve removed the page titles before but the theme was updated. I can’t figure out how to do it again.

Any help would be greatly appreciated. Thanks.

1 Like

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

Wow, it finally worked! Thank you very much, @made4Uo ! I appreciate your help & quick reply. It even looks better than before. There used to be a white space on top. Now, it’s smooth.

1 Like

@PjZ08

Your welcome (",)

1 Like

Hey how about if I want to remove only one specific page title?

Hi @mirosy

To make a simple solution without coding, you need to create another product template, remove the title on that template. Then assign the template to the said product. Depending on your theme, it should allow you to hide and show your product title.

You can follow the tutorial below on how to add a template