Change the font sizes of the Tools > Options dialog and the about:??? pages
Under Windows 7 I select 1024 x 768 for screen resolution and 125% for text size.
The font size of the Tools > Options dialog is too small for me. I would like to change it to 11 pixels.
What codes should I add to userChrome.css?
Also, I would like to increase the default font sizes of the about:??? pages and the Help > Troubleshooting Information page, so that I don't need to zoom them.
drkh tarafından
Seçilen çözüm
You may have to use a lot of style rules to cover all possible windows including windows that open if you click a button like the Cookie Manager (#CookiesDialog) and the Password Manager (#SignonViewerDialog).
The Options/Preferences window has this ID: #BrowserPreferences (chrome://browser/content/preferences/preferences.xul)
#BrowserPreferences * { font-size: 11pt !important; }Bu yanıtı konu içinde okuyun 👍 1
Tüm Yanıtlar (9)
Does this help;
Your zoom controls.
<Control> + (plus) enlarge <Control> - (minus) reduce <Control> 0 (zero) restore
I've called the big guys to help you. Good luck.
You can look at this extension to adjust the font size for the user interface.
- Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/
You can use an extension to set a default font size and page zoom on web pages.
- Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
- NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/
Can't I just change the font sizes of those indivisual elements I mentioned without making global changes?
I have changed layout.css.devPixelsPerPx from the default -1.0 to 1.0. I also added the following codes to userChrome.css:
menubar, menubutton, menulist, menu, menuitem, textbox, toolbar, .tab-text, tree, tooltip, sidebarheader, statusbar { font-size: 11pt !important; }
Afterwards I'm OK with most of the UI elements.
Since the above style codes does work with individual UI elements (menubar, etc), I thought there might be codes that work with the Options dialog and the about:??? pages.
Correct me if I'm wrong.
Seçilen çözüm
You may have to use a lot of style rules to cover all possible windows including windows that open if you click a button like the Cookie Manager (#CookiesDialog) and the Password Manager (#SignonViewerDialog).
The Options/Preferences window has this ID: #BrowserPreferences (chrome://browser/content/preferences/preferences.xul)
#BrowserPreferences * { font-size: 11pt !important; }
Ah! I forgot there are other windows called from the main Options window... But I'm still very glad that the font size of the main Options window is now increased with the codes you provide. Major goal accomplished.
Thank you very much.
And... how about the small font sizes of the about:??? pages and the Help > Troubleshooting Information page? Is it possible to adjust for only those pages without affecting the global default font size setting of all pages? I have checked NoSquint. It can only make per-site exceptions from the default zoom levels it sets, but can not set level zooms for specific pages.
drkh tarafından
Hello,
I am glad to hear that your problem has been resolved. If you haven't already, please select the answer that solves the problem. This will help other users with similar problems find the solution more easily.
Thank you for contacting Mozilla Support.
FredMcD said
If you haven't already, please select the answer that solves the problem.
Although now I can increase the font size of the main Options window, the same small font size problem with the about:??? pages and the Help > Troubleshooting Information page remains. (I have checked NoSquint, which can not set default zoom level for individual pages.) So I'd like to wait for a few more days before I select the answer.
drkh tarafından
The about:config page needs code in userContent.css for the font size.
/* about:config and about:support */ @-moz-document url(about:config), url(about:support){ *{font-size:11pt!important} }
All Problems solved!
There is a bonus... I add url(about:) and url(about:cache) to the userContent.css codes provided by cor-el, and they do work with those two extra pages. Sweet!
Thanks again.