Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How do I disable scrolling tabs in Firefox 17?

  • 1 reply
  • 15 have this problem
  • 6 views
  • Last reply by cor-el

more options

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.

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)

more options

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.

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