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

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

Oteeum
Tourist
20 0 3

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!

Replies 4 (4)

devcoders
Shopify Partner
1411 168 442

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?

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!
Oteeum
Tourist
20 0 3

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! 

CodingFifty
Shopify Partner
914 136 164

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;
}
Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
Oteeum
Tourist
20 0 3

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.