Font Issue with Firefox

I’m getting unicode boxes in Firefox on some websites.

Examples:
i.imgur[.]com/HBVj0pS.png
i.imgur[.]com/C9e6YM9.png
i.imgur[.]com/ehR7SvX.png

I am not new to linux, but consider me an idiot for KDE.

I have tried to add noto color emoji and added the xml to /etc/fonts/local.conf

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>

 <alias>
   <family>sans-serif</family>
   <prefer>
     <family>Sans</family>
     <family>Noto Color Emoji</family>
   </prefer>
 </alias>

 <alias>
   <family>serif</family>
   <prefer>
     <family>Serif</family>
     <family>Noto Color Emoji</family>
   </prefer>
 </alias>

 <alias>
  <family>monospace</family>
  <prefer>
    <family>Monospace</family>
    <family>Noto Color Emoji</family>
   </prefer>
 </alias>

</fontconfig>

What do you need from me to help?

Plasma 5.23.4
5.15.6-2-MANJARO

Thanks for the time

Hi @pixelnull, and welcome!

That looks like a missing font, and there are 2 things I can think of that might be causing it:

  1. Your browser isn’t downloading it. Which might be because of a security setting. So check that. Those kind of resources are typically downloaded from a 3rd party. And 3rd parties are typically blocked by extra security settings.

  2. It could also be the noto font you tried to add. Remove that and install it from the extra repository:

$ pamac search noto

[...]
noto-fonts                                                                                                                                                                                               [Installed] 20201226-2                   extra
Google Noto TTF fonts
[...]

So it can easily be installed with:

pamac install noto-fonts

Hope this helps!

Edit:

It could also be the noto emojis, also available in the extra repository:

$ pamac search noto

[...]
noto-fonts-emoji                                                                                                                                                                                         [Installed] 20211101-1                   extra
Google Noto emoji fonts
[...]

So they can just as easily be installed with pamac:

pamac install noto-fonts-emoji

I’m not sure what happened, but refreshing Firefox did it.

Thanks

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.