How do you make the vertical scrollbars wider in Firefox?
4 Answers
There is a solution to your problem on Mozilla Zine: How to make the browser scroll bar wider.
Put this code in both
userChrome.cssanduserContent.css:
/* Increase width of VERTICAL SCROLLBAR */
scrollbar[orient="vertical"], scrollbar[orient="vertical"] thumb, scrollbar[orient="vertical"] scrollbarbutton { min-width: 35px !important; -moz-appearance: none !important; }
/* Increase width of HORIZONTAL SCROLLBAR */
scrollbar[orient="horizontal"], scrollbar[orient="horizontal"] thumb, scrollbar[orient="horizontal"] scrollbarbutton { min-height: 35px !important; -moz-appearance: none !important; }
- 55,953
The method for changing scrollbar width has changed. In recent version of Firefox you have to go to about:config and set the following keys to the following values:
widget.non-native-theme.enabledto Truewidget.non-native-theme.scrollbar.size.overrideto your desired widthwidget.non-native-theme.scrollbar.styleto 2-4
On my machine, .override set to 32 and .style set to 4 looks good enough.
It's no more possible with userChrome.css or userContent.css for new versions of firefox , try this addon: https://addons.mozilla.org/en-US/firefox/addon/noiascrollbars/
- 31
If you are using xp, you can still rightclick on desktop Properties Appearance Advanced Scrollbar and make wider. Mine is 21.
It also will affect Firefox and ALL other programs I use on my XP.
Anelle in Idaho
- 1