Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How can I sort symbols in left sidebar from Thunderbird?

  • 2 respostas
  • 0 have this problem
  • 20 views
  • Last reply by mail220101

more options

My aim is for the e-mail icon to appear first at the top of the sidebar, then the calendar and then the address book. The default setting is e-mail, then address book, then calendar. Also, I would like to hide the chat icon completely. Is there a solution for this? Gladly also via userChrome.css...

My aim is for the e-mail icon to appear first at the top of the sidebar, then the calendar and then the address book. The default setting is e-mail, then address book, then calendar. Also, I would like to hide the chat icon completely. Is there a solution for this? Gladly also via userChrome.css...
Capturas de pantalla anexas

Chosen solution

Change the order of the spaces icons (see picture):

#mailButton,#calendarButton {order: -1;}
#addressBookButton,#tasksButton {order: 1;}
#chatButton {display:none;}


Help/Troubleshooting Info, Profile Folder, Open Folder, close TB, create a new folder named chrome, create a new document in chrome with a text editor, name it userChrome.css, Save as type: All files *.*, copy in the above code. Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Settings/General/Config. editor, restart TB.

Online css generator

video on how to create a css file (Firefox and TB)

Ler a resposta no contexto 👍 1

All Replies (2)

more options

Chosen Solution

Change the order of the spaces icons (see picture):

#mailButton,#calendarButton {order: -1;}
#addressBookButton,#tasksButton {order: 1;}
#chatButton {display:none;}


Help/Troubleshooting Info, Profile Folder, Open Folder, close TB, create a new folder named chrome, create a new document in chrome with a text editor, name it userChrome.css, Save as type: All files *.*, copy in the above code. Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Settings/General/Config. editor, restart TB.

Online css generator

video on how to create a css file (Firefox and TB)

more options

Thx, it works.