20+ Ways to Tweak Firefox with the Userchrome.css File

Jan. 15th, 2009 By Mark O'Neill

userchrome.css firefoxLast month, I showed you how to remove the “open in new window” option from your Firefox right-click menu by making a simple tweak to your Firefox userchrome.css file. This got me interested in what other tweaks you could make to the Firefox browser via the userchrome.css file so I went hunting.

Just to recap for those of you who don’t know what the userchrome.css file is. It is the file in your Firefox profile which you can use to make tweaks and customisations to the browser. It can be found by going to :

    [WindowsXP] C:\Documents and Settings\<username>\ Application Data\Mozilla\Firefox\Profiles\Chrome

    [Windows Vista] – C:\Users\<username>\AppData\Roaming\Mozilla\Firefox\Profiles\<some_profile>\chrome

Inside there, you will either find the userchrome.css file or a file called userchrome-example.css.

userchrome.css location

If it is the latter, just rename it to userchrome.css. Then open it using a text editor such as Notepad.

Now when you open it, you may see the following already there. Do NOT delete it :

/* * Do not remove the @namespace line — it’s required for correct functioning */ /* set default namespace to XUL */ @namespace url(”http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul”);

If you want to tweak your browser using the userchrome.css file, anything you add goes AFTER what you see above.

All you have to do is copy / paste the one you want into the userchrome.css file, save the file, close and re-start your Firefox browser and that’s it. Easy-peasy. As you will see, some of them can also be easily adapted to do other things too. If you can think of other ways to adapt any of them, let us know in the comments.

Please note that everything is reversible. So if you screw up, just delete what you copy/ pasted into your userchrome.css file. Then re-start your Firefox browser.

Userchrome.css tweaks

/* Remove Edit menu (if you already use all the keyboard shortcuts) */
#helpMenu, #edit-menu { display: none !important; }

NOTE! This one can be adapted to remove other menus such as the File menu, the Help menu and so on. Just remove “edit” and insert the appropriate words. Using this, I removed everything except the Bookmarks menu and the Tools menu.

/* Remove Back button when there’s nothing to go Back to */
#back-button[disabled="true"] { display: none; }

NOTE!This one can be adapted to also remove the Forward button.   Again, just remove “Back” and insert the appropriate words.

/* Remove Stop button when there’s nothing to Stop */
#stop-button[disabled="true"] { display: none; }

/* Remove Home button (never use it) */
#home-button { display: none; }

userchrome.css - remove home button

/* Remove Go button from address bar */
#go-button-stack, .search-go-button-stack { display: none !important; }

/*Remove magnifying glass button from search box*/
.search-go-button-stack { display: none !important; }

/* Remove the Bookmark Star */
#star-button { display: none !important; }

/* Place the sidebar on the right edge of the window */
window > hbox {
direction:rtl; } window > hbox > * {
direction:ltr; }

/* Display the Tab bar at the bottom */
#content > tabbox { -moz-box-direction: reverse; }

/* Eliminate the throbber and its annoying movement: */
#throbber-box { display: none !important; }

/* Show keyword input box when adding a bookmark */
#keywordRow { display: -moz-grid-line !important; }

/* Make the active tab wider */
tab[selected="true"] { min-width: 200px !important; }

/* Make inactive tabs partially transparent */
#content tab:not([selected="true"]) { -moz-opacity: 0.5 !important; }

/* Show tab favicon only on selected tab */
tab:not([selected="true"]) .tab-icon { display: none !important; }

/* Change the progress bar color */
.progress-bar {
-moz-appearance: none !important;
background-color: #660000 !important; }

/* Multi-Row Bookmarks Toolbar */
#bookmarks-ptf {display:block} #bookmarks-ptf toolbarseparator {display:inline}

/* Hide AutoComplete in Address Bar */
#PopupAutoComplete, .autocomplete-tree { visibility: hidden !important; display: none !important; }

/* Use a Background Image for the Toolbars */
menubar, toolbox, toolbar, .tabbrowser-tabs {
background-image: url(”background.gif”) !important; background-color: none !important; }

/* Change Color of Active tab */
tab{
-moz-appearance: none !important; }

tab[selected="true"] {
background-color: rgb(222,218,210) !important;
color: black !important; }

/* Change Color of Normal Tabs */
tab:not([selected="true"]) {
background-color: rgb(200,196,188) !important;
color: gray !important; }

/* Remove the Close Button from the Tab Bar */
.tabs-closebutton-box {
display: none !important;

/* Change Cursor for Links that Open in New Window */
:link[target="_blank"], :visited[target="_blank"],
:link[target="_new"],   :visited[target="_new"] {
cursor:  crosshair; }

/* Remove Web Search from Tools Menu */
menuitem[label="Web Search"] { display: none; }
menuitem[label="Web Search"] + menuseparator { display: none; }

This last one is particularly good because now you can clean up your Firefox menus and get rid of things that you don’t need in your menus. The Tools menu is especially guilty of this. For example, I have never needed the Error Console or Page Info, so using userchrome.css, I can now hide them from view. You also tend to get a lot of unwanted menu add-ons when you install new extensions or install new software.  You can now get rid of them by making a small addition to the userchrome file.

They are still there if you ever want to bring them back in the future. They are just now hidden so you don’t see them anymore. The menus are now nice and tidy, showing only the things you actually need right now.

However, saying that, there ARE some things in the menus that the userchrome.css file didn’t seem to be able to hide. There are a couple of things in the bookmarks menu that I wanted hidden and the userchrome.css file failed. There’s also an “Add To Evernote” option in Tools that I wanted hidden and that defeated userchrome.css too. So userchrome.css doesn’t seem to be 100% guaranteed to work.

Plus remember that the userchrome.css file can be copied and backed up to a portable USB drive. So if you use more than one computer, you can copy your userchrome preferences to another Firefox profile. Also, if you decide to re-install your Firefox browser one day, you can overwrite the new userchrome.css file with your old one containing your preferences and tweaks. It’s only a text file, nothing more.

One thing I haven’t been able to work out yet and maybe the readers can help out – how to change the colour of my Firefox browser by tweaking the userchrome.css file. I haven’t been able to find out how to do that. Does anyone know? If so, please put me out of my suffering by revealing all in the comments!

Picture Credit : Flod

(By) Mark O'Neill is the managing editor of MakeUseOf.

Enjoyed the article? Subscribe to MakeUseOf to get daily updates on new cool websites and programs in your email for free. You'll also get free printable cheat sheets to your favorite programs

Your Email:

Add MakeUseOf to:



18 Comments Add Comment
2009-01-15 16:58:10

You can also change you menu bar with the TinyMenu extension, and can add your bookmark to the rest of the menu bar with Smart Bookmarks Bar. Menu Editor also works for editing all of your menus.

2009-01-15 17:10:22

I’m not a fan of installing needless extensions as they slow down the browser. Tweaking the userchrome.css file removes the need to install extensions.

2009-01-15 19:40:30
Subscribed to comments via email

Excellent!
Tried putting Tabs at Bottom so Tabs and Window-placeholders are all at bottom – it saves a lot of confusion. Thanks!

imoDOTcom

2009-01-15 22:31:00
Sara

Ohhh, thank you so much!

2009-01-16 10:48:23
Michal

Is possible to move link bar + search bar + basic icons (back, home ans so on) to the bottom above status bar? And the same for bookmark bar?
Thanks

2009-01-17 01:07:42
krishna

Hi,
I have made the changes to the file and doesn’t see any change in look.
Is there any code to be added to tweak the firefox.

2009-03-12 11:38:49
kishore

did you have any active firefox browser window open while doing the changes to userChrome.css, then close all the firefox windows and open new one when you are ready with the changes

2009-01-17 17:45:38
Tad
Subscribed to comments via email

To locate the files, I had to go in this route:
C:\Program Files\Mozilla Firefox\Defaults\Profile\Chrome

In the folder I found “userChrome-example.css” and “userContent-example.css”

I copied+pasted “userChrome-example.css” to C:\Program Files\Mozilla Firefox\chrome, opened the file – added the tweaks – and saved it, then renamed it “userChrome.css”

After restarting Firefox, nothing has changed.

2009-01-18 08:08:48

Do you have more than one Windows user profile? If so, have you put the userchrome file in the correct Firefox profile in the correct Windows profile?

For example, if you have put the userchome file in the “default” Windows folder but you are using Windows under a “Tad” Windows profile then yes, it won’t show.

2009-01-18 21:05:02
Lil_ndn

Chrome Edit Plus, add-on, will allow you to place an icon on your toolbars to among other things directly open CCS file/folder. Also, there is an article at Mozillazine, “Awesome Bar…” article in Support forum & a script at userstyles.org for changing Fx;s browzer colours…been awhile, but seems both were good reads. FTW, freedom thru wisdom! WinXP SP3.

2009-01-19 05:46:03

Hello Mark O’Neil,

It’s nice info for tweak my firefox. However, except your methods i have easy methods to remove the buttons. This is my steps : Click View –> Toolbar –> Customize –> drop your mouse into the buttons which you want to remove and drag the button into windows of Customize buttons and your buttons will not showing in your bar menu.

Thanks

2009-01-19 18:18:57
Lil_ndn

Mark O;Neill, Check out these 2 links for the answer you seek,1 or both may prove to be enlightening:

http://forums.mozillazine.org/viewtopic.php?f=38&t=1039965 http://www.linnhe2.free-online.co.uk/fi … 20toolbars
FTW, freedom thru wisdom…ride safe and free!!!

2009-01-26 15:58:58
Tad
Subscribed to comments via email

I found the correct folder and made the changes now, thanks!

(it was a hidden file that I had to use the search feature in order to view, since it’s not viewable if I follow the path you provided)

2009-05-23 03:29:09
jed

You know,none of this editing is working. Is there something I am doing wrong? I keep getting the drop down bookmarks (sucks!!) and all the other ridiculous features I never needed but was suckered into upgrading to.

2009-05-24 04:54:34
jed

ok, the star went away, but I still can’t seem to get the auto complete or the drop down bookmarks arrow off the tool bar…please, help!!

2009-07-04 16:09:22
dj
Subscribed to comments via email

Regarding the Home button, why not right-click the toolbar and drag the Home button off? I do the same with the side-bar, right-click drag on or drag off. I use the All-In-One Sidebar and the Tiny menu adds-on. To supplement buttons I go to http://codefisher.org/. You can either down load his add-on or selective choose which buttons you want on the fly to install. I found your site looking for userchrome mods to hide those FF items that I can’t delete, like Bookmarks Toolbar. I haven’t found that yet. I think this is a keeper :-)

2009-08-19 13:25:43
Jerry
Subscribed to comments via email

I want to remove the ’subscribe to this page’ icon that is in the search bar like the ‘bookmarks star’ was. I added this line but to no avail:
/* Remove the subscribe to this page */
#subscibe to this page-button { display: none !important; }

I also can’t get rid of the Yahoo menu or button on the menu bar.

Any suggestions?

2009-09-17 06:43:55
Lee
Subscribed to comments via email

Great resource. I’ve used this to customize the hell out of FF3.5.2 and I love the new look/function. It’s also made me get into CSS more.

Reply

You may use <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> in your comment.