Remove extra padding from the Navigation Toolbar
Posted by admin on 26 Apr 2007 5:13 am. Filed under Tips & Tricks.
- This tip will make the toolbars use less space around the buttons, allowing Firefox to use more space for the actual web pages. This also affects additional toolbars such as the Googlebar. Add the following code to your userChrome.css file:
/* Remove extra padding from the Navigation Bar */ .toolbarbutton-1, .toolbarbutton-menubutton-button { padding: 2px 3px !important; } .toolbarbutton-1[checked=”true”], .toolbarbutton-1[open=”true”], .toolbarbutton-menubutton-button[checked=”true”], .toolbarbutton-menubutton-button[open=”true”] { padding: 4px 1px 1px 4px !important; }