MyBB Community Forums

Full Version: Set custom scroll bar?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how do set a custom scroll bar?
::-webkit-scrollbar { // CHROME
background-color: yourcolor;
border-color; yourcolor;
width: yourwidthPX;
}

::-moz-scrollbar { // Firefox
background-color: yourcolor;
border-color; yourcolor;
width: yourwidthPX;
}

Do not combine the two selectors because if a browser doesn't understand one of the selectors it will drop the rule group.
where do i put that at?
You can put it in either global.css or the CSS of your template (Templates & Style > Click on your theme and you will see the list of stylesheets). Make sure to replace the values.