I’m new to Webflow, and have a question about changing color of sidebar scroll indicator. I cloned a project I really like but I’m unable to pinpoint how to change the color of sidebar scroll indicator.
You can do this with custom CSS on webkit browsers ( Chrome, Safari… )
But Firefox would be different.
<style>
body::-webkit-scrollbar {
width: 12px;
}
body::-webkit-scrollbar-thumb {
background-color: #2095A4; /* Color of the scrollbar thumb */
border-radius: 10px; /* Radius of the scrollbar thumb */
}
body::-webkit-scrollbar-thumb:hover {
background-color: #2AC4D8; /* Hover color */
}
</style>