Webflow sync, pageviews & more.
NEW

How can I implement horizontal scroll when scrolling over a div in Webflow?

TL;DR
  • Create a scrollable section with a div block (set Overflow: Hidden) containing a horizontally scrolling inner div using Flexbox (Row) with a width larger than its parent.
  • Set up a scroll interaction in Webflow by selecting the target div, adding a "While scrolling in view" trigger, and applying an "Element Move" animation on the X-axis.
  • Optionally, add JavaScript in the footer to enable smooth horizontal scrolling with the mouse wheel by modifying the scrollLeft property of the .scroll-container.
  • Publish and test the setup, adjusting Webflow’s animation settings for smoother motion.

To enable horizontal scrolling when the user scrolls over a specific div in Webflow, follow these steps:

1. Set Up the Scrollable Section

  • Add a div block that will contain the horizontally scrolling content.
  • Set its Overflow to Hidden in the Style panel to prevent unwanted scrolling.
  • Inside this div, add another div that will contain the content you want to scroll horizontally.
  • Set the inner div to Flexbox > Direction: Row and ensure its Width is larger than the parent container to allow scrolling.

2. Apply Custom Scroll Interaction

  • Go to Interactions (lightning icon) in the Webflow panel.
  • Create a new page trigger and select “While scrolling in view”.
  • Choose the target div that should trigger the horizontal scroll.

3. Use Webflow’s Transform to Move Content

  • Add an “Element Move” animation inside the interaction.
  • Set the X-axis movement so that the content shifts horizontally while scrolling.
  • Adjust the Scroll Progress to control how far the element moves based on scroll position.

4. Add Custom Code (Optional for Smooth Scroll)

If you want a smoother scroll effect, you can add custom JavaScript:

  1. Go to the Page Settings and paste this inside the Footer Code section:

    ```

    ```

  2. Make sure your outer div has the correct class (.scroll-container in this example).

5. Publish and Test

  • Publish your site and test the scroll behavior.
  • Adjust animation settings if needed to improve fluidity.

Summary

To enable horizontal scrolling over a div in Webflow, use flexbox for layout, apply scroll interactions, and optionally add JavaScript for event manipulation. This creates a smooth experience where users can scroll horizontally using the mouse wheel.

Rate this answer

Other Webflow Questions