When using the Auto Scroll feature in Webflow, a scrollbar may appear, distracting from your design. Here's how you can hide it.
.your-div-class {
scrollbar-width: none; /* For Firefox */
-ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.your-div-class::-webkit-scrollbar {
display: none; /* For Chrome, Safari, and Opera */
}
.your-div-class with the exact class name of the div where the scrollbar appears.
You can hide the scrollbar by adding CSS to your Webflow project’s custom code section, targeting the specific div to ensure a cleaner user experience.