6/25/2023
This post will guide you through unlocking the sidebar width in Firefox. It will let you resize it beyond what is possible by default. We will be setting both the maximum, and the minimum width. You will have a chance to customize these values once at the right step.
about:support
.chrome
.chrome
folder, create a new file called userChrome.css
(includes the file extension).#sidebar-box { max-width: 40% !important; min-width: 300px !important; }
.about:config
.toolkit.legacyUserProfileCustomizations.stylesheets
and change its value to true
.about:support
In a new tab, navigate to about:support.
Under Application Basics, find Profile Folder.
Locate and click the Open Folder button next to it. You’ll find it next to an address similar to:1
%appdata%\Mozilla\Firefox\Profiles\your-profile-id.default
Note: In Windows,
%appdata%
is equivalent to:
C:\Users\your-username\AppData\Roaming
.
chrome
Inside your Firefox Profile Folder, create a new folder named chrome
.
userChrome.css
Inside the newly created chrome
folder, create a new file named userChrome.css
.
Copy the following code, and paste as content inside useChrome.css
and save:
#sidebar-box {
max-width: 40% !important;
min-width: 300px !important;
}
You may change the units to any length you find more convenient.
about:config
In a new tab, navigate to about:config, and search for:
toolkit.legacyUserProfileCustomizations.stylesheets
Change its value to true
.
Finally, restart Firefox for the changes to take effect.
In Windows, %appdata%
is equivalent to: C:\Users\your-username\AppData\Roaming
. ↩