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

Tag Position on email

  • 3 replies
  • 1 has this problem
  • 17 views
  • Last reply by Mapenzi

more options

I would like to move the coloured tag to the left on the delivered email so that It is in my eyeline area. It resides on the right, I would like it on the left. Is this possible?

Thanks,

Mike Duffy

I would like to move the coloured tag to the left on the delivered email so that It is in my eyeline area. It resides on the right, I would like it on the left. Is this possible? Thanks, Mike Duffy

All Replies (3)

more options

I don't know how to put the tag icon from the right to the left; probably it can be done with some CSS code in the userChrome.css file.

I have some code to colourize tagged messages: see screen shot below. If you're interested I can give you the CSS code

more options

Hi, can I have that code too? Thanks Paul

more options

You can use the following CSS code in a userChrome.css file (works here in TB 140)

/* :::: Threadpane cards view tweaks :::: */
 #threadTree[rows="thread-card"] .card-container {
   color: var(--tag-color);

}

 #threadTree  tbody tr.selected[data-properties~="tagged"] .card-container {
   background-color: var(--tag-color) !important;
   color: var(--tag-contrast-color) !important;

}

If you never used userChrome.css we'll tell you the details to make it work

Modified by Mapenzi