Funkcionalnosć toś togo sedła se pśez wótwardowańske źěła wobgranicujo, kótarež maju wašo dožywjenje pólěpšyś. Jolic nastawk waš problem njerozwězujo a cośo pšašanje stajiś, wobrośćo se na našo zgromoźeństwo pomocy, kótarež na to caka, wam na @FirefoxSupport na Twitter a /r/firefox na Reddit pomagaś.

Pomoc pśepytaś

Glědajśo se wobšudy pomocy. Njenapominajomy was nigda, telefonowy numer zawołaś, SMS pósłaś abo wósobinske informacije pśeraźiś. Pšosym dajśo suspektnu aktiwitu z pomocu nastajenja „Znjewužywanje k wěsći daś“ k wěsći.

Dalšne informacije

Change color of menu pop ups

  • 3 wótegrona
  • 1 ma toś ten problem
  • 9 naglědow
  • Slědne wótegrono wót Wesley Branton

more options

Hi,

I have a red theme (Red Fade) which I like.

However the menus when you click anything on the menu bar (File, Edit etc) remain the default colour (see screenshot attached). I would like these to be red also. Is it possible to change this background colour preferably using the userChrome.css file or alternatively an add-on? I know how to edit the userChrome file, so would like the code if possible please.

Thanks in advance, Paul.

Hi, I have a red theme (Red Fade) which I like. However the menus when you click anything on the menu bar (File, Edit etc) remain the default colour (see screenshot attached). I would like these to be red also. Is it possible to change this background colour preferably using the userChrome.css file or alternatively an add-on? I know how to edit the userChrome file, so would like the code if possible please. Thanks in advance, Paul.
Pśipowjesone fota wobrazowki

Wšykne wótegrona (3)

more options

You would need to use something like this CSS code to change that menu colour:

/* Changes background color */
menupopup, popup,
popup > menu > menupopup,
menupopup > menu > menupopup {
    -moz-appearance: none !important;
    background: black !important;
}

/* Changes the color of the separator lines */
menupopup menuseparator {
    -moz-appearance: none !important;
    background: white  !important;
    padding: 0 !important;
    border-color: transparent !important;
}

/* Changes the text color */
menupopup menu,
menuitem {
    -moz-appearance: none !important;
    color: white !important;
}

/* Changes the hover colors */
menupopup menu:hover,
menuitem:hover {
    -moz-appearance: none !important;
    color: black !important;
    background-color: skyblue !important;
}

/* Changes the arrow of the submenu to light color
    Remove this if you want to keep the arrow a dark color */
.menu-right{
    filter: invert(100%) !important;
}

Hope this helps.

If you need more CSS tweaks like this, I'd recommend visiting the FirefoxCSS Reddit. It's an entire community of people who are able to help with this kind of thing.

more options

Thanks for your help, I tried the first one, as I think that is what I am looking for. Unfortunately it does not work.

more options

Unfortunately, the FirefoxCSS subreddit is probably your best bet on this issue. There are tons of people on there who will likely be able to help you find/create the perfect CSS code to fix your issue.