Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

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

  • 3 antwoorden
  • 6 hebben dit probleem
  • 15 weergaven
  • Laatste antwoord van 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

Alle antwoorden (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..