Saturday, October 17, 2009

Some useful code for firefox users

For those using Firefox, you might be annoyed with the All Tabs Button on the top right side of the tab bar. This button is not only useless, it takes up space that becomes valuable in a tab bar full of open tabs. The method to remove this button is not so easy, but it is still possible by editing a particular file.

For Windows users:
1. Go to your profile folder (C:\Documents and Settings\******\Application Data\Mozilla\Firefox\Profiles\3lwzvjk3.default\chrome) and locate a file named userChrome-example.css
2. Open the file in wordpad or any text editor.
3. Add this line to the file: .tabs-alltabs-button { display: none !important; }
4. Save and close the file.
5. Rename the file to userChrome.css
6. Restart Firefox.

For Linux users:
1. Go to your profile folder (/home/******/.mozilla/firefox/9t25yjxp.default/chrome) and locate a file named userChrome-example.css
2. Open the file.
3. Add this line to the file: .tabs-alltabs-button { display: none !important; }
4. Save and close the file.
5. Rename the file to userChrome.css
6. Restart Firefox.

Hope this helps.

Saturday, October 10, 2009