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!

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

Can't hide "Show All Bookmarks" in bookmarks menu in Fx 30

  • 2 ответа
  • 1 имеет эту проблему
  • 4 просмотра
  • Последний ответ от bluedragon14

more options

Before, in Fx 29, I was able to hide the "Show All Bookmarks Ctrl+Shift+B" link in the bookmarks menu by adding this line of code into my userChrome.css file:

  1. BMB_bookmarksShowAll { display: none !important; }

With Fx 30, however, this does not seem to work. I am trying to hide that link in the menu that pops up when using the bookmarks button, not the menu bar. Thanks!

Before, in Fx 29, I was able to hide the "Show All Bookmarks Ctrl+Shift+B" link in the bookmarks menu by adding this line of code into my userChrome.css file: #BMB_bookmarksShowAll { display: none !important; } With Fx 30, however, this does not seem to work. I am trying to hide that link in the menu that pops up when using the bookmarks button, not the menu bar. Thanks!

Выбранное решение

Current Firefox releases have two of those "Show All Bookmarks" items: one on the top and one at the bottom of the list.


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

#BMB_bookmarksShowAllTop, #BMB_bookmarksShowAll { display:none!important; }

Прочитайте этот ответ в контексте 👍 3

Все ответы (2)

more options

Выбранное решение

Current Firefox releases have two of those "Show All Bookmarks" items: one on the top and one at the bottom of the list.


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

#BMB_bookmarksShowAllTop, #BMB_bookmarksShowAll { display:none!important; }

more options

Yep, that worked. Thanks