Thunderbird is not well adapted to the small screen height of the EEE. In order to make it more vertically friendly, we will do three things:
See also How to shrink firefox
The resulting compose dialog will look like the following:
(It is also possible to move the toolbar icons onto the menu bar. Just right click the toolbar, customize, then drag the icons to the menu bar. The toolbar can then be turned off in view toolbars. This tip can be applied to firefox too)
Tools→Add-Ons menu. Get Themes button.compact.Install Now button or firefox will try to use the theme).The Thunderbird interface is completely customizable by XUL files that live inside special JAR files in the Thunderbird install directory. There is an easy way to do this, and a hard way.
After either set of instructions, add the last 3 lines in the section below to your userChrome.css file. You do not have to change the font size if you do not want to.
Note for eeeXubuntu users: The path where the messenger.jar is stored is /usr/share/thunderbird/chrome instead of /opt/thunderbird/chrome
/opt/thunderbird/chrome (You will need to be superuser to do this) and overwrite the original.cd Desktopsudo cp messenger.jar /opt/thunderbird/chrome/opt/thunderbird/chrome/messenger.jar file, so that it can be replaced if there is a problem:sudo cp /opt/thunderbird/chrome/messenger.jar /opt/thunderbird/chrome/messenger.jar.backup
messenger.jar from the /opt/thunderbird/chrome directory like so:unzip /opt/thunderbird/chrome/messenger.jar -d ~/messenger/
cd ~/messenger/content/messenger/messengercompose/ pico messengercompose.xul
<listbox id=“addressingWidget” flex=“1” seltype=“multiple” rows=“4” (it's line 582) and change the 4 to a 1 (or 2…whatever you want)cd ~/messengerzip -r messenger.jar content
sudo cp messenger.jar /opt/thunderbird/chrome/
cd ~/.thunderbird/cd to the directory that ends in .defaultcd chrome (If it does not exist, create it)pico userChrome.css (If it does not exist, create it)
*{
font-family: sans-serif !important;
font-size: 8pt !important;
}
#MsgHeadersToolbar {
min-height: 25px !important;
}
font-size can be anything you want.MsgHeadersToolbar section sets the composer window “To:” section to be smaller (in concert with the edited messenger.jar)Note for eeeXubuntu users: The path in the first step should be ~/.mozilla-thunderbird instead.
The dialog window used to edit a single address book card does not fit by default in the reduced screen-height of the EeePC. Even though the dialog itself can be resized to fit within the available screen, no scrollbar will ever appear, leaving the OK/Cancel buttons at the bottom out of reach. The simplest workaround to this problem is to move the dialog window (partially) outside of the upper limit of the screen, so that the OK/Cancel buttons become reachable:
~/messenger directory you created to reclaim the space.