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!

Pretraži podršku

Izbjegni prevare podrške. Nikad te nećemo tražiti da nas nazoveš, da nam pošalješ telefonski broj ili da podijeliš osobne podatke. Prijavi sumnjive radnje pomoću opcije „Prijavi zlouporabu”.

Learn More

How to change background color of bookmark menus?

  • 10 odgovora
  • 47 ima ovaj problem
  • 1 prikaz
  • Posljednji odgovor od cor-el

more options

How do I change the background color (in the userchrome) of the bookmark folder menus? I'm not talking about the bookmark sidebar background color, I'm talking about when you have a folder in your bookmark bar and click on it, the drop down background color.

I don't want to have to change themes, I know there is a way to "hack" or over ride the current color without having to change the theme. Also, changing my computer settings don't do crap, it has nothing to do with the colors of my browser.

Thanks for your help in advance.

How do I change the background color (in the userchrome) of the bookmark folder menus? I'm not talking about the bookmark sidebar background color, I'm talking about when you have a folder in your bookmark bar and click on it, the drop down background color. I don't want to have to change themes, I know there is a way to "hack" or over ride the current color without having to change the theme. Also, changing my computer settings don't do crap, it has nothing to do with the colors of my browser. Thanks for your help in advance.

Svi odgovori (10)

more options

Are you talking about the Bookmarks menu on the Menu Bar or about the menu of a folder item on the Bookmarks Toolbar?

#personal-bookmarks menupopup {
 color:#000 !important;
 background-color: #e8e8ff !important;
}

#bookmarksMenuPopup,
#bookmarksMenuPopup menupopup {
 color:#000 !important;
 background-color: #e8e8ff !important;
}
more options

The menu of a folder item on the bookmarks toolbar, as in the dropdown menu you get when you click on a folder in the bookmarks toolbar. I tried both of those in the userChrome and it didn't change the back ground color.

more options

Are you using the default theme (Tools > Add-ons > Themes) or a custom theme?

The #personal-bookmarks code should work for the Bookmarks Toolbar.

more options

Yes, I disabled everything and switched to the default theme and it still did not work.

more options

That didn't work but I used this code and it worked, not sure why since it is basically the same thing:

  1. bookmarksMenuPopup menupopup arrowscrollbox,
  2. personal-bookmarks menupopup arrowscrollbox {

background-color:#ffc !important; }

Izmjenjeno od aptharsia

more options

Does other code that you place in userChrome.css work ?

Make sure that the file has a @namespace line at the begin of the userChrome.css file.

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


See also http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

Izmjenjeno od cor-el

more options

How do I change ALL the drop-down menus' background color (File, Edit, View, etc.)?

more options

Code like this should work for the menu bar:

#main-menubar menupopup {
 color:#000 !important;
 background-color: #e8e8ff !important;
}
more options

cor-el, thank you! Your code worked, but you have to add arrowscrollbox after menupopup.

  1. main-menubar menupopup arrowscrollbox {
color:#000 !important;
background-color: #e8e8ff !important;

}

more options

I hadn't checked the CSS code, but I see (-moz-appearance: menupopup;) for the menupopup, so that is the most likely cause that you need to specifiy the next (child) element.

Adding -moz-appearance: none!important; should make it work in such cases.