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

Hide Show All / Unsorted Bookmarks on Menu

  • 1 reply
  • 34 have this problem
  • 15 views
  • Last reply by cor-el

more options

Is there a way to remove the "Show All Bookmarks" and "Unsorted Bookmarks" links on the Bookmarks menu, or at the very least, move them so they're not the top and bottom? It was much easier in my opinion if you could just have the very top of the bookmarks menu be "Add Bookmark".

Is there a way to remove the "Show All Bookmarks" and "Unsorted Bookmarks" links on the Bookmarks menu, or at the very least, move them so they're not the top and bottom? It was much easier in my opinion if you could just have the very top of the bookmarks menu be "Add Bookmark".

All Replies (1)

more options

Add code to userChrome.css below the @namespace line.

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#bookmarksShowAll, #organizeBookmarksSeparator,
#BMB_bookmarksShowAll, #BMB_bookmarksShowAll+menuseparator,
#appmenu_showAllBookmarks, #appmenu_showAllBookmarks+menuseparator,
#appmenu_bookmarksPopup menuseparator[builder="end"],
#appmenu_unsortedBookmarks,
#bookmarksMenuPopup menuseparator[builder="end"],
#menu_unsortedBookmarks,
#BMB_bookmarksPopup menuseparator[builder="end"],
#BMB_unsortedBookmarks { display:none!important; }

Modified by cor-el