To change the default fonts, edit the
userChrome-example.css
file. The trick is to find this freaking file. For Thunderbird, the file does not exist and you must create it from scratch. Things are easier for Firefox.First, here is the CSS code you need to add to
userChrome-example.css
to change the default font.* { font-size: 11pt !important; }
This sets the default font size for the interface to 11pt. Next you will need to create the file in the appropriate directory for each application.
Thunderbird
For Thunderbird, first find the
Profiles
directory./Users/YourUserName/Library/Thunderbird/Profiles/someRandomeString
In this directory:
- Create a
chrome
directory. - Create
userChrome-example.css
in thechrome
directory include the CSS code shown above
Firefox
For Firefox, the
chrome
directory already exists and actually includes some sample CSS files.Your profile can be found in:
/Users/YourUserName/Library/Application Support/Firefox/Profiles/someRandomeString
Change into the
chrome
directory and create the userChrome-example.css
file as described above.That is it. With this code, the default font size for menu and other application text should now be set to 11 pts.
For details on modifying specific parts of the interface, check out this page: http://kb.mozillazine.org/Pane_and_menu_fonts
No comments:
Post a Comment