View previous topic :: View next topic |
Author |
Message |
chromaf Tux's lil' helper
Joined: 29 Sep 2013 Posts: 79
|
Posted: Sun Apr 06, 2014 6:32 pm Post subject: Do you know this font name chrome uses and it's wrong ? |
|
|
After updating system, all my fonts are Ok but the Chromium fonts and only on some websites, not all of them. Everything looks good in the Chromium options so far.
Demo of screwed site here : http://awesomescreenshot.com/01c2lxyz7a
It looks like is not a bad rendering of fonts, but a changed font only on certain sites ... does someone knows the name of this font so I can try to remove it from system usage ¿?
Here is another screenshot
http://awesomescreenshot.com/0292m4rq2e |
|
Back to top |
|
|
mimosinnet l33t
Joined: 10 Aug 2006 Posts: 716 Location: Barcelona, Spain
|
|
Back to top |
|
|
golding Apprentice
Joined: 07 Jun 2005 Posts: 232 Location: Adelaide / South Australia
|
Posted: Wed Oct 01, 2014 6:03 am Post subject: |
|
|
To "chromaf", please note the signature of the answer, adding [SOLVED] to the title helps those of us looking for an answer. It also lets those trying to help you save time as they can see it has already been answered. _________________ Regards, Robert
..... Some people can tell what time it is by looking at the sun, but I have never been able to make out the numbers. |
|
Back to top |
|
|
i92guboj Bodhisattva
Joined: 30 Nov 2004 Posts: 10315 Location: Córdoba (Spain)
|
Posted: Wed Oct 01, 2014 6:31 am Post subject: |
|
|
There are lots of guides around on how to configure many things. I have suffered that same problem for quite a long time, and what really made a difference for me was all these fonts substitutions in /etc/fonts/local.conf
Code: | <alias>
<family>sans-serif</family>
<prefer>
<family>DejaVu Sans</family>
<family>Droid Sans</family>
</prefer>
<default><family>DejaVu Sans</family></default>
</alias>
<alias>
<family>serif</family>
<prefer>
<family>DejaVu Sans</family>
<family>Droid Sans</family>
</prefer>
<default><family>DejaVu Sans</family></default>
</alias>
<alias>
<family>monospace</family>
<prefer>
<family>DejaVu Sans Mono</family>
<family>Droid Sans Mono</family>
</prefer>
<default><family>DejaVu Sans Mono</family></default>
</alias>
<match target="font">
<edit mode="assign" name="hintstyle">
<const>hintfull</const>
</edit>
</match>
<alias>
<family>Arial</family>
<prefer>
<family>DejaVu Sans</family>
<family>Ubuntu</family>
</prefer>
<default><family>DejaVu Sans</family></default>
</alias>
<alias>
<family>Helvetica</family>
<prefer>
<family>DejaVu Sans</family>
<family>Ubuntu</family>
</prefer>
<default><family>DejaVu Sans</family></default>
</alias>
<alias>
<family>Verdana</family>
<prefer>
<family>DejaVu Sans</family>
<family>Ubuntu</family>
</prefer>
<default><family>DejaVu Sans</family></default>
</alias>
<alias>
<family>Courier</family>
<prefer>
<family>DejaVu Sans Mono</family>
<family>Ubuntu Mono</family>
</prefer>
<default><family>DejaVu Sans Mono</family></default>
</alias> |
Your preferred site might use some other font, in which case you will need to add it. In that case, this plugin will come in handy:
https://chrome.google.com/webstore/detail/whatfont/jabopobgcpjmedljpbcaablpmlmfcogm |
|
Back to top |
|
|
|