<?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: Share Bookmarks between IE and Firefox</title>
	<atom:link href="http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 01:07:56 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Awktane</title>
		<link>http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-902212</link>
		<dc:creator>Awktane</dc:creator>
		<pubDate>Tue, 20 Oct 2009 01:44:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-902212</guid>
		<description>Further on what I said above there is an addon that will remove it too called Menu Editor. This addon will allow you to also remove the context menu &quot;Add to bookmarks&quot; entries easily.</description>
		<content:encoded><![CDATA[<p>Further on what I said above there is an addon that will remove it too called Menu Editor. This addon will allow you to also remove the context menu &#8220;Add to bookmarks&#8221; entries easily.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Awktane</title>
		<link>http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-902207</link>
		<dc:creator>Awktane</dc:creator>
		<pubDate>Tue, 20 Oct 2009 01:31:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-902207</guid>
		<description>Bringing to life an ancient thread but this still works with firefox 3.5 with one modification. The entry added to your file should be

#bookmarksMenu {display:none !important;}</description>
		<content:encoded><![CDATA[<p>Bringing to life an ancient thread but this still works with firefox 3.5 with one modification. The entry added to your file should be</p>
<p>#bookmarksMenu {display:none !important;}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-475860</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 09 Sep 2008 14:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-475860</guid>
		<description>Any thoughts on sharing with Google Chrome as well now?  Also, hiding the Bookmarks Menu no longer works in the newest version of Firefox!</description>
		<content:encoded><![CDATA[<p>Any thoughts on sharing with Google Chrome as well now?  Also, hiding the Bookmarks Menu no longer works in the newest version of Firefox!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vince</title>
		<link>http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-113169</link>
		<dc:creator>Vince</dc:creator>
		<pubDate>Thu, 26 Apr 2007 02:43:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-113169</guid>
		<description>I had the same problem as JMH16 re removing bookmarks until I discovered there are several chrom directories, the one that works is:

is in C:\Documents and Settings\[User Name]\Application Data\Mozilla\Firefox\Profiles\[Profile Name]\chrome\

also, there is an example file there (and a copy with the carriage returns displaying properly here C:\Program Files\Mozilla Firefox\defaults\profile\chrome). These say to put the namespace line in. I have pasted my complete working file below for posterity:

/*
 * Edit this file and copy it as userChrome.css into your
 * profile-directory/chrome/
 * (which is in C:\Documents and Settings\[User Name]\Application Data\Mozilla\Firefox\Profiles\[Profile Name]\chrome\)
 */

/*
 * This file can be used to customize the look of Mozilla&#039;s user interface
 * You should consider using !important on rules which you want to
 * override default settings.
 */

/*
 * Do not remove the @namespace line -- it&#039;s required for correct functioning
 */

/* 
set default namespace to XUL 
 */

@namespace url(&quot;http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul&quot;); 

#bookmarks-menu {display:none !important;}

/*
 * Some possible accessibility enhancements:
 */
/*
 * Make all the default font sizes 20 pt:
 *
 * * {
 *   font-size: 20pt !important
 * }
 */
/*
 * Make menu items in particular 15 pt instead of the default size:
 *
 * menupopup &gt; * {
 *   font-size: 15pt !important
 * }
 */
/*
 * Give the Location (URL) Bar a fixed-width font
 *
 * #urlbar {
 *    font-family: monospace !important;
 * }
 */

/*
 * Eliminate the throbber and its annoying movement:
 *
 * #throbber-box {
 *   display: none !important;
 * }
 */

/*
 * For more examples see http://www.mozilla.org/unix/customizing.html
 */</description>
		<content:encoded><![CDATA[<p>I had the same problem as JMH16 re removing bookmarks until I discovered there are several chrom directories, the one that works is:</p>
<p>is in C:\Documents and Settings\[User Name]\Application Data\Mozilla\Firefox\Profiles\[Profile Name]\chrome\</p>
<p>also, there is an example file there (and a copy with the carriage returns displaying properly here C:\Program Files\Mozilla Firefox\defaults\profile\chrome). These say to put the namespace line in. I have pasted my complete working file below for posterity:</p>
<p>/*<br />
 * Edit this file and copy it as userChrome.css into your<br />
 * profile-directory/chrome/<br />
 * (which is in C:\Documents and Settings\[User Name]\Application Data\Mozilla\Firefox\Profiles\[Profile Name]\chrome\)<br />
 */</p>
<p>/*<br />
 * This file can be used to customize the look of Mozilla&#8217;s user interface<br />
 * You should consider using !important on rules which you want to<br />
 * override default settings.<br />
 */</p>
<p>/*<br />
 * Do not remove the @namespace line &#8212; it&#8217;s required for correct functioning<br />
 */</p>
<p>/*<br />
set default namespace to XUL<br />
 */</p>
<p>@namespace url(&#8221;http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul&#8221;); </p>
<p>#bookmarks-menu {display:none !important;}</p>
<p>/*<br />
 * Some possible accessibility enhancements:<br />
 */<br />
/*<br />
 * Make all the default font sizes 20 pt:<br />
 *<br />
 * * {<br />
 *   font-size: 20pt !important<br />
 * }<br />
 */<br />
/*<br />
 * Make menu items in particular 15 pt instead of the default size:<br />
 *<br />
 * menupopup &gt; * {<br />
 *   font-size: 15pt !important<br />
 * }<br />
 */<br />
/*<br />
 * Give the Location (URL) Bar a fixed-width font<br />
 *<br />
 * #urlbar {<br />
 *    font-family: monospace !important;<br />
 * }<br />
 */</p>
<p>/*<br />
 * Eliminate the throbber and its annoying movement:<br />
 *<br />
 * #throbber-box {<br />
 *   display: none !important;<br />
 * }<br />
 */</p>
<p>/*<br />
 * For more examples see <a href="http://www.mozilla.org/unix/customizing.html" rel="nofollow">http://www.mozilla.org/unix/customizing.html</a><br />
 */</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vince</title>
		<link>http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-112710</link>
		<dc:creator>Vince</dc:creator>
		<pubDate>Tue, 24 Apr 2007 08:27:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-112710</guid>
		<description>hah hah, ok - where I used html, guess what. so, what that said is, trying inserting spaces to get them to display: &amp; became &amp; a m p ; and &#039; became &amp; # 3 9 ;</description>
		<content:encoded><![CDATA[<p>hah hah, ok &#8211; where I used html, guess what. so, what that said is, trying inserting spaces to get them to display: &amp; became &amp; a m p ; and &#8216; became &amp; # 3 9 ;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vince</title>
		<link>http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-112706</link>
		<dc:creator>Vince</dc:creator>
		<pubDate>Tue, 24 Apr 2007 08:24:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-112706</guid>
		<description>There is a minor complication in that ie6 exports favorites to Firefox 2 but Firefox doesn&#039;t reciprocate. The main issue was the 100+ I used an &amp; symbol, which got converted to &amp; and there was also a bunch of &#039; which became &#039; (from memory). This was both in the names themselves and the text items which were typically site generated.

It was easy enough to fix this, just opened the file in an html editor (I used Front Page) and very soon the replace all tool fixed it.

There were a few favorites created that had ridiculously long strings nothing to do with what I put there, just deleted these!</description>
		<content:encoded><![CDATA[<p>There is a minor complication in that ie6 exports favorites to Firefox 2 but Firefox doesn&#8217;t reciprocate. The main issue was the 100+ I used an &amp; symbol, which got converted to &amp; and there was also a bunch of &#8216; which became &#39; (from memory). This was both in the names themselves and the text items which were typically site generated.</p>
<p>It was easy enough to fix this, just opened the file in an html editor (I used Front Page) and very soon the replace all tool fixed it.</p>
<p>There were a few favorites created that had ridiculously long strings nothing to do with what I put there, just deleted these!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nfiken</title>
		<link>http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-109439</link>
		<dc:creator>nfiken</dc:creator>
		<pubDate>Fri, 20 Apr 2007 21:42:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-109439</guid>
		<description>what about the bookmarktoolbar or whatever it&#039;s called, the one showing all the bookmarks just above the page I guess that one won&#039;t work?</description>
		<content:encoded><![CDATA[<p>what about the bookmarktoolbar or whatever it&#8217;s called, the one showing all the bookmarks just above the page I guess that one won&#8217;t work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JMH16</title>
		<link>http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-108644</link>
		<dc:creator>JMH16</dc:creator>
		<pubDate>Fri, 20 Apr 2007 03:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-108644</guid>
		<description>for some reason can&#039;t remove Bookmarks from the menu. any more details about the userChrome.css file
maybe a screenshot of what the exact text would look like??</description>
		<content:encoded><![CDATA[<p>for some reason can&#8217;t remove Bookmarks from the menu. any more details about the userChrome.css file<br />
maybe a screenshot of what the exact text would look like??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gnome</title>
		<link>http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-107155</link>
		<dc:creator>gnome</dc:creator>
		<pubDate>Fri, 13 Apr 2007 10:19:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/04/12/share-bookmarks-between-ie-and-firefox/#comment-107155</guid>
		<description>Very handy!</description>
		<content:encoded><![CDATA[<p>Very handy!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
