Scroll from section to section on homepage like tiktok feed

Scroll from section to section on homepage like tiktok feed

Issyeissue1
Shopify Partner
8 0 2

Is it possible to add a property to my homepage, and my sections so it scrolls from section to section like a TikTok feed? 

 

I am using the Prestige theme and i got 3 image with text overlay sections on my homepage.

 

Screenshot 2025-06-03 at 6.14.42 PM.png

 

 

Reply 1 (1)

StevenT_A7
Explorer
161 13 17

Hi @Issyeissue1 , 

 

Below is the brief solution to make your Shopify homepage scroll like a TikTok feed.

 

In theme.liquid or index.liquid, wrap your homepage content:

<div class="scroll-container">
{{ content_for_index }}
</div>

 

In sections/image-with-text-overlay.liquid, wrap the content like this:

<div class="fullscreen-section">
<!-- existing section code -->
</div>

 

Add this CSS to your theme in base.css

.scroll-container

{
scroll-snap-type: y mandatory;
overflow-y: scroll;
height: 100vh;
}

.fullscreen-section

{
height: 100vh;
scroll-snap-align: start;
scroll-snap-stop: always;
}

 

This creates vertical full-screen snap scrolling between your "Image with text overlay" sections just like TikTok.

 

please use these steps and do let me know if it works for your theme.

Thanks !

Steven Taylor
302-260-8345