Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

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

71%
+3 −0
Q&A How do I enlarge inbox text in Thunderbird?

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...

posted 1y ago by GeraldS‭

Answer
#1: Initial revision by user avatar GeraldS‭ · 2025-08-15T05:08:23Z (about 1 year ago)
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.

![Screenshot of the "View" menu of Thunderbird. The sub menu "Font Size" is opened and the menu entry "Increase font size" is highlighted. The Background shows some redacted email entries](https://powerusers.codidact.com/uploads/x1fq5fc55k7mgjokf28lfqdrxo1r)

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.