How to make the browser scroll bar wider

User Help for Mozilla Firefox
Locked
maryanne
Posts: 18
Joined: April 18th, 2006, 10:16 pm

How to make the browser scroll bar wider

Post by maryanne »

The vertical bar to the right of browser is so narrow......any way to make it wider?

Thanks. I use Tab Mix Plus Options.
User avatar
dickvl
Posts: 54161
Joined: July 18th, 2005, 3:25 am

Post by dickvl »

Put this code in both userChrome.css and userContent.css
( see: http://forums.mozillazine.org/viewtopic ... 93#2213693 )

Code: Select all

/* 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; }

(you can try first without -moz-appearance: none !important;)
( http://forums.mozillazine.org/viewtopic.php?t=382492 )
maryanne
Posts: 18
Joined: April 18th, 2006, 10:16 pm

Post by maryanne »

Wow, I was just hoping there was an extension to do this simply, lol. Thank you.
User avatar
dickvl
Posts: 54161
Joined: July 18th, 2005, 3:25 am

Post by dickvl »

If you need any help then feel free to ask :wink:
Locked