<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: 20+ Ways to Tweak Firefox with the Userchrome.css File</title>
	<atom:link href="http://www.makeuseof.com/tag/tweak-your-firefox-with-the-userchromecss-file/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com/tag/tweak-your-firefox-with-the-userchromecss-file/</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Sat, 11 Feb 2012 04:28:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: John L. Galt</title>
		<link>http://www.makeuseof.com/tag/tweak-your-firefox-with-the-userchromecss-file/#comment-434391</link>
		<dc:creator>John L. Galt</dc:creator>
		<pubDate>Tue, 26 Jan 2010 23:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=10691#comment-434391</guid>
		<description>Just thought you might like a couple more that I use in every profile I make for all the different versions of Fx that I use / test.

***For those using Console^2, the better Error Console, here are tweaks for custom overlays to make it look better:

/*Custom js overlays for Error Console 2 by MR Tech
http://forums.mozillazine.org/viewtopic.php?p=1761436#1761436*/

.console-row[type=&quot;error&quot;],
.console-row[type=&quot;exception&quot;],
.console-row[type=&quot;error&quot;] .console-row-icon,
.console-row[type=&quot;exception&quot;] .console-row-icon {
background-color: #FFECEC !important;
}

.console-row[type=&quot;warning&quot;],
.console-row[type=&quot;warning&quot;] .console-row-icon {
background-color: #FFFFE0 !important;
}

.console-row[type=&quot;message&quot;],
.console-row[type=&quot;message&quot;] .console-row-icon {
background-color: #F5F5F5 !important;
}

.console-row {
border-bottom: 1px solid ThreedShadow !important;

***Instead of just removing the Stop button, how about showing the Stop button and / or Reload button, as a single button set, based upon if the page is loading or already loaded?

/* Show Stop and Reload buttons smartly*/
#stop-button[disabled] {
  display: none !important;
}
#stop-button:not([disabled]) + #reload-button {
  display: none !important;
}

***Invisible Menubar - rather than using an extension, use this set of tweaks to make it &#039;slide&#039; off-screen, and appear when you hover over the area (If you then move all of the icons / buttons and the address bar and search bar to the top level Menu Bar, you in effect get everything on a single menu bar, and can then hide the Address bar {via right click on menu bar area --&gt; Customize} and get more real estate):

/*::::::::::::::Invisible Menubar::::::::::::

How to use it: Move all your Navigation Toolbar items 
(back/forward buttons, address bar, search bar etc. 
from the navigation toolbar to the Menu Bar, either 
on the right side or left side of the Menu Items. 
Now past this code in userChrome.css and restart your 
browser. You will no longer see the menu items. Now 
hover at the right/left edge of the menu bar (whichever 
side the menu items were on) and the menu items will 
appear. You can now hide the navigation bar and save 
vertical space

::::::::::::::*/

#menubar-items {
  padding-left: 5px !important;
}

#menubar-items &gt; #main-menubar {
  margin-left: -9000px !important;
}

#menubar-items:hover &gt; #main-menubar {
  margin-left: 0 !important;
}

#menubar-items:hover {
  background-image: none !important; padding-left:0 !important;
}

***Use Spellbound to check your spelling in a dialog box?  remvoe the native Spell check contet menu item so you can right click any text area --&gt; Press &quot;S&quot; to easily initiate spell check:

/* Never show Spell check in Context menu
/*Useful for users of SpellBound II */

menuitem[label=&quot;Check Spelling&quot;] {
  display: none !important;
}

***Hide the Personal toolbar, and show it only on hovering over the menu area (again, more real estate):

/*Hide the Personal Toolbar, show on hover*/

#PersonalToolbar {display: none;}
#navigator-toolbox:hover &gt; #PersonalToolbar {display: -moz-box;}</description>
		<content:encoded><![CDATA[<p>Just thought you might like a couple more that I use in every profile I make for all the different versions of Fx that I use / test.</p>
<p>***For those using Console^2, the better Error Console, here are tweaks for custom overlays to make it look better:</p>
<p>/*Custom js overlays for Error Console 2 by MR Tech<br />
<a href="http://forums.mozillazine.org/viewtopic.php?p=1761436#1761436*/" rel="nofollow">http://forums.mozillazine.org/viewtopic.php?p=1761436#1761436*/</a></p>
<p>.console-row[type="error"],<br />
.console-row[type="exception"],<br />
.console-row[type="error"] .console-row-icon,<br />
.console-row[type="exception"] .console-row-icon {<br />
background-color: #FFECEC !important;<br />
}</p>
<p>.console-row[type="warning"],<br />
.console-row[type="warning"] .console-row-icon {<br />
background-color: #FFFFE0 !important;<br />
}</p>
<p>.console-row[type="message"],<br />
.console-row[type="message"] .console-row-icon {<br />
background-color: #F5F5F5 !important;<br />
}</p>
<p>.console-row {<br />
border-bottom: 1px solid ThreedShadow !important;</p>
<p>***Instead of just removing the Stop button, how about showing the Stop button and / or Reload button, as a single button set, based upon if the page is loading or already loaded?</p>
<p>/* Show Stop and Reload buttons smartly*/<br />
#stop-button[disabled] {<br />
  display: none !important;<br />
}<br />
#stop-button:not([disabled]) + #reload-button {<br />
  display: none !important;<br />
}</p>
<p>***Invisible Menubar &#8211; rather than using an extension, use this set of tweaks to make it &#8216;slide&#8217; off-screen, and appear when you hover over the area (If you then move all of the icons / buttons and the address bar and search bar to the top level Menu Bar, you in effect get everything on a single menu bar, and can then hide the Address bar {via right click on menu bar area &#8211;&gt; Customize} and get more real estate):</p>
<p>/*::::::::::::::Invisible Menubar::::::::::::</p>
<p>How to use it: Move all your Navigation Toolbar items<br />
(back/forward buttons, address bar, search bar etc.<br />
from the navigation toolbar to the Menu Bar, either<br />
on the right side or left side of the Menu Items.<br />
Now past this code in userChrome.css and restart your<br />
browser. You will no longer see the menu items. Now<br />
hover at the right/left edge of the menu bar (whichever<br />
side the menu items were on) and the menu items will<br />
appear. You can now hide the navigation bar and save<br />
vertical space</p>
<p>::::::::::::::*/</p>
<p>#menubar-items {<br />
  padding-left: 5px !important;<br />
}</p>
<p>#menubar-items &gt; #main-menubar {<br />
  margin-left: -9000px !important;<br />
}</p>
<p>#menubar-items:hover &gt; #main-menubar {<br />
  margin-left: 0 !important;<br />
}</p>
<p>#menubar-items:hover {<br />
  background-image: none !important; padding-left:0 !important;<br />
}</p>
<p>***Use Spellbound to check your spelling in a dialog box?  remvoe the native Spell check contet menu item so you can right click any text area &#8211;&gt; Press &#8220;S&#8221; to easily initiate spell check:</p>
<p>/* Never show Spell check in Context menu<br />
/*Useful for users of SpellBound II */</p>
<p>menuitem[label="Check Spelling"] {<br />
  display: none !important;<br />
}</p>
<p>***Hide the Personal toolbar, and show it only on hovering over the menu area (again, more real estate):</p>
<p>/*Hide the Personal Toolbar, show on hover*/</p>
<p>#PersonalToolbar {display: none;}<br />
#navigator-toolbox:hover &gt; #PersonalToolbar {display: -moz-box;}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ali</title>
		<link>http://www.makeuseof.com/tag/tweak-your-firefox-with-the-userchromecss-file/#comment-432944</link>
		<dc:creator>Ali</dc:creator>
		<pubDate>Tue, 19 Jan 2010 10:41:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=10691#comment-432944</guid>
		<description>Hey I made a youtube video for changing firefox using userchrome CSS:
http://www.youtube.com/watch?v=qiiFDtFM8Z0</description>
		<content:encoded><![CDATA[<p>Hey I made a youtube video for changing firefox using userchrome CSS:<br />
<a href="http://www.youtube.com/watch?v=qiiFDtFM8Z0" rel="nofollow">http://www.youtube.com/watch?v=qiiFDtFM8Z0</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MorningStar</title>
		<link>http://www.makeuseof.com/tag/tweak-your-firefox-with-the-userchromecss-file/#comment-423870</link>
		<dc:creator>MorningStar</dc:creator>
		<pubDate>Sun, 06 Dec 2009 16:24:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=10691#comment-423870</guid>
		<description>/* Rss Feed icon,*/

#feed-button { display: none !important; }


This removes the RSS Button.</description>
		<content:encoded><![CDATA[<p>/* Rss Feed icon,*/</p>
<p>#feed-button { display: none !important; }</p>
<p>This removes the RSS Button.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.makeuseof.com/tag/tweak-your-firefox-with-the-userchromecss-file/#comment-405167</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Thu, 17 Sep 2009 11:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=10691#comment-405167</guid>
		<description>Great resource.  I&#039;ve used this to customize the hell out of FF3.5.2 and I love the new look/function.  It&#039;s also made me get into CSS more.</description>
		<content:encoded><![CDATA[<p>Great resource.  I&#8217;ve used this to customize the hell out of FF3.5.2 and I love the new look/function.  It&#8217;s also made me get into CSS more.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry</title>
		<link>http://www.makeuseof.com/tag/tweak-your-firefox-with-the-userchromecss-file/#comment-399805</link>
		<dc:creator>Jerry</dc:creator>
		<pubDate>Wed, 19 Aug 2009 18:25:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=10691#comment-399805</guid>
		<description>I want to remove the &#039;subscribe to this page&#039; icon that is in the search bar like the &#039;bookmarks star&#039; 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&#039;t get rid of the Yahoo menu or button on the menu bar.  

Any suggestions?</description>
		<content:encoded><![CDATA[<p>I want to remove the &#8216;subscribe to this page&#8217; icon that is in the search bar like the &#8216;bookmarks star&#8217; was.  I added this line but to no avail:<br />
/* Remove the subscribe to this page */<br />
#subscibe to this page-button { display: none !important; }</p>
<p>I also can&#8217;t get rid of the Yahoo menu or button on the menu bar.  </p>
<p>Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dj</title>
		<link>http://www.makeuseof.com/tag/tweak-your-firefox-with-the-userchromecss-file/#comment-392379</link>
		<dc:creator>dj</dc:creator>
		<pubDate>Sat, 04 Jul 2009 21:09:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=10691#comment-392379</guid>
		<description>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&#039;t delete, like Bookmarks Toolbar. I haven&#039;t found that yet. I think this is a keeper :-)</description>
		<content:encoded><![CDATA[<p>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 <a href="http://codefisher.org/" rel="nofollow">http://codefisher.org/</a>. 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&#8217;t delete, like Bookmarks Toolbar. I haven&#8217;t found that yet. I think this is a keeper <img src="http://main.makeuseoflimited.netdna-cdn.com/wp-includes/images/smilies/icon_smile.gif?323f2c" alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jed</title>
		<link>http://www.makeuseof.com/tag/tweak-your-firefox-with-the-userchromecss-file/#comment-387417</link>
		<dc:creator>jed</dc:creator>
		<pubDate>Sun, 24 May 2009 09:54:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=10691#comment-387417</guid>
		<description>ok, the star went away, but I still can&#039;t seem to get the auto complete or the drop down bookmarks arrow off the tool bar...please, help!!</description>
		<content:encoded><![CDATA[<p>ok, the star went away, but I still can&#8217;t seem to get the auto complete or the drop down bookmarks arrow off the tool bar&#8230;please, help!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jed</title>
		<link>http://www.makeuseof.com/tag/tweak-your-firefox-with-the-userchromecss-file/#comment-387326</link>
		<dc:creator>jed</dc:creator>
		<pubDate>Sat, 23 May 2009 08:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=10691#comment-387326</guid>
		<description>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.</description>
		<content:encoded><![CDATA[<p>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.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kishore</title>
		<link>http://www.makeuseof.com/tag/tweak-your-firefox-with-the-userchromecss-file/#comment-378721</link>
		<dc:creator>kishore</dc:creator>
		<pubDate>Thu, 12 Mar 2009 16:38:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=10691#comment-378721</guid>
		<description>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</description>
		<content:encoded><![CDATA[<p>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</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tad</title>
		<link>http://www.makeuseof.com/tag/tweak-your-firefox-with-the-userchromecss-file/#comment-371255</link>
		<dc:creator>Tad</dc:creator>
		<pubDate>Mon, 26 Jan 2009 20:58:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=10691#comment-371255</guid>
		<description>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&#039;s not viewable if I follow the path you provided)</description>
		<content:encoded><![CDATA[<p>I found the correct folder and made the changes now, thanks!</p>
<p>(it was a hidden file that I had to use the search feature in order to view, since it&#8217;s not viewable if I follow the path you provided)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (Requested URI is rejected)
Database Caching 1/5 queries in 0.004 seconds using apc
Object Caching 304/304 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-11 05:13:03 -->
