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

Natao arisiva ity resaka mitohy ity. Mametraha fanontaniana azafady raha mila fanampiana.

unread msg : how to make bold the "sender" only

  • 5 valiny
  • 0 manana an'ity olana ity
  • 1 view
  • Valiny farany nomen'i OLIVIER_SYNC

more options

Hi!

I'm trying to tweak my userChrome.css file. Here is what I'd like to do : - for all unread messages in the thread pane :

  - show the "sender" in bold and size 12
  - show the "object" in normal (not bold) and size 10

Anyone knows how to do it?

Thanks a lot for your help. Olivier

Hi! I'm trying to tweak my userChrome.css file. Here is what I'd like to do : - for all unread messages in the thread pane : - show the "sender" in bold and size 12 - show the "object" in normal (not bold) and size 10 Anyone knows how to do it? Thanks a lot for your help. Olivier

All Replies (5)

more options

I presume you're referring to Cards View, and by 'object' you mean 'Subject', so try this:

/* bold sender in card view */
.thread-card-container :is(.sender){
	font-weight: bold !important;
	color: blue !important;
	font-size: 12pt !important;
}

/* indent card subject */
.thread-card-subject-container :is(.subject){
	margin-left: 10px !important;
	font-size: 10pt !important;
}


Help/Troubleshooting Info, Profile Folder, Open Folder, close TB, create a new folder named chrome, create a new document in chrome with a text editor, name it userChrome.css, Save as type: All files *.*, copy in the above code, change the numbers and colour as desired. Double-click toolkit.legacyUserProfileCustomizations.stylesheets to true in Settings/General/Config. editor, restart TB.

Online css generator

video on how to create a css file (Firefox and TB)

The above code includes an indent for the Subject and colour for the sender. The attached picture shows additional zebra striping and border lines.

more options

Correction to above: noting that you want to modify only unread messages, instead of all messages, try this:

tr[is="thread-card"][data-properties~="unread"] :is(.sender) {
      color: orange !important;
      font-weight: bold !important;
      font-size: 12pt !important;
   }

tr[is="thread-card"][data-properties~="unread"] :is(.subject) {
      font-size: 10pt !important;
      font-weight: normal !important;
   }


The picture shows the original code plus the new code for unread messages.

more options

Hi sfhowes

That's exactly what I wanted to do. Thanks!

By the way, is there any documentation that gives a list of all the commands available for the userChrome.css file and how to use them?

Thanks again, Olivier

more options

I'm not aware of any documentation that lists all css options, but there are plenty of examples on various sites, such as elevenforum.com, forums.mozillazine.org, reddit.com/r/Thunderbird and this forum.

If you do a web search on thunderbird userchrome.css type the item you wish to modify you should find results.

more options

Thanks for the information sfhowes and thank you for the great job you're doing helping the Mozilla community. Have a nice day