How do I get the attachments above the message body?

User Help for Mozilla Thunderbird
Post Reply
TerriToniAX
Posts: 3
Joined: October 9th, 2006, 3:07 am
Location: Åland Islands
Contact:

How do I get the attachments above the message body?

Post by TerriToniAX »

I'm used to having attachments displayed above the message body like in MS Outlook and OE. In Thunderbird, however, the attachments are displayed beneath the message body, which has made me miss at least one urgent document enclosed with an e-mail. Now, how do I make Thunderbird display the attachments on top of message bodies?
User avatar
Rod Whiteley
Posts: 11480
Joined: December 6th, 2004, 3:41 am
Location: UK

Post by Rod Whiteley »

You can use userChrome.css to do that. For example:

Code: Select all

#messagepanebox {-moz-binding: url("userChrome.xml#messagepane-binding");}
and in the same directory create a new text file named userChrome.xml:

Code: Select all

<?xml version="1.0"?>
<!DOCTYPE bindings>

<bindings id="user-chrome-bindings"
   xmlns="http://www.mozilla.org/xbl"
   xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

<binding id="messagepane-binding" extends="xul:vbox">
   <content>
      <children includes="deck"/>
      <children includes="hbox"/>
      <spacer/>
      <children/>
      </content>
   </binding>

</bindings>
Rod
TerriToniAX
Posts: 3
Joined: October 9th, 2006, 3:07 am
Location: Åland Islands
Contact:

Post by TerriToniAX »

Wow, that was a quick reply!

Yes, that did the trick! Thanks a lot! :)
The terrible - the terrific
User avatar
Rod Whiteley
Posts: 11480
Joined: December 6th, 2004, 3:41 am
Location: UK

Re: How do I get the attachments above the message body?

Post by Rod Whiteley »

Note that the above does not work in Thunderbird 3. See: viewtopic.php?f=39&t=1781245
Rod
TerriToniAX
Posts: 3
Joined: October 9th, 2006, 3:07 am
Location: Åland Islands
Contact:

Re: How do I get the attachments above the message body?

Post by TerriToniAX »

Thanks for the information, Rod! :)
Post Reply