How to get it?
Just put (create new|append) the following css
code block to your own userChrome.css
userChrome.css
location:- On Linux system, it maybe here:
~/.mozilla/firefox/vkuuxfit.default/chrome/userChrome.css
- On Windows system: I dunnu exactly, please Google it! :3
- CSS code:
userChrome.css
is maybe not exist by default. On Linux, you can use this command to find out where it is: find ~/.mozilla/ -iname \*hrome\*cssYou're free to use another
pattent
such as userChrome.css
instead of \*chrome\*.css
or something like that. /* hide vertical scrollbar */
notificationbox {
overflow-x: hidden;
}
browser[type="content-primary"], browser[type="content-targetable"] {
overflow-y: scroll;
margin-right: -12px; /* 12px == width of my scrollbar */
}
- Resource: Can you remove Firefox Scroll Bar ....[Solved]
- Screenshot:
Update: In Pentadactyl (
~/.pentadactylrc
): set guioptions=[anyvalue but not 'r']