
how do i add a toolbar on firefox 31?
I want to add a toolbar so that the theme i installed would not be cut.
All Replies (3)
You can no longer add extra toolbars in current Firefox releases.
You can use the Classic Theme Restorer extension to add one extra toolbar.
- You can check out the settings of the CTR extension via its Options/Preferences button on the "Firefox/Tools > Add-ons > Extensions" page.
- You can find extra toolbar buttons and more toolbar settings in Customize (3-bar Firefox menu button > Customize)
See also:
I see, thanks for replying. So is there anyway to edit the image of a downloaded persona?
You can set a larger minimum height for the Navigator toolbox.
Add code to the userChrome.css file below the default @namespace line.
@namespace url("https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ #navigator-toolbox {min-height:200px!important} /* min-height for Persona */
The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.
You can use this button to go to the currently used Firefox profile folder:
- Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
- Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
- Use a plain text editor like Notepad to create a (new) userChrome.css file in this folder (the names are case sensitive)
- Paste the code in the userChrome.css file in the editor window and make sure that the userChrome.css file starts with the default @namespace line
- Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css. Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file