How do I remove the header and footer on just blog posts for Combine 2.3.1.

Topic summary

A user wants to remove the header and footer exclusively from blog posts on their Shopify store using the Combine 2.3.1 theme, while keeping them on all other pages.

Attempted Solution:

  • Another user provided CSS code to hide header and footer elements specifically on article templates:
    .template-article .header-wrapper, 
    .template-article .footer-wrapper,
    .template-article .header, 
    .template-article .footer {
        display: none !important;
    }
    
  • The code was to be added to the theme’s CSS file (base.css/theme.css/style.css/main.css/custom.css)

Current Status:

  • The original poster tried adding the code to theme.css but reported it didn’t work
  • They’ve shared their store URL and password for further troubleshooting
  • The issue remains unresolved and awaits additional assistance
Summarized with AI on November 1. AI used: claude-sonnet-4-5-20250929.

I would like to remove the header and footer on just my blog posts using the template Combine 2.3.1.
I would like the header and footer to remain for all other pages.

Thank you in advance!

1 Like

Hello @Oteeum
Thank you for submitting your query to the Shopify community. I’d be happy to assist you. Could you please provide the store URL and password (if it’s password-protected) so I can review and get back to you with an update?

Hi @Oteeum ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

.template-article .header-wrapper, 
.template-article .footer-wrapper,
.template-article .header, 
.template-article .footer {
    display: none !important;
}

Hi there, thank you for trying - I managed to find this > theme.css and copied and pasted the code but unforunately it didn’t work.

Sure thing, the URL for the blog post is https://oteeum.com.au/blogs/rsvp/eamon-grace

The password to the website is awttag500

I would like to remove the header and footer for all blog posts only.

Thank you in advance!