Thursday, March 26, 2009

Change Color of the Tabs in Firefox 3.0.6

In Firefox 3.0.6 the background colors of the selected active tab and the un-selected inactive tabs are very similar. The color of the selected tabs cannot stand-out to catch your eyes. Here is a way to change the colors.
Firstly, go to the chrome directory of your profile in Firefox 3.0.6. Create or edit the file userChrome.css and add the following lines :
tab { -moz-appearance: none !important; } tab[selected="true"] { background-color: #FF6A6A !important; color: blue !important; } tab:not([selected="true"]) { background-color: #CCFFFF !important; color: black !important; }
Then, re-start the firefox.

This will make the active tab have red background with blue text and the inactive tabs have light cyan background with black text.



No comments:

Duplicate Open Current Folder in a New Window

Sometimes after I opened a folder in Win7, I would like to duplicate open the same folder again in another explorer window. Then, I can ope...