How to Remove Blog Page Title in Shopify?

Learn how to remove or hide blog page titles in your Shopify store using different methods, from simple CSS to theme customization.

Method 1: Using Custom CSS (Easiest Method)

From Theme Customizer:

  1. Go to Shopify Admin → "Online Store" → "Themes"
  2. Click "Customize"
  3. Click "Theme Actions" → "Edit code"
  4. Find "custom CSS" section or create one
  5. Add this CSS code:
/* Hide main blog title */
.blog-title,
.article-title {
    display: none !important;
}

/* Alternative: Hide specific blog title */
.blog-template-title {
    display: none !important;
}

From Theme Settings:

  1. Go to "Online Store" → "Themes"
  2. Click "Customize"
  3. Look for "Custom CSS" or "Additional CSS" section
  4. Paste the CSS code above
  5. Click "Save"

Method 2: Editing Theme Files (Advanced)

Option A: Modify Blog Template

  1. Go to "Online Store" → "Themes"
  2. Click "Actions" → "Edit code"
  3. Find "blog.liquid" under Templates
  4. Locate the title section (usually looks like):
<h1>{{ blog.title }}</h1>

  1. Remove or comment out the code:
{% comment %}
  <h1>{{ blog.title }}</h1>
{% endcomment %}

Option B: Modify Article Template

  1. Find "article.liquid" under Templates
  2. Look for:
<h1>{{ article.title }}</h1>

  1. Remove or comment out as shown above

Method 3: Using Theme Settings

Some themes offer built-in options:

  1. Go to "Online Store" → "Themes"
  2. Click "Customize"
  3. Look for:
    • "Blog settings"
    • "Header settings"
    • "Page settings"
  4. Check for title display options
  5. Toggle off title if available

Best Practices

Before Making Changes:

  1. Backup your theme
  2. Test changes in preview mode
  3. Check mobile responsiveness
  4. Consider SEO implications

SEO Considerations:

  • Keep <title> tags in HTML head
  • Maintain header hierarchy
  • Consider using visually hidden titles
  • Preserve semantic structure

Alternative Solutions:

/* Visually hide but maintain SEO */
.blog-title {
    position: absolute;
    left: -9999px;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Reduce title size instead of hiding */
.blog-title {
    font-size: 0.8em;
    opacity: 0.7;
}

Troubleshooting Common Issues

Title Still Visible:

  1. Check for:
    • Incorrect class names
    • Theme-specific markup
    • Cached pages
  2. Try adding !important
  3. Inspect element to find correct selectors

Layout Issues:

  1. Verify spacing
  2. Check header hierarchy
  3. Test responsive design
  4. Adjust padding/margins

Tips for Different Theme Types

Dawn Theme:

.article-template__title {
    display: none !important;
}

Debut Theme:

.blog-template-title,
.article__title {
    display: none !important;
}

Custom Themes:

  • Inspect element to find correct classes
  • Check theme documentation
  • Contact theme developer if needed

Maintaining Accessibility

When removing titles, ensure:

  1. Page structure remains clear
  2. Navigation is intuitive
  3. Screen readers can understand content
  4. Alternative headings are present

Remember: Always test changes across different devices and browsers before finalizing modifications.

Streamline Customer Engagement & Drive Sales Growth

Boost sales by enhancing customer interaction on your store with AI-powered tools and SEO-focused strategies. Ideal for Shopify app store apps, store blogs, and blog writing—maximize visibility and conversion effortlessly with our Store-Blog App!

 Streamline Customer Engagement & Drive Sales Growth preview