<style> tags.To remove scrollbars on all browsers for elements in a Webflow website, you can use a combination of CSS properties. Here's a reliable method to achieve this:
/* Hide scrollbars in Webkit browsers like Safari and Chrome */
.selector ::-webkit-scrollbar {
display: none;
}
/* Hide scrollbars in Firefox */
.selector {
scrollbar-width: none; /* Firefox */
}
/* General overflow settings */
.selector {
overflow: hidden;
}
<style> tags within the embed, ensuring .selector is replaced with the class of the element you want to target.
To disable scrollbars across all browsers for elements in your Webflow site, add the necessary CSS using Webflow's Custom Code features. Ensure the CSS targets specific elements effectively.