Ubuntu – Show Firefox bookmarks button in Firefox navigation bar

bookmarksfirefox

I tested Natty Beta 2 yesterday and found that the bookmarks button is hidden. The usual way to show it seems to be hiding the menubar under Customize, however there is no Menubar option in there now. Is there a way to show the bookmarks button?

I can download Firefox from Mozilla and use that version but that's not the best option.

Best Answer

Or you can put this code into your userChrome.css file:

#bookmarks-menu-button-container {display:-moz-box!important;}

In Firefox 23 and newer, the following may work instead:

#bookmarks-menu-button {display:-moz-box!important;}

The button will show up in her place and you don't have to disable the global menu extension.

You can always check for correct CSS selector by navigating to chrome://browser/content/browser.xul and using Firefox's Inspector in Developer Tools.

Related Question