Line spacing in message pane

Discussion of features in Mozilla Thunderbird
Locked
dale
Posts: 6
Joined: September 4th, 2003, 12:30 pm
Location: Vancouver

Line spacing in message pane

Post by dale »

I've finally figured out how to change the message pane and folder pane fonts, with the code below in userchrome.css. However, if I increase the message pane font beyond 9 pt, the rows start to overlap, because the font size increases but the line-spacing doesn't. Can anyone suggest how I'd fix this, either so the space is scaled with the font, or I just specify it in the code below? Thanks.


/* Change Browser Fonts */
* { font-size: 8pt !important;
font-family: Verdana !important; }

/* Folderpane(color/text) & Messagepane(color) */
treechildren {
background-color: #F1F1F1 !important;
font-family: Verdana !important;
font-size: 14px !important; }

/* Messagepane text */
treechildren:-moz-tree-cell-text(unread) {
font-size: 9pt !important;
font-family : Arial bold !important}

treechildren:-moz-tree-cell-text(read) {
font-size: 9pt ! important;
font-family : Arial !important; }
Old Bozz
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Bozz »

Here ya go.

Code: Select all

/* Adjust Message pane Messages row height */
#threadTree treechildren:-moz-tree-row {
  height: 19px !important; }
User avatar
LIMPET235
Moderator
Posts: 39936
Joined: October 19th, 2007, 1:53 am
Location: The South Coast of N.S.W. Oz.

Re: Line spacing in message pane

Post by LIMPET235 »

bbecker24...Barbara,
I split your post off to here, as this old thread died in 2005.
Please ref; > http://forums.mozillazine.org/viewtopic ... &t=3032256
[Ancient Amateur Astronomer.]
Win-10-H/64 bit/500G SSD/16 Gig Ram/450Watt PSU/350WattUPS/Firefox-115.0.2/T-bird-115.3.2./SnagIt-v10.0.1/MWP-7.12.125.

(Always choose the "Custom" Install.)
Locked