Hi there,
I recently installed OpenSuse 11.3 but the Firefox font was way too ugly.
To solve it, I tried this tip: either delete the .fonts.conf file from the home folder, or delete one entry from this file.
The file is:
<?xml version=“1.0”?><!DOCTYPE fontconfig SYSTEM “fonts.dtd”>
<fontconfig>
<match target=“font” >
<edit mode=“assign” name=“rgba” >
<const>none</const>
</edit>
</match>
<match target=“font” >
<edit mode=“assign” name=“hinting” >
<bool>true</bool>
</edit>
</match>
<match target=“font” >
<edit mode=“assign” name=“hintstyle” >
<const>hintmedium</const>
</edit>
</match>
<match target=“font” >
<edit mode=“assign” name=“antialias” >
<bool>true</bool>
</edit>
</match>
</fontconfig>
Now, if you delete the antialias entry, the files becomes:
<?xml version=“1.0”?><!DOCTYPE fontconfig SYSTEM “fonts.dtd”>
<fontconfig>
<match target=“font” >
<edit mode=“assign” name=“rgba” >
<const>none</const>
</edit>
</match>
<match target=“font” >
<edit mode=“assign” name=“hinting” >
<bool>true</bool>
</edit>
</match>
<match target=“font” >
<edit mode=“assign” name=“hintstyle” >
<const>hintmedium</const>
</edit>
</match>
</fontconfig>
Save it and restart Firefox. You will notice that the Font is much better (check the letter ‘a’ in the word Bookmarks in the Firefox menu). Desktop font are also much better!
Please check out these screenshots:
Bad:
http://img402.imageshack.us/img402/866/bad.png
Good:
http://img165.imageshack.us/img165/6512/goodt.png
But another issue popped out: bigger fonts are now crappy (when I removed the antialias entry or the entire fonts.conf file).
What do you think this issue is? and how to solve it? I thought that I have solved the Firefox font issue, but a new issue came out as a result.
Thank you.