搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

Scroll Bar on Bookmarks

  • 4 回覆
  • 1 有這個問題
  • 16 次檢視
  • 最近回覆由 cor-el

more options

The scroll bar is now missing when I click on the bookmarks icon instead there is just an arrow down. I have a lot of bookmarks and now it takes forever to get to the bottom where my most recent are. Please add back the scroll bar option.

Thanks!

The scroll bar is now missing when I click on the bookmarks icon instead there is just an arrow down. I have a lot of bookmarks and now it takes forever to get to the bottom where my most recent are. Please add back the scroll bar option. Thanks!

被選擇的解決方法

I finally found it. After you click on the bookmark icon you Now have to click on View Bookmark Sidebar and it takes you to the bookmarks that I am used to. (when you clicked on the bookmark icon it used to take you directly there)

從原來的回覆中察看解決方案 👍 0

所有回覆 (4)

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

#bookmarksMenuPopup scrollbox,
#bookmarks-menu-button scrollbox,
#PlacesChevronPopup scrollbox,
#PlacesToolbarItems scrollbox {overflow-y:auto!important}

#bookmarksMenuPopup autorepeatbutton,
#bookmarks-menu-button autorepeatbutton,
#PlacesChevronPopup autorepeatbutton,
#PlacesToolbarItems autorepeatbutton {display:none!important}

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

You can use this button to go to the currently used Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
more options

I clicked up to Show Folder...what do you configure from there?

Thank You

more options

選擇的解決方法

I finally found it. After you click on the bookmark icon you Now have to click on View Bookmark Sidebar and it takes you to the bookmarks that I am used to. (when you clicked on the bookmark icon it used to take you directly there)

more options

You can install the Classic Theme Restorer extension to have a button in the Customize palette to open the bookmarks in the sidebar.

You can check the settings of the CTR extension via its Options/Preferences button on the "Firefox/Tools > Add-ons > Extensions" page.


See also:


The code for userChrome.css I posted above adds a scroll bar to various bookmarks menu drop-down list.

  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist. * Use a plain text editor like Notepad to create a (new) userChrome.css file in this folder (the names are case sensitive).
  • Paste the code in the userChrome.css file in the editor window and make sure that the userChrome.css file starts with the default @namespace line.
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css. Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file.

由 cor-el 於 修改