Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

I need to rearrange order of "required titles" at top of bookmark dropdown list.

  • 2 답장
  • 1 이 문제를 만남
  • 1 보기
  • 최종 답변자: cor-el

more options

Hi, Helpful Firefox Friends,

I need help with rearranging my Bookmarks dropdown list to make things run the way I like. I am veteran Firefox User (and Mozilla/Composer etc. from way back when). I am running Firefox 42.0 on openSUSE 13.2. Both of these are completely up to date. I am a fan of Firefox, which is the only browser that I use on my laptop.

My question is about how to prefix certain unwanted titles with "ZZZ-" to make sure that they appear only at the bottom of the bookmarks dropdown list, rather than at the top. The problem is that these six titles appear only on the bookmarks dropdown box when I press <Alt>+<B>. They do not appear in the "library/all bookmarks" window in a way that I could edit them to insert the prefix. The six titles which I want to move to a more appropriate (and less prominent) space in the list are: Show all bookmarks Bookmark this page Subscribe to this page Bookmark all tabs Bookmarks toolbar Get bookmark add-ons

I don't want them to be entirely removed as options. That's why I'd like them to be at the bottom. I simply want to have them out of sight, since I have a highly organized hierarchy within my bookmark system. I always use keystrokes, never pointer clicks, for accessing my bookmarks. Having those six in my eyesight area when I open my bookmarks to seek some desired URL seems unhelpful. By placing a prefix of ZZZ- in front of them, they would in alphabetical indexing be found at the bottom of the list rather than at the top.

I would appreciate any ideas you have on helping me relocate these six titles.

Thanks,

Dave

Hi, Helpful Firefox Friends, I need help with rearranging my Bookmarks dropdown list to make things run the way I like. I am veteran Firefox User (and Mozilla/Composer etc. from way back when). I am running Firefox 42.0 on openSUSE 13.2. Both of these are completely up to date. I am a fan of Firefox, which is the only browser that I use on my laptop. My question is about how to prefix certain unwanted titles with "ZZZ-" to make sure that they appear only at the bottom of the bookmarks dropdown list, rather than at the top. The problem is that these six titles appear only on the bookmarks dropdown box when I press &lt;Alt>+&lt;B>. They do not appear in the "library/all bookmarks" window in a way that I could edit them to insert the prefix. The six titles which I want to move to a more appropriate (and less prominent) space in the list are: Show all bookmarks Bookmark this page Subscribe to this page Bookmark all tabs Bookmarks toolbar Get bookmark add-ons I don't want them to be entirely removed as options. That's why I'd like them to be at the bottom. I simply want to have them out of sight, since I have a highly organized hierarchy within my bookmark system. I always use keystrokes, never pointer clicks, for accessing my bookmarks. Having those six in my eyesight area when I open my bookmarks to seek some desired URL seems unhelpful. By placing a prefix of ZZZ- in front of them, they would in alphabetical indexing be found at the bottom of the list rather than at the top. I would appreciate any ideas you have on helping me relocate these six titles. Thanks, Dave

글쓴이 cor-el 수정일시

선택된 해결법

Those are items that appear in the list by default. You can try to give them a higher -moz-box-ordinal-group value to reorder items and move them to the bottom. All items have -moz-box-ordinal-group:1 by default. You can adjust the number to set a specific order of each of the items.

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 */

#bookmarksToolbarFolderMenu,#bookmarksMenuItemsSeparator {-moz-box-ordinal-group:10}
#bookmarksShowAll, #organizeBookmarksSeparator {-moz-box-ordinal-group:15}

#menu_bookmarkThisPage,
#subscribeToPageMenuitem,
#menu_bookmarkAllTabs {-moz-box-ordinal-group:11}

#menu_unsortedBookmarks {}

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

See also*

문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (2)

more options

Hi again,

I just now sent in a question which got scramble because I typed the magic sequence.... LESS THAN + B + GREATER THAN .... which got interpreted as a BOLD THE FOLLOWING TEXT request. I attach a screenprint of the text processed question in .jpg form.

Thanks again,

Dave

more options

선택된 해결법

Those are items that appear in the list by default. You can try to give them a higher -moz-box-ordinal-group value to reorder items and move them to the bottom. All items have -moz-box-ordinal-group:1 by default. You can adjust the number to set a specific order of each of the items.

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 */

#bookmarksToolbarFolderMenu,#bookmarksMenuItemsSeparator {-moz-box-ordinal-group:10}
#bookmarksShowAll, #organizeBookmarksSeparator {-moz-box-ordinal-group:15}

#menu_bookmarkThisPage,
#subscribeToPageMenuitem,
#menu_bookmarkAllTabs {-moz-box-ordinal-group:11}

#menu_unsortedBookmarks {}

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

See also*