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

Unread counter

  • 5 பதிலளிப்புகள்
  • 0 இந்த பிரச்னைகள் உள்ளது
  • 144 views
  • Last reply by 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
Attached screenshots

தீர்வு தேர்ந்தெடுக்கப்பட்டது

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.

Read this answer in context 👍 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

Ivan Ziubanav மூலமாக திருத்தப்பட்டது

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

தீர்வு தேர்ந்தெடுக்கப்பட்டது

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.