Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

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

  • 2 trả lời
  • 1 gặp vấn đề này
  • 4 lượt xem
  • Trả lời mới nhất được viết bởi 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!

Giải pháp được chọn

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; }

Đọc câu trả lời này trong ngữ cảnh 👍 3

Tất cả các câu trả lời (2)

more options

Giải pháp được chọn

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