Search 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

Bookmark tab font colour

  • 5 replies
  • 10 have this problem
  • 20 views
  • Last reply by cor-el

more options

Have searched the web & forum to find out how to change the font colour of my bookmark tabs. My current theme has the tabs invisible but with black text. This is difficult to read and should be a different colour and bold. I have seen comments about userchrome.css and found an example file but directions are not clear enough for this old fella.

Have searched the web & forum to find out how to change the font colour of my bookmark tabs. My current theme has the tabs invisible but with black text. This is difficult to read and should be a different colour and bold. I have seen comments about userchrome.css and found an example file but directions are not clear enough for this old fella.

Chosen solution

Brilliant, thanks a bunch. Works very well

Read this answer in context 👍 0

All Replies (5)

more options

You can use code like this in userChrome.css below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


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

#personal-bookmarks {background-color: -moz-dialog !important;}
more options

Thanks cor-el for the quick reply. Have created the file as suggested. If I read it right it will add colour to the background (what colour?). Not quite what I wanted so font colour and weight would be better.

more options

Which text color do you want for the bookmarks?

You can leave out the background-color property if you do not want to change it.
change the text color value #rrggbb to the RGB value of the color that you want (don't forget the leading #).


#personal-bookmarks {
background-color: -moz-dialog !important;
color: #rrggbb!important;
font-weight:bold!important;
}
more options

Chosen Solution

Brilliant, thanks a bunch. Works very well

more options

You're welcome