搜索 | 用户支持

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

详细了解

How to change the default UI font

  • 4 个回答
  • 4 人有此问题
  • 3 次查看
  • 最后回复者为 timxx

more options

Is it possible to change the UI font (default font) that firefox uses? On my Windows 10, the title bar and the web page content all of the Chinese characters looks so so so ugly. The OS has preinstalled Chinese fonts, and I changed the font from "Language and Appearance", even unchecked the "Allow pages to choose their own fonts" helps nothing.

It seems that firefox uses Yu Gothic font, which is a Japanese font. Please take a look at the attachments.

Is it possible to change the UI font (default font) that firefox uses? On my Windows 10, the title bar and the web page content all of the Chinese characters looks so so so ugly. The OS has preinstalled Chinese fonts, and I changed the font from "Language and Appearance", even unchecked the "Allow pages to choose their own fonts" helps nothing. It seems that firefox uses Yu Gothic font, which is a Japanese font. Please take a look at the attachments.
已附加屏幕截图

被采纳的解决方案

This is not valid CSS: font: "Microsoft YaHei" !important

For the font on web pages you need to use userContent.css. If necessary use a @-moz-document domain(){} block to affect only specific domains.

定位到答案原位置 👍 1

所有回复 (4)

more options

You can't change the fonts used for the user interface via builtin font settings. The settings in your first screenshot are only for use on web pages.

Firefox uses OS (Windows) font settings for the user interface. It is possible to do this for the user interface with code in userChrome.css, but that may require a lot of work and testing.

more options

@cor-el Thanks for your reply, but the userchrome.css isn't resolve for me.

the content of my userchrome.css is:

{

   font-family: "Microsoft YaHei" !important;
   font: "Microsoft YaHei" !important;
   font-size: 20pt !important; 

}

Only the font-size works, the font-family or font doesn't.

Actually I'm not really want to change the UI font, but the web pages font. But the font options isn't works for me, so I thought if I changed the UI font will also affected the web page font LoL.

PS, the OS start menu or other application that contains Chinese don't have this problem. Thunderbird has this problem too.

I don't know is it this a bug or something else. My fellow use the same version of Firefox and OS don't have this problem. :(

more options

选择的解决方案

This is not valid CSS: font: "Microsoft YaHei" !important

For the font on web pages you need to use userContent.css. If necessary use a @-moz-document domain(){} block to affect only specific domains.

more options

cor-el said

This is not valid CSS: font: "Microsoft YaHei" !important For the font on web pages you need to use userContent.css. If necessary use a @-moz-document domain(){} block to affect only specific domains.

Sorry, my bad, now change the file to UTF-BOM it works. And the userContent.css also resolve the web page ugly render problem. :)

Another question, should I report a bug that the "Language and Appearance" option isn't working as expected?