To create a side-scroll effect in Webflow where content like images scrolls horizontally (left and right) on mobile devices — without using sliders — you need to use a combination of flexbox, overflow, and scroll setup.
scroll-container.
scroll-container.
scroll-container has width: 100%.overflow-x: scroll and adding custom code for -webkit-overflow-scrolling: touch via an Embed or Page Settings.
If you want to hide the scrollbar:
<style> .scroll-container::-webkit-scrollbar { display: none; } .scroll-container { -ms-overflow-style: none; scrollbar-width: none; } </style>
Replace .scroll-container with your actual class name.
To achieve a horizontal scroll effect on mobile in Webflow without using sliders, use a flexbox container with horizontal scroll enabled and insert fixed-width children inside it. Customize scrollbar visibility and scrolling behavior with minimal CSS if needed.