Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Thunderbird Folders pane font size in Linux Lite

  • 1 답장
  • 1 이 문제를 만남
  • 3 보기
  • 최종 답변자: 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.

모든 댓글 (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.