Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to the Power Users community on Codidact!

Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.

Post History

75%
+4 −0
Q&A How do I fix Firefox fonts having extra spacing and weird numbers on Ubuntu?

This post solved it for me. This issue is caused by having Noto Color Emoji too high in the font priority. Check /etc/fonts/local.conf for the following item: <match target="pattern"> &lt...

posted 2y ago by Ullallulloo‭  ·  edited 2y ago by Ullallulloo‭

Answer
#2: Post edited by user avatar Ullallulloo‭ · 2022-05-05T12:38:03Z (almost 2 years ago)
  • [This post solved it for me.](https://bugzilla.mozilla.org/show_bug.cgi?id=1759667#c12) This issue is caused by having Noto Color Emoji too high in the font priority. Check `/etc/fonts/local.conf` for the following item:
  • ```xml
  • <match target="pattern">
  • <edit name="family" mode="prepend">
  • <string>Noto Color Emoji</string>
  • </edit>
  • </match>
  • ```
  • It will likely be at the end. Maybe also check `/etc/fonts/fonts.conf` for it.
  • This loads Noto Color Emoji before every font. Since this font has [images for numbers](https://github.com/googlefonts/noto-emoji/blob/main/svg/emoji_u0030.svg) but not letters, it will replace numbers but let letters be the intended font.
  • Delete those lines and restart Firefox and everything should go back to normal.
  • [This post solved it for me.](https://bugzilla.mozilla.org/show_bug.cgi?id=1759667#c12) This issue is caused by having Noto Color Emoji too high in the font priority. Check `/etc/fonts/local.conf` for the following item:
  • ```xml
  • <match target="pattern">
  • <edit name="family" mode="prepend">
  • <string>Noto Color Emoji</string>
  • </edit>
  • </match>
  • ```
  • It will likely be at the end. If it's not there, check `/etc/fonts/fonts.conf` or `~/.config/fontconfig/fonts.conf` for it. [A list of possible locations is available on the man page.](https://manpages.debian.org/testing/fontconfig-config/fonts-conf.5.en.html)
  • This loads Noto Color Emoji before every font. Since this font has [images for numbers](https://github.com/googlefonts/noto-emoji/blob/main/svg/emoji_u0030.svg) but not letters, it will replace numbers but let letters be the intended font.
  • Delete those lines and restart Firefox and everything should go back to normal.
#1: Initial revision by user avatar Ullallulloo‭ · 2022-05-05T12:26:11Z (almost 2 years ago)
[This post solved it for me.](https://bugzilla.mozilla.org/show_bug.cgi?id=1759667#c12) This issue is caused by having Noto Color Emoji too high in the font priority. Check `/etc/fonts/local.conf` for the following item:

```xml
<match target="pattern"> 
	<edit name="family" mode="prepend"> 
	<string>Noto Color Emoji</string> 
	</edit> 
</match> 
```

It will likely be at the end. Maybe also check `/etc/fonts/fonts.conf` for it.

This loads Noto Color Emoji before every font. Since this font has [images for numbers](https://github.com/googlefonts/noto-emoji/blob/main/svg/emoji_u0030.svg) but not letters, it will replace numbers but let letters be the intended font.

Delete those lines and restart Firefox and everything should go back to normal.