Make website scroll down only on homepage

I recently put in some code for my website to load further down the page so my homepage image could be instantly shown. I soon realized that it also did it for every single page on my website. I only want it to start further down on the homepage, and not any other page.

Here’s where the other pages start.

I can paste the code I am using now, (this code is located in theme.liquid above the tag)


I only want this code to work ONLY on my homepage, and not any other page. Here is my website: Viibed

Please help, and thank you!

Hi @Viibed

{% if template == 'index' %}

{% endif %}

Do I replace the original code with this?

Yes, exactly.

Worked, thank you!