cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
e-zack
New member
Status: New idea

For very long email with few pages of screen, currently attachments are placed at the end, you have to scroll few screens to reach them, so it is better to place them at top, or a way to jump to the end.

3 Comments
Status changed to: New idea
Jon
Community Manager
Community Manager

Thanks for submitting an idea to the Mozilla Connect community! Your idea is now open to votes (aka kudos) and comments.

siffemcon
Contributor

While waiting for implementation, it can be done with CSS.

Put this code into your userChrome.css file:

/* Table view */
#attachmentView {
  order: -1 !important;
}

/* Cards view */
#attachmentBar {
  order: -1 !important;
}

If you're not familiar with CSS, follow these instructions.

First do this:

- go to TB menu > Settings > General

- scroll all the way down and click the 'Config editor' button on the right

- click the 'Accept the risk and continue' button if that appears

- search for: toolkit.legacyUserProfileCustomizations.stylesheets

- click the double arrow on the right to toggle the value to 'true'

Then:

- go to the Setup section of the FirefoxCSS subreddit [tutorial](https://www.reddit.com/r/FirefoxCSS/wiki/index/tutorials/#wiki_setup)

- skip 'Enable userChrome customization in about:config'; you've already done that

- follow the instructions under 'Locate and open your profile folder..'
NOTE: for TB, the menu choice is Help > Troubleshooting Information.

- follow the instructions under 'Create the folder and its files' (make sure userChrome.css doesn't end with .txt - Windows must be set not to hide extensions for known file types)

- once userChrome.css is created, open it and enter the code I mentioned above

- save the file > ignore the rest of the instructions > restart TB

Agentvirtuel
Collaborator