Shopify themes, liquid, logos, and UX
Hello Shopify Community,
I am trying to hide the footer from a specific page on my website. https://yocadesign.co.uk/pages/hello. I followed this thread https://community.shopify.com/c/shopify-design/how-can-i-eliminate-the-footer-on-a-single-page/m-p/2... but it did not work for me. Can anyone advise how to remove a footer from a specific page? Thank you in advance.
Solved! Go to the solution
This is an accepted solution.
Hey @YoavC
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
{% if page.handle == "hello" %}
<style>
.footer {
display: none !important;
}
</style>
{% endif %}
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
This is an accepted solution.
Hey @YoavC
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
{% if page.handle == "hello" %}
<style>
.footer {
display: none !important;
}
</style>
{% endif %}
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Thank you Moeed, it worked.
Thank you for your reply. I'm glad to hear that the solution worked well for you. If you require any more help, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.
Hello @YoavC
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
{% if template == 'page.hello' %}
<style>
footer.footer.color-scheme-2.gradient.section-sections--21762209349959__footer-padding {
display: none !important;
}
</style>
{% endif %}
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
Thank you for your quick response Techlyser_web, I used Moeed solution as they replied beforehand. Thanks again.
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025