Shopify themes, liquid, logos, and UX
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:
<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 !
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025