Attachment pane height - Thunderbird

From MozillaZine Knowledge Base
Revision as of 09:38, 5 May 2005 by Wintogreen (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

When you receive a message with attachments, the attachments are listed in a separate pane at the bottom of Thunderbird's preview pane or message window. The more attachments you receive, the more space this pane takes up, and by default the attachment pane does not stop growing. As a result, if you receive a large number of attachments the attachment pane can take up so much space that you can't even see the message body. To change this, so that the attachment pane will have a fixed height and use a vertical scrollbar, exit Thunderbird and insert the following into your userChrome.css file:

/* Attachment pane at bottom of message window */
#attachmentView {
  -moz-appearance: none !important;
  height: 40px !important;
  overflow: auto !important; }

Other information

  • To increase the pane height, change 40px to a bigger number.
  • The line "-moz-appearance: none !important;" may not be necessary, depending on the theme you are using. You can experiment with this line in/out to see how it works with the theme you are using.
  • For further discussion, see this Mozillazine forums thread.