Trang web này sẽ có chức năng hạn chế trong khi chúng tôi trải qua bảo trì để cải thiện trải nghiệm của bạn. Nếu một bài viết không giải quyết được vấn đề của bạn và bạn muốn đặt câu hỏi, chúng tôi có cộng đồng hỗ trợ của chúng tôi đang chờ để giúp bạn tại @FirefoxSupport trên Twitter và /r/firefox trên Reddit.

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".

Tìm hiểu thêm

How do I customise the colors of folder contents in the Bookmarks pull down menu?

  • 3 trả lời
  • 6 gặp vấn đề này
  • 15 lượt xem
  • Trả lời mới nhất được viết bởi bol1

more options

I would like to customise the colors of the Bookmarks pull down menu in FF 3.6. Specifically the problem is this:

I pull down the Bookmarks menu which has a number of bookmarked pages and several folders I created. If I then open up a folder the contents of that folder will appear to the side of the Bookmarks menu. So far so good....

But in the folder menu I have some sub folders. If I then open the sub folders the contents will appear to the left of the first folder contents which is right over the original Bookmarks contents. This wouldn't be a problem except the background color of the sub folder contents is the same as the original background and it visually confusing.

The themes and background colors are set by my OS preferences, i.e. Ubuntu. But I wondering if theres a way in FF to make the subfolder contents different color from the original Bookmarks contents?

Have I explained theis clearly? Many thanks

I would like to customise the colors of the Bookmarks pull down menu in FF 3.6. Specifically the problem is this: I pull down the Bookmarks menu which has a number of bookmarked pages and several folders I created. If I then open up a folder the contents of that folder will appear to the side of the Bookmarks menu. So far so good.... But in the folder menu I have some sub folders. If I then open the sub folders the contents will appear to the left of the first folder contents which is right over the original Bookmarks contents. This wouldn't be a problem except the background color of the sub folder contents is the same as the original background and it visually confusing. The themes and background colors are set by my OS preferences, i.e. Ubuntu. But I wondering if theres a way in FF to make the subfolder contents different color from the original Bookmarks contents? Have I explained theis clearly? Many thanks

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

more options

Hello.

I should start by saying that I can't help you with this, but I must also say that I'm positive it is possible to do this. The trick is to create a CSS code (in the userChrome.css) that affects only the nth-child(3) of the Bookmarks menu, but you need to know the IDs and the classes for that. Hopefully someone will help you. I think there's an extension that will let you inspect the elements in Firefox's chrome, but you need to know the bare basics (at least) of CSS to do it yourself, I'd think.

I'm sorry I can't be of more help. All I'm saying, it's very likely something that can be done.

more options

Try something like this:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#bookmarksMenuPopup menupopup arrowscrollbox,
#personal-bookmarks  menupopup arrowscrollbox {
background-color:#ffc !important;
}
more options

@Morbus @cor-el

Thanks! I try that and let you know how I get on..