
How do I disable scrolling tabs in Firefox 17?
How do I disable scrolling tabs in Firefox 17 without adding an extension from an unverified author? Please include the exact steps for Linux, OSX and Windows.
Or I don't know put it back the way everyone wants it... Call me crazy.
All Replies (1)
Do you mean by setting a lower minimum width for the tabs to make more tabs fit on the tab bar before scroll buttons appear?
The Custom Tab Width extension adds this CSS rule and adjust the settings from the browser.tabs.tabMinWidth and browser.tabs.tabMaxWidth prefs.
- Custom Tab Width: https://addons.mozilla.org/firefox/addon/custom-tab-width/
Add this code to the userChrome.css file below the default @namespace line if you do not want to use the extension.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ .tabbrowser-tab[fadein]:not([pinned]) { min-width: 100px !important; max-width: 250px !important; }