This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Make unread emails not Bold

  • 1 jibu
  • 1 ana tatizo hili
  • 6 views
  • Last reply by sfhowes

more options

Is it possible to make it so unread emails no longer show up as bold? (or perhaps a less severe bold) If so how?

Is it possible to make it so unread emails no longer show up as bold? (or perhaps a less severe bold) If so how?

Chosen solution

Here is a userChrome.css example for the Threads Pane font for unread mail:

/* Threads pane text */
treechildren::-moz-tree-cell-text(unread) {
  font-size: 12pt !important;
  font-family: Verdana !important;
  font-style: italic !important;
  font-weight: normal !important;
  color: cyan !important;
}
treechildren::-moz-tree-cell-text(selected, unread) {
  font-size: 12pt !important;
  font-family: Verdana !important;
  font-weight: normal !important;
  color: orange !important;
}

The font is normal instead of bold, and in italics. The size, color and family are all adjustable.

Create a folder named chrome in the profile folder, and in chrome create a userChrome.css file with a text editor.

Read this answer in context 👍 0

All Replies (1)

more options

Suluhisho teule

Here is a userChrome.css example for the Threads Pane font for unread mail:

/* Threads pane text */
treechildren::-moz-tree-cell-text(unread) {
  font-size: 12pt !important;
  font-family: Verdana !important;
  font-style: italic !important;
  font-weight: normal !important;
  color: cyan !important;
}
treechildren::-moz-tree-cell-text(selected, unread) {
  font-size: 12pt !important;
  font-family: Verdana !important;
  font-weight: normal !important;
  color: orange !important;
}

The font is normal instead of bold, and in italics. The size, color and family are all adjustable.

Create a folder named chrome in the profile folder, and in chrome create a userChrome.css file with a text editor.