How can I adjust the footer size in the Refresh theme?

Hi,

Has someone tried “Refresh” theme here? It has amazing features but the footer size is way too big and also, it appears on every page (products, collections, checkout, etc.).

1- Can someone help me adjust the footer size? It has different Shopify liquid codes, assets, etc.

2- Is there any way that I can disable it on every page. It has to be on the home page only.

Thanks,

Hi @NomiShah , for your second question, go to edit code > layout > theme.liquid, look for:

{% section 'footer' %}

And replace it with:

{% if template.name == 'index' %}
{% section 'footer' %}
{% endif %}

What exactly do you want to make smaller, height/width/font-size?