Remove footer from Brooklyn theme homepage

Hi,

Can anyone help me remove the entire footer from the homepage only (without affecting the other pages) on Brooklyn theme please? This is the site: www.ohvestirse.com

Thank you

Hello,
Edit theme.liquid and search for this code


---

    {% section 'footer' %}

Once you find it, replace it with this one

{% if template != "index" %}
    

---

    {% section 'footer' %}
{% endif %}

Amazing, thank you ever so much! :grinning_face_with_smiling_eyes:

Hi! Does anyone know if this will work with the Narrative theme? I would like to remove the footer entirely from the homepage. www.byisabellaivory.com

Thanks!

Hello @iivory ,

Yes same works for you.

In theme.liquid search for

and replace it with this code

{% if template != "index" %}
    {% section 'footer' %}
{% endif %}
{% section 'footer' %}

Thanks

Hello, I did this and it worked but I still have white space at the bottom,

Here is a picture of it. How can I remove this white space?