Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla Destek’te Ara

Destek dolandırıcılığından kaçının. Mozilla sizden asla bir telefon numarasını aramanızı, mesaj göndermenizi veya kişisel bilgilerinizi paylaşmanızı istemez. Şüpheli durumları “Kötüye kullanım bildir” seçeneğini kullanarak bildirebilirsiniz.

Learn More

How to remove fixed items from bookmarks menu

  • 3 yanıt
  • 1 kişi bu sorunu yaşıyor
  • 10 gösterim
  • Son yanıtı yazan: james.wilkinson

more options

The following css used to work to remove items from Bookmarks menu:

#bookmarksToolbarSeparator,#bookmarksMenuItemsSeparator{display: none !important;}
#bookmarksToolbarSeparator,#organizeBookmarksSeparator{display: none !important;}
#bookmarksToolbarSeparator,#menu_bookmarkAllTabs{display: none !important;}
#bookmarksToolbarSeparator,#bookmarksShowAll{display: none !important;}

It no longer works in FF88. How to fix?

N.B. There wasn't a way to hide "other bookmarks" from the bookmarks MENU (This has nothing to do with the unrelated TOOLBAR issue, and the settings for that do not affect the menu)

The following css used to work to remove items from Bookmarks menu: <pre><nowiki>#bookmarksToolbarSeparator,#bookmarksMenuItemsSeparator{display: none !important;} #bookmarksToolbarSeparator,#organizeBookmarksSeparator{display: none !important;} #bookmarksToolbarSeparator,#menu_bookmarkAllTabs{display: none !important;} #bookmarksToolbarSeparator,#bookmarksShowAll{display: none !important;}</nowiki></pre><br> It no longer works in FF88. How to fix? N.B. There wasn't a way to hide "other bookmarks" from the bookmarks MENU (This has nothing to do with the unrelated TOOLBAR issue, and the settings for that do not affect the menu)
Ekli ekran görüntüleri

cor-el tarafından tarihinde düzenlendi

Seçilen çözüm

You can possibly leave a space at the start of a line to force rendering as a PRE tag.

The IDs you use look correct, so you can check for other issues like a hidden .txt appended or not having enabled userChrome.css.

Does other CSS code in userChrome.css still work in case you have more rules in your file ?


In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true
Bu yanıtı konu içinde okuyun 👍 1

Tüm Yanıtlar (3)

more options

For reasons best known to itself the page replaced the hashes with the numbers 1-4 it ACTUALLY looked like this (... added to stop bizarre autoformatting)

... #bookmarksToolbarSeparator,#bookmarksMenuItemsSeparator{display: none !important;} ... #bookmarksToolbarSeparator,#organizeBookmarksSeparator{display: none !important;} ... #bookmarksToolbarSeparator,#menu_bookmarkAllTabs{display: none !important;} ... #bookmarksToolbarSeparator,#bookmarksShowAll{display: none !important;}

more options

Seçilen çözüm

You can possibly leave a space at the start of a line to force rendering as a PRE tag.

The IDs you use look correct, so you can check for other issues like a hidden .txt appended or not having enabled userChrome.css.

Does other CSS code in userChrome.css still work in case you have more rules in your file ?


In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true
more options

Added spaces at the start of the line and moved the code to the top of the CSS. Did the trick, thanks.