Skip to content

Instantly share code, notes, and snippets.

@sdkks
Created January 31, 2023 13:55
Show Gist options
  • Save sdkks/c2b0ef394ce0639eb88d8b892229351d to your computer and use it in GitHub Desktop.
Save sdkks/c2b0ef394ce0639eb88d8b892229351d to your computer and use it in GitHub Desktop.
Customize Firefox Toolbar Layout with userChrome.css
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
/* Placing the config file */
/* Go to about:support address, find Profile folder, open it */
/* Create an empty directory named `chrome` in that */
/* Add this file in that directory with name userChrome.css */
/* Activating the configuration */
/* Go to address about:config, then set => toolkit.legacyUserProfileCustomizations.stylesheets: true */
/* Hide icons for toolbar */
#personal-bookmarks .bookmark-item .toolbarbutton-icon {display:none!important;}
/* Make toolbar bookmark text larger */
#personal-bookmarks .bookmark-item .toolbarbutton-text {font-size:14pt!important;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment