Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

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

Unread counter

  • 5 ŋuɖoɖowo
  • 0 masɔmasɔ sia le wosi
  • 20 views
  • Nuɖoɖo mlɔetɔ sfhowes

more options

Please add a feature to disable the unread message counter on certain folders. I don't want to see how many messages I have in the Trash folder, they're in this folder because I don't want to read them, but this counter annoys me

Please add a feature to disable the unread message counter on certain folders. I don't want to see how many messages I have in the Trash folder, they're in this folder because I don't want to read them, but this counter annoys me
Screen ƒe photowo kpe ɖe eŋu

Ŋuɖoɖo si wotia

To make the Trash folder not change:

ul#folderTree li[data-folder-type="trash"].unread > .container > .name {
color: black !important;
font-weight: normal !important;
}


trash can be replaced by other generic folders such as inbox, sent, junk, drafts. Not sure how to apply it to arbitrary user-defined folders. For those, consider unchecking 'When getting new messages...' in folder Properties.

Xle ŋuɖoɖo sia le goya me 👍 0

All Replies (5)

more options

The unread count for all folders can be hidden with css:

https://support.mozilla.org/en-US/questions/1426787#answer-1609463

For specific folders, try adding something like this to the code:

[data-folder-type="Trash"]

more options

Something like this? [data-folder-type="Trash"] .unread > .container > .unread-count {

   display: none !important;

}

I'm not good at css, and this isn't work.

I used this css to check or I had configured all in the right way:

#folderTree {
   background-color: red !important;

} and I'm pretty sure, that I had configured all in the right way, but first css doesn't work

Ivan Ziubanav trɔe

more options

Try something like this:

ul#folderTree li[data-folder-type="trash"].unread > .container > .unread-count {
  display:none !important;
}


Reference: https://forums.mozillazine.org/viewtopic.php?t=3129527

more options

It works! But, if I need use the same for some another folders, some certain folders that I need, how can I check its folder type?

Alsa I have a problem, that counter is invisible now, but name of the Trash folder is hightlight

more options

Ɖɔɖɔɖo si wotia

To make the Trash folder not change:

ul#folderTree li[data-folder-type="trash"].unread > .container > .name {
color: black !important;
font-weight: normal !important;
}


trash can be replaced by other generic folders such as inbox, sent, junk, drafts. Not sure how to apply it to arbitrary user-defined folders. For those, consider unchecking 'When getting new messages...' in folder Properties.