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!

Mozilla Support में खोजें

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Background color of bookmarks

  • 10 प्रत्युत्तर
  • 4
  • 1 view
  • के द्वारा अंतिम प्रतियुतर cor-el

more options

I got the Stylish Addon for FF And manged to get the color to the bars the way i want but the actual bookmark menu back ground color i cant change and the color of the menubar is grey is only correct color of #333333 when it out of focus

I have inclosed picture with red cirle around the areas i want to change the color, I know it all possible as I been using LavaFoxV2 for years cause it make the area black, but i want to use defualt scheme of FF I just want the area i marked in red to be darker.

#navigator-toolbox {
  background-color: #333333 !important;
}

.menubar-text,
#toolbar-menubar .toolbarbutton-text,
.tabbrowser-tab .tab-label {
  color: #333333 !important
}

this is the code i use to get the above colors on the menu bar

I got the Stylish Addon for FF And manged to get the color to the bars the way i want but the actual bookmark menu back ground color i cant change and the color of the menubar is grey is only correct color of #333333 when it out of focus I have inclosed picture with red cirle around the areas i want to change the color, I know it all possible as I been using LavaFoxV2 for years cause it make the area black, but i want to use defualt scheme of FF I just want the area i marked in red to be darker. <pre><nowiki> #navigator-toolbox { background-color: #333333 !important; } .menubar-text, #toolbar-menubar .toolbarbutton-text, .tabbrowser-tab .tab-label { color: #333333 !important }</nowiki></pre> this is the code i use to get the above colors on the menu bar
संलग्न स्क्रीनशॉट

cor-el द्वारा सम्पादित

चुने गए समाधान

This should cover all of them:

#menubar-items menu menupopup * {
  background-color: #DDDDDD !important;
  color: #333333 !important;
}
संदर्भ में यह जवाब पढ़ें 👍 1

All Replies (10)

more options

Try using this:

#bookmarks-view, #historyTree {
  background-color: #DDDDDD !important;

}

more options

the-edmeister said

Try using this: #bookmarks-view, #historyTree { background-color: #DDDDDD !important; }

sadly that does not change its color it remains the same color as in the picture

more options

That would be this code:

#bookmarksMenuPopup * {
  background-color: #DDDDDD !important;
  color: #333333 !important;
}

(#bookmarks-view *, #historyTree * would be for the sidebar)

more options

Thanks cor-el, that works fine for the menu bar popup. How about the "Show your bookmarks" combo toolbar button?

more options

That would be this selector:

#BMB_bookmarksPopup * { }
more options

Omg thank you bookmarkmenu is fix, Would you know the code to change the popdown menus for (File,Edit,,View,History,Tools,Help) too? and the hover color when in those menus?

and possible the code to change the color that the (File,Edit,View,History,Bookmarks,Tools,Help?) cause that color is only correct when the browser is not the focus.

tsunami2311 द्वारा सम्पादित

more options

चयनित समाधान

This should cover all of them:

#menubar-items menu menupopup * {
  background-color: #DDDDDD !important;
  color: #333333 !important;
}
more options

Oh my thank you

#navigator-toolbox {
  background-color: #333333 !important;

}

.menubar-text,
#toolbar-menubar .toolbarbutton-text,
.tabbrowser-tab .tab-label {
  color: #333333 !important
}

#main-menubar menu:hover .menubar-text {
  color: black !important;
}
  
#menubar-items menu menupopup * {
  background-color:#333333!important;
  color: white !important;
}

and all the menu pop downs are same color, I just need to change the hover color and the actual color behind the menubar items

cor-el द्वारा सम्पादित

more options

Thanks for all your help, I pretty much got all the menu correct color except for 2 spot.

The top parts red circles that part is wrong color (it only show correct color when it not in focus if i go in options or click on windows start bar) is way to change focus color to match the rest?

Also the bottom parts red circle the part where the mouse curse boxing the bookmark would there be code to change that?

And would there be site where i can go to see what code change what?

Thanks again

more options