First, you need find the sample template for changing the Firefox UI,
userChrome-example.css
. This can be found in the following directory:c:\Program Files\Mozilla Firefox\defaults\profile\chrome
First, copy
userChrome-Example.css
to userChrome.css
. Next, add a rule to set the default font size. For example, this sets the font size to 10pts:
* {
font-size: 10pt !important;
}
With the file created and rule added, copy
userChrome.css
to your profile directory for Firefox. This gets a little tricky as the AppData
directory is hidden by default so you may need to actually type the name into Windows Explorer. So here is the path:c:\Users\UserName\AppData\Roaming\Mozilla\Firefox\Profiles\someRandomeString.default\chrome
That is it. The font size for menu and other application text should now be set to 10 pts.
No comments:
Post a Comment