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

Assign a color for the actitve tab

  • 1 reply
  • 1 has this problem
  • 5 views
  • Last reply by cor-el

more options

Is there a way to highlight the active tab by giving it a color?

Is there a way to highlight the active tab by giving it a color?

All Replies (1)

more options

You can do that with code in userChrome.css

See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

An example is this (make your own changes and leave out what you do ont need):

/* Change color of selected tab */
.tabbrowser-tab[selected="true"] {
 color:#000 !important;
 background-color: rgb(147, 174, 229) !important;
 font-style:italic !important;
 font-size:10pt !important;
 font-weight:bold;
}

You can also look at extensions like Tab Mix Plus.