Change font color in Firefox toolbar to suit your theme (Ubuntu) January 3, 2008
Posted by ubuntuanswers in Ubuntu Fixes.Tags: firefox, font fix, ubuntu, userChrome.css
add a comment
O.K., so you have chosen a new theme for firefox and now you can’t see the toolbar font at all.
Well what has happened is the system font color is the same color as your firefox theme color ( let’s say your font is black and the toolbar is also black)
To correct this you will need to create the userChrome.css file
Open Places>Home Folder
In the toolbar click view and then show hidden files
open .mozilla>firefox>(the default folder)>chrome
right-click userChrome-example.css and select open with “text editor”
add this code to the bottom of the page
menubar, menubutton, menu, menuitem, menupopup, popup > * {
color: white !important;
}
Save this file as userChrome.css in the chrome folder
The next time you open Firefox your font will be white
( if you want the text black just add this code:)
menubar, menubutton, menu, menuitem, menupopup, popup > * {
color: black !important;
}