-
-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
font issue #938
Comments
I had a similar issues and resolved this by resetting all chrome://flags. Was a bit tricky to find the right button, as no fonts where visible, but you can guestimate where the "Reset all" and the "Relaunch" button are, hit those and restart the Browser. That might resolve the issue for you too. Edit: |
it did not work for me @niklaszantner |
I found the fixI used this command to check all the sans font installed in my machine fc-match sans It just showed so I installed few set of fonts manually, sudo pacman -S ttf-liberation ttf-dejavu noto-fonts noto-fonts-cjk noto-fonts-emoji Then added a config file for fonts mkdir -p ~/.config/fontconfig
nano ~/.config/fontconfig/fonts.conf then added the fonts in the config file <?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<alias>
<family>sans-serif</family>
<prefer>
<family>Noto Sans</family>
<family>DejaVu Sans</family>
<family>Arial</family>
</prefer>
</alias>
</fontconfig> checked again fc-match sans Then it worked fine for me, for all my browser But for someone, if still this doesn't fix Ensure that Standard, Sans-serif, and Serif fonts are set to "Noto Sans", "Liberation Sans", or "Arial" (avoid "Custom"). |
System Details
Problem
Some websites are using my system font, but some are fine
Did you read the FAQ?
https://thorium.rocks/faq
Additional Notes
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: