Skip to main content

Customising the Firefox menu bar for the most screen real estate (>V5)

Right click the yellow star in the URL bar (RHS) or a blank area to the right of your last open tab and check the following options.
  • Navigation Toolbar
  • Add-on Bar
  • Tabs on Top
Now choose ‘Customise’ and drag and drop the following items from the various toolbars and the “Customise Toolbar” inset box in the middle of your screen to create a toolbar like the one shown below.



  • Navigation arrows (back/forward)
  • Homepage button
  • “Stop loading page” icon
  • URL bar
  • Bookmark Toolbar Items
  • Search box
  • Any other items you need on top like icons for Add-ons (Webmail notifier, Adblock etc)















To remove an item from any toolbar, drag it into the “Customise Toolbar” box shown above which is a kind of icon repository.

N.B If you have a large number of items in your “Bookmark Toolbar Items”, this will shrink your URL and Search boxes and make them too small to use. If this happens, you can either edit the names by navigating to “Show all Bookmarks” (Ctrl + Shift + B) and make them shorter or better still, remove the names altogether as shown below if the icon will be unmistakable in the toolbar like the ones shown below.









The result looks like this.





Failing that, right click the yellow star in the URL bar again and customise the toolbars by turning on the “Bookmarks Toolbar”. This will display a second bar under the Navigation Toolbar which will now be blank. Choose 'Customise...' again and drag your “Bookmark Toolbar Items” back to this blank toolbar. Remember though, this kind of defeats the purpose so it's best to only store your most frequent items in the “Bookmark Toolbar Items” location if you really want to maximise space and leave it inside the Navigation Toolbar.

If you want even more space, turn off the "Add-on Bar" which is the one at the bottom of the page but remember this is where allot of add-ons put their icons so it is quite valuable.

Good Luck!

Comments

Popular posts from this blog

Using ESPEasy with Home Assistant via MQTT

Preface: I've just started playing around with Home Assistant on a Raspberry Pi and exploring the world of MQTT to control devices on the network. Learning curve is a bit steep but worth the effort as MQTT is very fast. The hardware and software tools I'm using are as follows: 2 x Sonoff relay units 2 x NodeMCU Boards ESPEasy firmware (must be version 121 or above as that contains the MQTT 'retain' flag option. Home Assistant software on Raspberry Pi2 MQTT Test Software: PC: MQTT.fx Android: MQTT Dashboard

My Notepad++ tricks when editing YAML files in Home Assistant

To comment out a whole section in one go: Highlight the text you want to comment out and use CTRL + Q. If you do this at the start of a line, it will only comment that line. CTRL + Q is toggle mode (comment on/off). CTRL + K will allow you to add multiple comments one after the other.

How to check what entities are filling up your Home Assistant database

If you use the Home Assistant MariaDB add-on, this tip will show you how to query the database so see what Home Assistant entity states are triggering the most, filling up your database. What were going to do: Install the phMyAdmin add-on for MariaDB. Query the MariaDB database. See what entity state changes have the most action. Paste the code below into the SQL query box:  select entity_id,count( * ) from states group by entity_id order by count ( * ) desc; And if you're using the internal home-assistant_v2.db instead, you can use the SQLite Web add-on to achieve the same thing.