Pane and menu fonts: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
(fleshed this out, finally)
Line 1: Line 1:
You can change the size, color, or other attributes of fonts used in the folders pane, the message-list pane, or the menus by modifying your [[userChrome.css]] file. See the examples given in [http://forums.mozillazine.org/viewtopic.php?p=362520#362520 this thread] (menus, folders pane, and message-list pane) and [http://forums.mozillazine.org/viewtopic.php?p=433416#433416 this thread] (message-list pane only) and make your own adjustments as desired.
You can change the font, font size, and other attributes of fonts used in the folder pane, message-list pane, menus, and elsewhere in the user interface. To do so, add the relevant code shown below into your [[userChrome.css]] file, making changes to suit your own font preferences.
 
==Global GUI font (except menus)==
Use the following to change the font used in the folder pane, message-list pane, dialogs, toolbar buttons, etc.—everywhere except the menus.
 
<pre>
window,
page,
dialog,
wizard,
prefwindow {
  font-family: Arial !important;
  font-size: 10pt !important;
}
</pre>
 
==Menu font==
Use the following to change the font for all menus.
 
<pre>
menu, menulist, menuitem {
  font-family: Times New Roman !important;
  font-size: 12pt !important;
}
</pre>
 
==Further adjustments==
There are innumerable ways you can fine-tune the fonts used in various parts of Thunderbird. For example, you can have separate font settings for the message-list pane and the folder pane, or add colors and background colors to specific elements. See these forum threads for a few examples: [http://forums.mozillazine.org/viewtopic.php?p=362520#362520] [http://forums.mozillazine.org/viewtopic.php?p=1888526#1888526] [http://forums.mozillazine.org/viewtopic.php?t=338238].
 
[[Category:Visual customizations (Thunderbird)]]
[[Category:Visual customizations (Thunderbird)]]

Revision as of 08:52, 24 November 2005

You can change the font, font size, and other attributes of fonts used in the folder pane, message-list pane, menus, and elsewhere in the user interface. To do so, add the relevant code shown below into your userChrome.css file, making changes to suit your own font preferences.

Global GUI font (except menus)

Use the following to change the font used in the folder pane, message-list pane, dialogs, toolbar buttons, etc.—everywhere except the menus.

window,
page,
dialog,
wizard,
prefwindow {
  font-family: Arial !important; 
  font-size: 10pt !important;
}

Menu font

Use the following to change the font for all menus.

menu, menulist, menuitem { 
  font-family: Times New Roman !important; 
  font-size: 12pt !important;
}

Further adjustments

There are innumerable ways you can fine-tune the fonts used in various parts of Thunderbird. For example, you can have separate font settings for the message-list pane and the folder pane, or add colors and background colors to specific elements. See these forum threads for a few examples: [1] [2] [3].