Nice little Firefox visual tweak
NYCDrew
NYC(duh)
I find that when you have a lot of tabs opened in Firefox, it becomes annoying to keep track of which tab you're looking at. I found this little tweak and like it so much I want to share. It turns the active tab blue so it stands out.
By creating a .css file in your Firefox chrome folder, you can alter the appearance of Firefox easily. Just create the userChrome.css file in the following location:
C:\Documents and Settings\[username]\Application Data\Mozilla\Firefox\Profiles\[your specific number].default\chrome
You can use notepad or Wordpad to create a new file. Paste the code below into it and save it as "userChrome.css" in the above directory. Restart Firefox and open a second tab and you should see it.
.tabbrowser-tab[selected="true"] > hbox,
.tabbrowser-tab[selected="true"] > .tab-close-button {
background-color: #00f !important;
color: #fff !important;
}
.tabbrowser-tab[selected="true"]:hover > hbox,
.tabbrowser-tab[selected="true"]:hover > .tab-close-button {
background-color: #66f !important;
color: #fff !important;
}
/* the rules below are optional, you can remove them */
.tabs-bottom {
background-color: #00f !important;
height: 6px !important;
}
.tabs-bottom-spacer {
height: 2px !important;
}
By creating a .css file in your Firefox chrome folder, you can alter the appearance of Firefox easily. Just create the userChrome.css file in the following location:
C:\Documents and Settings\[username]\Application Data\Mozilla\Firefox\Profiles\[your specific number].default\chrome
You can use notepad or Wordpad to create a new file. Paste the code below into it and save it as "userChrome.css" in the above directory. Restart Firefox and open a second tab and you should see it.
.tabbrowser-tab[selected="true"] > hbox,
.tabbrowser-tab[selected="true"] > .tab-close-button {
background-color: #00f !important;
color: #fff !important;
}
.tabbrowser-tab[selected="true"]:hover > hbox,
.tabbrowser-tab[selected="true"]:hover > .tab-close-button {
background-color: #66f !important;
color: #fff !important;
}
/* the rules below are optional, you can remove them */
.tabs-bottom {
background-color: #00f !important;
height: 6px !important;
}
.tabs-bottom-spacer {
height: 2px !important;
}
0
Comments
while I am at work since I have so many tabs open all day.
But good little tweak NYC.
https://addons.mozilla.org/en-US/firefox/addon/1368
that's better
Works perfectly.
That happens to me when I'm looking at pr0n too, Leo.
;D;D;D;D;D;D;D;D;D;D;D;D;D;D
Works Perfectly --- a true ladies Man!!!!
For some reason, creating and saving the file through WordPad did not work. It worked immediately with Notepad.
This doesn't work with 3.0. I had to remove it manually.