Why do I suddenly have an additional Manage Bookmarks?
It just showed up today at the bottom of "Show your bookmarks". Was there an update or have I accidentally used a shortcut of some kind? Can I remove it? Firefox is up to date.
Thanks in advance
Chosen solution
WARNING: This script is not provided by Mozilla and is not officially supported Creating a userChrome.css file and other ways of customizing Firefox that are not exposed in the interface are there for developers, not end-users. If it were intended for end-users, you would see a menu option or checkbox; you wouldn't have to hack a text file in a hidden location.
What this means is that even though the functionality you want is no longer supported, a third-party has found a way to do it using the CSS file. If it breaks in new versions, you will need to contact the person who provided the script.
[Warning added by moderator.]
You can add CSS code to the userChrome.css file to hide that second menu item.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ #BMB_bookmarksShowAll {display:none!important}
- /questions/1337942 Bookmarks Dropdown Now has "Other Bookmarks" and 2x (twice) "Manage Bookmarks"! Help.
- /questions/1338606 Bookmarks Menu - why does the 'Manage Bookmarks' entry appears twice?
All Replies (3)
That opens the Bookmarks Manager full window.
Chosen Solution
WARNING: This script is not provided by Mozilla and is not officially supported Creating a userChrome.css file and other ways of customizing Firefox that are not exposed in the interface are there for developers, not end-users. If it were intended for end-users, you would see a menu option or checkbox; you wouldn't have to hack a text file in a hidden location.
What this means is that even though the functionality you want is no longer supported, a third-party has found a way to do it using the CSS file. If it breaks in new versions, you will need to contact the person who provided the script.
[Warning added by moderator.]
You can add CSS code to the userChrome.css file to hide that second menu item.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ #BMB_bookmarksShowAll {display:none!important}
- /questions/1337942 Bookmarks Dropdown Now has "Other Bookmarks" and 2x (twice) "Manage Bookmarks"! Help.
- /questions/1338606 Bookmarks Menu - why does the 'Manage Bookmarks' entry appears twice?
Modified
cor-el said
You can add CSS code to the userChrome.css file to hide that second menu item.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ #BMB_bookmarksShowAll {display:none!important}
- /questions/1337942 Bookmarks Dropdown Now has "Other Bookmarks" and 2x (twice) "Manage Bookmarks"! Help.
- /questions/1338606 Bookmarks Menu - why does the 'Manage Bookmarks' entry appears twice?
Thanks a bunch, that worked.
Do you have any idea why this happened in the first place? Just so I can prevent it from happening again.