How can I create a horizontal scrolling section on mobile in Webflow without using custom CSS/JS?

Published on
September 22, 2023

To create a horizontal scrolling section on mobile in Webflow without using custom CSS/JS, you can follow these steps:

  1. Add a Section: Start by adding a new section to your Webflow project where you want the horizontal scrolling section to be.

  2. Set the Overflow: Select the section you just added and go to the Settings panel on the right side. Under the Layout section, change the overflow property to "auto." This allows the content within the section to scroll horizontally.

  3. Create a Wrapper: Inside the section, add a new div element and give it a class name (e.g., "scroll-wrapper"). This div will act as a container for the horizontally scrolling content.

  4. Set the Flexbox Layout: With the "scroll-wrapper" selected, go to the settings panel and change the display property to "flex." This allows you to control the layout and positioning of the children elements.

  5. Add Content: Inside the "scroll-wrapper" div, add the content you want to scroll horizontally. This can be images, text, or any other elements.

  6. Set the Flex Direction: With the "scroll-wrapper" still selected, change the flex-direction property to "row." This ensures that the content is laid out horizontally.

  7. Adjust the Styling: To make the scrolling section visually appealing, you can style the "scroll-wrapper" div and its contents. You can change the spacing, add borders, adjust the font size, etc., as per your design requirements.

  8. Test and Refine: Preview your website and test the horizontal scrolling section on mobile. Make sure it functions and appears as you intended. If needed, make any necessary adjustments to the positioning, size, or styling of the content.

By following these steps, you can create a horizontal scrolling section on mobile in Webflow without using custom CSS/JS. This ensures compatibility and ease of maintenance within the Webflow visual editor.

Additional Questions:

  1. How do I make a section scroll horizontally on a mobile device in Webflow?
  2. Can I create a horizontal scroll effect in Webflow without coding?
  3. What are the steps to create a horizontal scrolling gallery in Webflow?