How can I hide the blog title on the Dawn theme?

Topic summary

A user needed to hide the blog title (“Design Blog”) appearing above blog posts on their Dawn theme store, specifically on the blog listing page.

Two solutions were provided:

  1. Complete removal: Delete the <h1>{{ blog.title | escape }}</h1> code block from the main-blog.liquid file (located in the Sections folder)

  2. Hide via CSS: Add .main-blog .blog--title.primary { display: none } to the base.css file (located in the Assets folder)

Both methods require accessing the theme code editor through Admin > Online Store > Themes > Actions > Edit code.

Resolution: Multiple users confirmed both solutions worked successfully. The discussion is resolved with verified working solutions.

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

Hello,

I would like to hide the blog title that says “Design Blog” just above the first blog post on this page. (Not the one in the green box)

Can anyone point me in the right direction to remove or hide it?

Thanks!

https://pixelknit-inc.myshopify.com/blogs/news

PW - dottie

Hi @ASHKnits ,

To remove it, just follow the instructions below.

  1. Go to your Admin store > Online store > Themes > Click Actions > Edit code

  2. Open the main-blog.liquid file under the Section folder.

  3. Find the code below, and delete it.

# {{ blog.title | escape }}

To hide it, just follow the instructions below.

  1. Go to your Admin store > Online store > Themes > Click Actions > Edit code

  2. Open the base.css file under the Asset folder.

  3. Add the code below

.main-blog .title--primary {
display: none
}
9 Likes

That is perfect! Thank you!

1 Like

Only tried the first option and it worked perfectly. Much appreciated!

Thank yo so much, works perfecly :slightly_smiling_face: