freedom77 Posted May 15, 2007 Share Posted May 15, 2007 Is it possible to make the inactive and active tabs haven't different font colours?? I want the inactive tab font to stand out less than the active tab. Anyone know if or how this can be done?? thanks. Link to comment Share on other sites More sharing options...
Jimmie Posted May 15, 2007 Share Posted May 15, 2007 (edited) This can be done with userChrome.css: /* Default tab text color */ tab .tab-text { color: gray !important; } /* Selected tab text color */ tab[selected="true"] .tab-text { color: black !important; } If you wanted to change the text color when hovering over a non-selected tab: /* hover tab text styles */ tab:not([selected="true"]):hover .tab-text { color: red !important; } You can use any valid CSS color value or other properties such as font-style, font-family, opacity, etc.' Edit: For those that have Tab Mix Plus, I believe text colors can be set in the TMP options. Edited May 15, 2007 by Grist Link to comment Share on other sites More sharing options...
garwin Posted May 20, 2007 Share Posted May 20, 2007 Edit: For those that have Tab Mix Plus, I believe text colors can be set in the TMP options. yes :yes: Link to comment Share on other sites More sharing options...
Recommended Posts