
How can I make it more prominent that there is an attachment with a message?
Too often I miss that there is an attachment with a message. How can I make the symbol bigger? red? or maybe set an alert to pop up when I close a message without clicking on the attachment?
Of course, if everyone would say "see attached" that would help, but they don't.
Chosen solution
If you right-click the attachments pane, enable 'Initially Show Attachment Pane'.
You can also make the attachment pane much larger by creating a userChrome.css file suggested here. Make a folder named chrome in the profile folder and store a text file there, userChrome.css, that looks like this:
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* Attachment pane at bottom of message window */
#attachmentView {
-moz-appearance: none !important;
height: 200px !important;
min-height: 200px !important;
overflow: auto !important; }
All Replies (3)
I do have the attachments column showing, but the paperclip symbol just doesn't stand out enough. I just tried your filter idea, and it kinda works, except I do have messages with attachments as small as 10k, and other messages without attachments as large as 2megs. So size isn't really going to be an indicator. Too bad the filter doesn't give "has an attachment" as one of the choices.
Ohhh your first idea would help a lot, but I don't see how to set my preferences to expand the attachments panel by default. I can expand the panel by clicking the triangle, but if I don't notice it, well, that's my problem. It's a small line of type at the bottom of my window and easily missed.
Yay! I did both those things (set the attachments pane to always be in the open position, and made the css file and put it in my library). They both work and now I surely won't miss seeing an attachment. THANK YOU!