scroll-container
div with overflow-x set to scroll and overflow-y hidden.You want to implement a custom horizontal scrollbar similar to the one shown in your attached image. Here’s a straightforward way to set this up using Webflow's Designer and simple native features.
scroll-container
).scroll-container
and under Overflow settings, choose Overflow: Auto or Overflow-X: Scroll and Overflow-Y: Hidden.Webflow’s Designer does not directly customize scrollbars natively, so you’ll need a bit of custom CSS.
Embed an HTML Embed Widget inside the page or in the Page Settings → Inside the <head>
section.
Insert custom CSS targeting the class you assigned (scroll-container
). For example, use:
scrollbar-width: thin;
and scrollbar-color: #color1 #color2;
for Firefox.::-webkit-scrollbar
, ::-webkit-scrollbar-thumb
, and ::-webkit-scrollbar-track
for Webkit browsers (Chrome, Edge, Safari).Example inline usage:
To create a custom horizontal scrollbar in Webflow: set up a flex, no-wrap scrollable container, apply overflow-x: scroll, and embed simple CSS to style the native scrollbar. Use Webkit and Firefox-specific scrollbar selectors to match the visual style exactly like your attached example.