Remove Blog Title from Blog Post section in Trade Theme

Topic summary

A user wants to remove the blog title “Welcome to Tinsel Traditions Blog” from their blog post section using the Trade Theme. They’ve been unable to find working CSS code.

Proposed Solution:
Another user suggests adding this CSS:

.main-blog > h1.title--primary {
  display: none;
}

Status: The solution has been provided but not yet confirmed as working. The discussion remains open pending verification from the original poster.

Summarized with AI on October 28. AI used: claude-sonnet-4-5-20250929.

Hi!

I am trying to remove the Blog Title from the Blog Post section on my blog in the Trade Theme. I cannot seem to find a CSS cod that works. Can any help help? Trying to remove the “Welcome to Tinsel Traditions Blog”

Website: https://www.tinseltraditions.com/blogs/tinseltraditions

Hi @jordanbford1

You can try to add css:

.main-blog > h1.title--primary {
  display: none;
}
1 Like