Join the Mozilla’s Test Days event from 9–15 Jan to test the new Firefox address bar on Firefox Beta 135 and get a chance to win Mozilla swag vouchers! 🎁

Den här webbplatsen har begränsad funktionalitet medan vi utför underhåll för att förbättra din upplevelse. Om en artikel inte löser ditt problem och du vill ställa en fråga har vi vår gemenskap som väntar på att hjälpa dig på @FirefoxSupport på Twitter, /r/firefox på Reddit.

Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Läs mer

Thunderbird Folders pane font size in Linux Lite

  • 1 svar
  • 1 har detta problem
  • 3 visningar
  • Senaste svar av Zenos

more options

I am using Linux Lite, an excellent Ubuntu-based OS.

The problem I had was the tiny font used in the Thunderbird folders pane.

A suggested solution was to install an add-on which can customise these, but for me the necessity of giving a 3rd. party full access to my data was a step too far in terms of potential compromise of privacy and security. I don't recommend it.

Then I discovered that I could use my Linux Lite settings>appearance>fonts to adjust both font and font size - set by default at 9pt. This does effect menu etc. sizes across the system, so I compromised at 11pt which suits me and looks well on Firefox too. (In Linux Lite all this is done by GUI, no command lines are needed).

By default it changes desktop icon text, but desktop-settings>icons>select "use custom font size" gives back control.

I hope this is useful to some.

I am using Linux Lite, an excellent Ubuntu-based OS. The problem I had was the tiny font used in the Thunderbird folders pane. A suggested solution was to install an add-on which can customise these, but for me the necessity of giving a 3rd. party full access to my data was a step too far in terms of potential compromise of privacy and security. I don't recommend it. Then I discovered that I could use my Linux Lite settings>appearance>fonts to adjust both font and font size - set by default at 9pt. This does effect menu etc. sizes across the system, so I compromised at 11pt which suits me and looks well on Firefox too. (In Linux Lite all this is done by GUI, no command lines are needed). By default it changes desktop icon text, but desktop-settings>icons>select "use custom font size" gives back control. I hope this is useful to some.

Alla svar (1)

more options

I am also a Linux user, though not your particular distribution.

We usually recommend an add-on, Theme Font & Size Changer, but this has had issues with a "timebomb" in the code that causes it to expire.

My own approach is to use a userChrome.css file with the following content:

/*
 * Do not remove the @namespace line -- it's required for correct functioning
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */

/* Make all the default font sizes 13 pt. */
* {
    font-family: "Liberation Sans" !important;
    font-size: 13pt !important;
}

You can of course adjust or omit the line setting the font-family, and adjust the font-size to suit your needs.