Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

How to increase line height in Thunderbird's interface panes?

  • 4 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 1 προβολή
  • Τελευταία απάντηση από alex_t

more options

Would you please tell me, how to increase line-height for text in Thunderbird's user panes (Folder Pane, Message Pane)? (not Font-size, but Line-height parameter, that's what I'm trying to find.)

Thank you!

Would you please tell me, how to increase line-height for text in Thunderbird's user panes (Folder Pane, Message Pane)? (not Font-size, but Line-height parameter, that's what I'm trying to find.) Thank you!

Επιλεγμένη λύση

amanchesterman said

The /chrome/ subdirectory needs to be created within that.

Thanks, NOW it works.

Figured out, line-height attribute doesn't work in userChrome.css. Like, at all. So I searched the Net and tried this code instead:

/* Row Height*/ treechildren::-moz-tree-row {

   margin-top: 2px !important;
   margin-bottom: 2px !important;

}

Success )

Ανάγνωση απάντησης σε πλαίσιο 👍 0

Όλες οι απαντήσεις (4)

more options

You'll need to edit the userChrome.css file in your Thunderbird folder (or create the file if it isn't there). There's quite a good tutorial here: http://www.linnhe2.free-online.co.uk/thunderbird/chrome.html It includes several examples but unfortunately not one to adjust the line height. However the css property line-height: 150% (or whatever percentage you want) should work. You just have to experiment really to get it the way you want. Just about everything in the Thunderbird interface can be tailored this way.

more options

Thanks, amanchesterman, I have created the file "userChrome.css" in ~/Users/Username/Library/Thunderbird/Profiles/chrome/ (I'm on a Mac), and pasted some folder-pane-tweaking code into it it from the page you had suggested. Restarted TBird. No effect at all. Maybe I should have put the file into another directory?

more options

I don't use a Mac so I'm rather out of my depth here. However according to this page it looks as if you haven't got the path right: https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird/Thunderbird_Configuration_Files The page is somewhat out of date but I guess the path hasn't changed much. If it's still correct, in your /Thunderbird/Profiles/ folder there should be another folder with a name like xxxxxxxx.default where the x's are a random string of 8 characters. That's your actual Thunderbird profile which contains all your mail and settings. The /chrome/ subdirectory needs to be created within that.

more options

Επιλεγμένη λύση

amanchesterman said

The /chrome/ subdirectory needs to be created within that.

Thanks, NOW it works.

Figured out, line-height attribute doesn't work in userChrome.css. Like, at all. So I searched the Net and tried this code instead:

/* Row Height*/ treechildren::-moz-tree-row {

   margin-top: 2px !important;
   margin-bottom: 2px !important;

}

Success )