BigAl-sa
Executive Member
- Joined
- Dec 26, 2006
- Messages
- 6,652
Note: This is for Linux users.
As I mentioned in the Firefox 4 links thread, the fonts in Firefox 4 on my netbook looked horrible, so I went back to 3.6.16. However, the difference in speed is *really* noticeable, so I had to find a fix. It would appear that FF ignores the system fonts settings in Gnome. What works is to create a .fonts.conf in your home directory containing the following:
I've got really spiffy looking fonts now - I'll just have to see if any other apps break
As I mentioned in the Firefox 4 links thread, the fonts in Firefox 4 on my netbook looked horrible, so I went back to 3.6.16. However, the difference in speed is *really* noticeable, so I had to find a fix. It would appear that FF ignores the system fonts settings in Gnome. What works is to create a .fonts.conf in your home directory containing the following:
Code:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font" >
<edit mode="assign" name="rgba" >
<const>rgb</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>hintfull</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="antialias" >
<bool>true</bool>
</edit>
</match>
</fontconfig>
I've got really spiffy looking fonts now - I'll just have to see if any other apps break