How do I remove the header and footer from a specific page on Combine 2.3.1

How do I remove the header and footer from a specific page on Combine 2.3.1

Oteeum
Tourist
20 0 3

Hi there,

I am using Combine 2.3.1.

I would like to remove the header and footer from all of the pages that are under the blog of 'rsvp' from my website. For example below:

domainname/blogs/rsvp/blogpostname
Please click the link to the live site - the password is awttag500.

I have tried numerous code injections from youtube but none of them have worked. 

Thank you in advance!

Replies 10 (10)

topnewyork
Astronaut
1365 165 224

@Oteeum

 Take a screenshot of those pages where you want to remove the header and footer.

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
Oteeum
Tourist
20 0 3

This is the top and bottom of the page with the header and footer. Hope it helps 

Screenshot 2025-01-29 at 10.19.30 PM.png

Screenshot 2025-01-29 at 10.19.52 PM.png

topnewyork
Astronaut
1365 165 224

Note: Only hided footer, check it and let me know as u you want like this?
@Oteeum 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
.container--large.gutter-top--xlarge.gutter-bottom--xlarge.footer-top {
    display: none !important;
}
</style>

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
Oteeum
Tourist
20 0 3

Thank you, it successfully hid the footer. Could you help me hide the header and the footer- but only on the RSVP blog pages? 

topnewyork
Astronaut
1365 165 224

Note: This is for header... Paste code as per above instructions......
Mark both solutions

<style>
   div#header-top {
    display: none !important;
}
</style>

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
Oteeum
Tourist
20 0 3

Thanks for your help but how do I only apply them to the RSVP blog pages? I can hide the header/footer across the whole site by just removing it but I need it on the rest of the website. I only want to hide them for certain pages as mentioned in my initial post:
domainname/blogs/rsvp/blogpostname <hidden for all posts under RSVP

 

 

topnewyork
Astronaut
1365 165 224

@OteeumRemove all code as I gave you, again I'm trying 

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
Oteeum
Tourist
20 0 3

Thanks, if you have a solution for removing it on certain pages, I would greatly appreciate it!

topnewyork
Astronaut
1365 165 224

@Oteeum Sorry for the late reply, I tired my best to reslove your problem
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
 main-header#site-header {
    display: none !important;
}
div#shopify-section-sections--18050963996901__footer {
    display: none !important;
}
</style>

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
Oteeum
Tourist
20 0 3

Hi @topnewyork 

Thank you for trying again, unfortunately when I pasted the code in, it removed the header and footer for the whole website and not just for the blog pages. Is it possible to use some 'if' statements to isolate the removal just to the blog posts?