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

how to remove the "bookmarks Toobar" and the "Unsorted bookmarks" from the Bookmarks Menu

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

more options

I'm looking to figure out how to permanently remove these unused "features" from the Bookmarks menu, not just from the window. Thanks.

I'm looking to figure out how to permanently remove these unused "features" from the Bookmarks menu, not just from the window. Thanks.

Chosen solution

This cannot be done.
You can move the bookmarks from inside, but you cannot delete the folders because they are programmed into Firefox.
Sorry.

Read this answer in context 👍 2

All Replies (4)

more options

Chosen Solution

This cannot be done.
You can move the bookmarks from inside, but you cannot delete the folders because they are programmed into Firefox.
Sorry.

more options

Bah, thanks anyways

more options

If you want to leave feedback for Firefox developers, you can go to the Firefox Help menu and select Submit Feedback... or use this link. (You'll need to be on the latest version of Firefox to submit feedback). Your feedback gets collected at http://input.mozilla.org/, where a team of people read it and gather data about the most common issues.

Thank you for using the Mozilla support forums.
Please remember to mark my above answer as the solution. This will help other users searching for help find a solution faster.

more options

You can't remove any of the three main root folders.
You can possibly hide them with code in userChrome.css.

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

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

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

#BMB_bookmarksToolbar,
#BMB_bookmarksToolbar+menuseparator,

#bookmarksToolbarFolderMenu,
#bookmarksToolbarFolderMenu+menuseparator,

#appmenu_bookmarksToolbar,
#appmenu_bookmarksToolbar+menuseparator,

#BMB_bookmarksPopup menuseparator[builder="end"],
#BMB_unsortedBookmarks,

#bookmarksMenuPopup menuseparator[builder="end"],
#menu_unsortedBookmarks,

#appmenu_bookmarksPopup menuseparator[builder="end"],
#appmenu_unsortedBookmarks {
 display: none !important;
}

Modified by cor-el