搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Bookmark tab font colour

  • 5 个回答
  • 10 人有此问题
  • 19 次查看
  • 最后回复者为 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.

被采纳的解决方案

Brilliant, thanks a bunch. Works very well

定位到答案原位置 👍 0

所有回复 (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

选择的解决方案

Brilliant, thanks a bunch. Works very well