Hey, I need to hide just the footer on this page–> https://sette.co.il/pages/izipizixotello
My theme is
Grid version v2.0.6
Help please?
Hey, I need to hide just the footer on this page–> https://sette.co.il/pages/izipizixotello
My theme is
Grid version v2.0.6
Help please?
Step 1: You need to be able to target a specific page with CSS. Go to your theme.liquid file and find the tag
Step 2: Add this code to the body tag
id="{{ page_title | handle }}"
So that your body tag looks like this:
<body id="{{ page_title | handle }}" >
Step 3: Then before the end of the body tag in theme.liquid add this code:
<style>
#quiz .header-wrapper{
display: none !important;
}
#quiz .footer{
display: none !important;
}
Replace #quiz with the title of your page. So if your page is titled Landing page, it would be landing-page
Step 4: Click Save and check how the page looks.
Nope it didn’t work. is there another way?
Hey @Dvir1324
Kindly share the URL of the page from where you want to hide the footer
This is the URL:
Hey @Dvir1324
Follow these Steps:
{% if page.handle == "izipizixotello" %}
{% endif %}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed