搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Is it possible to move "show all bookmarks" in the bookmark-menu to the top?

  • 4 个回答
  • 21 人有此问题
  • 1 次查看
  • 最后回复者为 Gradea

more options

Hello,

I recently updated firefox to version 29. since then the "show all bookmarks" button is at the very bottom of all of my bookmarks - before, it was at the top. This means i have to scroll through all of them to get to my library - which is very annoying at over 1000 bookmarks. Is there a way to get it back to the top?

Hello, I recently updated firefox to version 29. since then the "show all bookmarks" button is at the very bottom of all of my bookmarks - before, it was at the top. This means i have to scroll through all of them to get to my library - which is very annoying at over 1000 bookmarks. Is there a way to get it back to the top?

所有回复 (4)

more options

Hi blauerklaus01,

Not sure if you can do that. But you can access the "Show All Bookmarks" button from the Firefox top menu. Just click on Bookmarks and the button should be there.

more options

Add code to the userChrome.css file below the default @namespace line.

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

/* move the "Show All Bookmarks" item to the top of the Bookmarks drop-down list */
#BMB_bookmarksPopup #BMB_bookmarksShowAll {-moz-box-ordinal-group:0}

/* move the "Show All History" item to the top of the History drop-down list */
#PanelUI-historyMore {-moz-box-ordinal-group:0}

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

由cor-el于修改

more options

Regarding the chrome/userChrome.css ...just an additional note ... This folder and file does not seem to exist by default. I had to manually create a "chrome" folder under <firefox install dir>/Data/profile/. In that I manually created the userChrome.css and then pasted the lines from above response by cor-el:


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
#BMB_bookmarksPopup #BMB_bookmarksShowAll {-moz-box-ordinal-group:0}

Save the file and restart firefox and then I could see "Show all bookmarks" at the top. No need to enable the main menu toolbar now to get to this or type "Shift+ctrl+B".

more options

Pressing (Control + Shift + B) is a easier way to open the bookmark library in FF29.