mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-25 07:25:42 -05:00
* PUSH NOTE : unlock-firefox-sidebar.md * PUSH NOTE : on-burning-out.md * PUSH NOTE : monkey-brain.md * PUSH NOTE : hello-world.md * PUSH NOTE : Public Journal.md * PUSH NOTE : Meta.md * PUSH NOTE : NeoVim.md * PUSH NOTE : index.md * PUSH NOTE : Quotes Collection.md * PUSH NOTE : About.md * PUSH NOTE : Projects Overview.md
1.6 KiB
1.6 KiB
| title | date | description | categories | tags | compartir | ||||
|---|---|---|---|---|---|---|---|---|---|
| Unlock the Sidebar Width in Firefox | 2023-06-26 | How-to guide about unlocking the max-width of Firefox's sidebar. Doing so net's you a better experience when using extensions within the sidebar. |
|
|
true |
Unlock the Sidebar Width in Firefox
Why Would Anyone Want to Do This?
- To enhance the use of the Firefox Side View extension.
- To compliment the use of one of my Firefox sidebar extensions.
Step-by-Step Instructions
- In a new tab, navigate to
about:support. - Under Application Basics, find Profile Folder.
- Locate and click the
Open Folderbutton next to it. It will be next to an address similar to:%appdata%\Mozilla\Firefox\Profiles\{profile-id}.default1 - Inside your Firefox Profile Folder, create a new folder named:
chrome. - Inside the newly created chrome folder, create a new file named:
userChrome.css. - Copy the following code, paste as content and save:2
/* You may change the units to any length you find more convenient. */
#sidebar-box {
max-width: 40% !important;
min-width: 300px !important; /* careful you don't make it too small */
}
- Finally, in a new tab, navigate to
about:configand search fortoolkit.legacyUserProfileCustomizations.stylesheetsand change it totrue. - Restart Firefox and test it out!