Funkcjonalność tej witryny będzie ograniczona w czasie konserwacji. Jeśli artykuł nie rozwiązuje twojego problemu i chcesz zadać pytanie, to nasza społeczność wsparcia jest dostępna na @FirefoxSupport na Twitterze i /r/firefox na Reddicie.

Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Więcej informacji

How to change background color of bookmark menus?

  • 10 odpowiedzi
  • 47 osób ma ten problem
  • 1 wyświetlenie
  • Ostatnia odpowiedź 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.

Wszystkie odpowiedzi (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; }

Zmodyfikowany przez aptharsia w dniu

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

Zmodyfikowany przez cor-el w dniu

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.