
how to remove the "bookmarks Toobar" and the "Unsorted bookmarks" from the Bookmarks Menu
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.
All Replies (4)
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.
Bah, thanks anyways
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.
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