![]() |
2007-07-17
, 20:53
|
Posts: 168 |
Thanked: 51 times |
Joined on Jun 2007
|
#2
|
The Following User Says Thank You to coffeedrinker For This Useful Post: | ||
![]() |
2007-07-17
, 22:16
|
Posts: 309 |
Thanked: 51 times |
Joined on Apr 2007
|
#3
|
![]() |
2007-07-17
, 22:22
|
Posts: 168 |
Thanked: 51 times |
Joined on Jun 2007
|
#4
|
![]() |
2007-07-17
, 22:35
|
Posts: 168 |
Thanked: 51 times |
Joined on Jun 2007
|
#5
|
![]() |
2007-07-18
, 12:19
|
|
Posts: 2,669 |
Thanked: 2,555 times |
Joined on Apr 2007
|
#6
|
http://floopymoose.com
![]() |
2007-07-18
, 13:17
|
Posts: 86 |
Thanked: 3 times |
Joined on Apr 2007
|
#7
|
You can change these settings via about:config or in prefs.js (keys below are in prefs.js format). If editing prefs.js make sure the browser is closed when editing.
To set minimum fonts size:
user_pref("font.min-size.fixed.x-western", 17);
user_pref("font.min-size.variable.x-western", 17);
These are for non css sites (I think):
user_pref("font.size.variable.x-western", 18);
user_pref("font.size.fixed.x-western", 18);
To change the default font (fonts must be installed in .fonts):
user_pref("font.default.x-western", "sans-serif");
user_pref("font.name.sans-serif.x-western", "Arial");
![]() |
2007-07-18
, 13:33
|
Posts: 309 |
Thanked: 51 times |
Joined on Apr 2007
|
#8
|
I wasn't able to find these "x-western" prefs, but I did find some similar ones (font.min-size.fixed.ja). i changed all of them to be 16 (this was what I was running on Opera and it was satisfactory) but after a reboot, nothing looks different. Definetly not at 16 font.
Ideas? Do I need to install some more fonts in home/user/.fonts, set as default, then increase those font sizes?
![]() |
2007-07-18
, 14:52
|
|
Posts: 729 |
Thanked: 19 times |
Joined on Mar 2007
|
#10
|
I wasn't able to find these "x-western" prefs, but I did find some similar ones (font.min-size.fixed.ja). i changed all of them to be 16 (this was what I was running on Opera and it was satisfactory) but after a reboot, nothing looks different. Definetly not at 16 font.
Ideas? Do I need to install some more fonts in home/user/.fonts, set as default, then increase those font sizes?
To set minimum fonts size:
user_pref("font.min-size.fixed.x-western", 17);
user_pref("font.min-size.variable.x-western", 17);
These are for non css sites (I think):
user_pref("font.size.variable.x-western", 18);
user_pref("font.size.fixed.x-western", 18);
To change the default font (fonts must be installed in .fonts):
user_pref("font.default.x-western", "sans-serif");
user_pref("font.name.sans-serif.x-western", "Arial");
Last edited by coffeedrinker; 2007-07-17 at 22:47. Reason: Update