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.
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:
In sections/image-with-text-overlay.liquid, wrap the content like this:
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 !