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

Why can't I scroll in the bookmarks drop-down menu? It used to scroll, now it doesn't.

  • 8 trả lời
  • 8 gặp vấn đề này
  • 167 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

I have a large number of bookmarks, and the ones I use most frequently are at the top and bottom of the list. There use to be a scrollbar on the side. Now it's gone.

I have a large number of bookmarks, and the ones I use most frequently are at the top and bottom of the list. There use to be a scrollbar on the side. Now it's gone.

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

You can achieve this without an extension via code in userChrome.css

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

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

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

/* bookmarks: scroll bar */
#appmenu_bookmarks scrollbox,
#bookmarksMenuPopup scrollbox,
#bookmarks-menu-button scrollbox,
#PlacesToolbarItems scrollbox {overflow-y:auto!important}

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

/* list all tabs: scroll bar */
#alltabs-popup scrollbox {overflow-y:auto!important}

#alltabs-popup .autorepeatbutton-up,
#alltabs-popup .autorepeatbutton-down {display:none!important}
Đọc câu trả lời này trong ngữ cảnh 👍 1

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

more options

Can you post a picture?

more options

Here's the drop down. Formerly, when I hovered over the right edge, a scroll bar appeared.

more options

There is a scroll button showing at the bottom of that menu list.
Firefox doesn't show a scroll bar in the bookmarks menu by default, so if you had one then it was added by an extension.

You can open the Bookmarks in the sidebar to have a scroll bar.

  • Toggle the Bookmarks sidebar on/off via "View > Sidebar > Bookmarks" or Ctrl+B (Command+B on Mac)
  • Toggle the History sidebar on/off via "View > Sidebar > History" or Ctrl+H (Command+H on Mac)
more options

That scroll bar at the bottom isn't very useful. I wonder what extension I had that allowed me to have a scroll bar on the side?

more options

I think I found it... Bookmarks Scrollbar.... and not available for newest version of Firefox.

more options

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

You can achieve this without an extension via code in userChrome.css

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

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

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

/* bookmarks: scroll bar */
#appmenu_bookmarks scrollbox,
#bookmarksMenuPopup scrollbox,
#bookmarks-menu-button scrollbox,
#PlacesToolbarItems scrollbox {overflow-y:auto!important}

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

/* list all tabs: scroll bar */
#alltabs-popup scrollbox {overflow-y:auto!important}

#alltabs-popup .autorepeatbutton-up,
#alltabs-popup .autorepeatbutton-down {display:none!important}
more options

Thank you! That worked!

more options

You're welcome.

I'm using this already for a few years as it is much easier than those automatic working scroll buttons to move content into view like live feed items.

You can use the DOM Inspector to get the IDs of other drop-down list possibly added by extensions.