Hide footer on Home screen only Ella theme 6.6.2

Hello,

Can someone please tell me how to hide the footer info on the home screen only and how to decrease the black area of the social media icons area?

Thank you in advance

Hi @Only1mrsfragili , can you share your store url?

Sorry, I completely forgot.

https://7gpz74fwodgog2nk-55024255114.shopifypreview.com

1 Like

@Only1mrsfragili , go to theme.liquid file and add the following code at the end before tag :

{% if template.name == "index" %}
     
  {% endif %}
1 Like

It fixed part is the issue, but the social media icons are still showing and how to I minimize the black area around them?

1 Like

@Only1mrsfragili , you want to minimize the height of the black area?

@Only1mrsfragili , go to theme.liquid file and add this code before the tag :


Hi @Abdosamer

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:

{% if template.name == "index" %}

{% endif %}

Here is result:

Hope this can help you, If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

Yes, I would just like a little above and below the icons

1 Like

@Only1mrsfragili , go to theme.liquid file and add this code before the tag :


1 Like