Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, 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

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

Unread counter

  • 5 valiny
  • 0 manana an'ity olana ity
  • 71 views
  • Valiny farany nomen'i sfhowes

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
Sarin'efijery napaingotra

Vahaolana nofidina

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.

Hamaky an'ity valiny ity @ sehatra 👍 0

All Replies (5)

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"]

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

Novain'i Ivan Ziubanav t@

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

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

Vahaolana Nofidina

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.