Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Streamlining Bookmarks Drop Down

  • 2 replies
  • 2 have this problem
  • 3 views
  • Last reply by cor-el

more options

I have all my bookmarks in the drop down (technically under "Bookmarks Menu"), but I don't like that when I click the bookmarks icon, it first shows a bunch of options before I get down to the bookmarks, such as View Bookmarks Sidebar, Show all Bookmarks, Bookmarks Toolbar, Unsorted Bookmarks, etc. In order to get to my actual bookmarks, they are lower down, and sometimes I even have to scroll.

Is there anyway to remove/hid the options above my bookmarks, or at least put them below them?

Thanks!

I have all my bookmarks in the drop down (technically under "Bookmarks Menu"), but I don't like that when I click the bookmarks icon, it first shows a bunch of options before I get down to the bookmarks, such as View Bookmarks Sidebar, Show all Bookmarks, Bookmarks Toolbar, Unsorted Bookmarks, etc. In order to get to my actual bookmarks, they are lower down, and sometimes I even have to scroll. Is there anyway to remove/hid the options above my bookmarks, or at least put them below them? Thanks!

All Replies (2)

more options

Not without an add-on (I'm not sure of one that does that either I am afraid).

Would the Bookmarks side-bar help? You can do this by clicking the Bookmarks icon and then selecting View all Bookmarks. Also you can press CTRL + B

If not you can also show the bookmarks toolbar which will put a list of your bookmarks underneath the address bar. This is done by:

  1. Click the Settings button (three horizontal lines in the top right)
  2. Click Customize at the bottom
  3. Click Show hide toolbars (at the bottom) and then select Bookmarks Bar

Hope this helps

more options

You can organize your bookmarks in folders to avoid scrolling down.

See also:

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 */

#BMB_viewBookmarksSidebar,
#BMB_bookmarksShowAllTop, #BMB_bookmarksShowAll,
#BMB_bookmarkThisPage,
#BMB_subscribeToPageMenuitem,
#BMB_subscribeToPageMenupopup, #BMB_subscribeToPageMenupopup+menuseparator,
#BMB_bookmarksToolbar, #BMB_bookmarksToolbar+menuseparator,
#BMB_unsortedBookmarks {
 display:none!important;
}

#menu_bookmarkThisPage,
#subscribeToPageMenuitem,
#subscribeToPageMenupopup,
#bookmarksShowAll, #organizeBookmarksSeparator,
#bookmarksToolbarFolderMenu,
#bookmarksToolbarFolderMenu+menuseparator,
#bookmarksMenuPopup menuseparator[builder="end"],
#menu_unsortedBookmarks {
 display:none!important;
}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.