Customize the maximum width of the Firefox sidebar?

5,739
  1. Firefox menu -> Help -> Troubleshooting Information -> Profile folder -> Open folder

  2. There should be folder named chrome (all lowercased). If it's missing, create it.

  3. In said chrome folder, there's userChrome.css file. If it does not exist, create it.

  4. Open this file with any text editor.

  5. In this file, if there is no CSS rule #sidebar, create it:

/* remove maximum/minimum width restriction of sidebar */
#sidebar {
  max-width: none !important;
  min-width: 0px !important;
}
  1. Restart Firefox
Share:
5,739

Related videos on Youtube

user1580348
Author by

user1580348

Updated on September 18, 2022

Comments

  • user1580348
    user1580348 almost 2 years

    I have Firefox Quantum web-browser version 57.0.2 (64-bit) in Windows 7.

    The Sidebar, unfortunately, has a maximum width of about 540 pixels.

    I tried to increase this constraint by going to about:config and searching for "sidebar". Then I changed the setting devtools.toolbox.sidebar.width;500 to a value of 600. Then I restarted Firefox. But it did not work.

    So how can I increase the maximum width of the sidebar?

  • u2n
    u2n about 5 years
    Confirmed in FF 66: No config settings work, but this method does. No way to improve it.
  • wha7ever
    wha7ever over 4 years
    Did not work on FF 70.0.1.
  • mini
    mini over 4 years
    Since version 69 and later, Firefox does not load userChrome.css by default. To make it effective again, open about:config in Firefox and set the preference toolkit.legacyUserProfileCustomizations.stylesheets to true
  • Marcin Orlowski
    Marcin Orlowski over 4 years
    Does not seem to work on FF 71.
  • 55 Cancri
    55 Cancri almost 4 years
    How do you guys know all of this stuff wth?
  • ofer.sheffer
    ofer.sheffer over 3 years
    Works in FF84(64bit) together with mini's suggestion above for changing the about:config toolkit to 'true' (default was 'false')
  • ofer.sheffer
    ofer.sheffer over 2 years
    Works in FF95.0.2(64bit) together with mini's suggestion above for changing the about:config toolkit to 'true' (default was 'false')
  • Adám
    Adám over 2 years
    @ofer.sheffer (96.0) tookit didn't exist so I created it as Boolean and set it to True. I don't understand mini's suggestion, as I have no toolkit.legacyUserProfileCustomizations and can't see a way to create it so it can contain a stylesheets — I can only make it a simple value. An ideas?