Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Post History
There are options to increase/decrease the font size directly in the view menu. They affect everything, including the message list and they are applied instantly, no restart required. But they a...
#1: Initial revision
There are options to increase/decrease the font size directly in the view menu. They affect everything, including the message list and they are applied instantly, no restart required.

But they affect everything equally, which may not be what you want.
To only change the message list, you can do the following:
1. Open _Help_ -> _Troubleshooting Information_
2. Click on _Open Directory_ next to _Profile Directory_. This should open your file manager with the proper directory
3. Close Thunderbird
4. Create a new folder named `chrome` inside your profile directory
5. Inside the `chrome` folder, create a new file named `userChrome.css`
In this file you can override the CSS that makes up the UI of the program (generally called `Chrome`, which has nothing to do with the browser, except that's where the browser got its name from).
Example:
```css
#threadTree > treechildren {
font-size: 14pt !important;
}
#folderTree > treechildren {
font-size: 14pt !important;
}
```
The `!important` flag will make sure it gets priority over the existing CSS rules.
You will need to restart Thunderbird to have changes to this file applied.
