SeaMonkey Mailnews FAQ

Last updated on November 3, 2004.

How do I change the backgound colour of each pane?

To change the background colour of the folder pane, add this script in your userChrome.css (See Editing Config Files):

#folderTree > .tree-rows > .tree-bodybox {
background-color: #99ffff;
}

To change the background colour of the message list pane, add this script in your userChrome.css (See Editing Config Files):

#threadTree > .tree-rows > .tree-bodybox {
background-color: #99ffff;
}

If you'd like one setting for the both of them, your script can look like this:

#folderTree > .tree-rows > .tree-bodybox,
#threadTree > .tree-rows > .tree-bodybox {
background-color: #99ffff;
}

Of course, you can change "#99ffff" with whatever colour you want.

To change the background colour of the headers pane, add this script in your userChrome.css (See Editing Config Files):

.header-part1 {
background-color: white !important;
}

Webmaster: Chris Ilias