This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

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

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

Can I move or remove "Show All Bookmarks-BookmarksToolbar-EditThisBookmark-Suscribe to This Bookmark-UnsortedBookmarks", which I never use?

  • 2 antwoorde
  • 1 het hierdie probleem
  • 33 views
  • Laaste antwoord deur cor-el

more options

I never use these choices in the Bookmark menu:

Show All Bookmarks Bookmarks Toolbar Edit this Bookmark Suscribe to this Bookmark Unsorted Bookmarks

All but "Unsorted Bookmarks" occupy top billing. Preferably I would like to remove them from the menu, however if I could just put them at the bottom of the list, I would be satisfied.

"Bookmark This Page" is all I really want followed by my bookmarks. I rarely have more than 4 or 5 bookmarks that I often use. Sometimes if purchasing something, I will bookmark several screens until I make a decision, but I remove them all when I make a decision.

Thanks! :)

I never use these choices in the Bookmark menu: Show All Bookmarks Bookmarks Toolbar Edit this Bookmark Suscribe to this Bookmark Unsorted Bookmarks All but "Unsorted Bookmarks" occupy top billing. Preferably I would like to remove them from the menu, however if I could just put them at the bottom of the list, I would be satisfied. "Bookmark This Page" is all I really want followed by my bookmarks. I rarely have more than 4 or 5 bookmarks that I often use. Sometimes if purchasing something, I will bookmark several screens until I make a decision, but I remove them all when I make a decision. Thanks! :)

All Replies (2)

more options

The Menu Wizard extension has a feature to allow the user to selectively hide many menu items. https://addons.mozilla.org/en-US/firefox/addon/s3menu-wizard/

more options

Is this about items in the bookmarks on the menu bar as the Bookmarks button (Show your bookmarks) next to the star on the Navigation Toolbar doesn't include "Bookmark This Page"?

Note that "Bookmark This Page" changes to "Edit This Bookmark" is the current page is bookmarked.

You can hide some items via code in the userChrome.css file.

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

/* items in Bookmarks menu */
#menu_bookmarkThisPage,
#subscribeToPageMenuitem,
#subscribeToPageMenupopup,
#menu_bookmarkAllTabs,
#bookmarksShowAll, #organizeBookmarksSeparator,
#bookmarksToolbarFolderMenu,
#bookmarksToolbarFolderMenu+menuseparator,
#menu_unsortedBookmarks {
 display: none !important;
}

/* items in Bookmarks Menu button (Show your bookmarks) popup */
#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;
}

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