<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>ShareThis</title>
	<link>http://support.sharethis.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Mon, 18 Jan 2010 15:46:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3</generator>
	<language>en</language>
			<item>
		<title>How do I get the ShareThis Bar?</title>
		<link>http://support.sharethis.com/developers/developers-faq/142</link>
		<comments>http://support.sharethis.com/developers/developers-faq/142#comments</comments>
		<pubDate>Fri, 08 Jan 2010 20:48:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[FAQ]]></category>

		<guid isPermaLink="false">http://support.sharethis.com/developers/developers-faq/142</guid>
		<description><![CDATA[With this implementation, publishers are now able to present a select number of social web services “outside” of the button and directly on the page, while still leveraging the ShareThis tracking technology and maintaining the ShareThis experience.  For example, a publisher can include Email, Facebook and Twitter buttons on the page next to the [...]

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "How do I get the ShareThis Bar?",
	url: "http://support.sharethis.com/developers/developers-faq/142"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>With this implementation, publishers are now able to present a select number of social web services “outside” of the button and directly on the page, while still leveraging the ShareThis tracking technology and maintaining the ShareThis experience.  For example, a publisher can include Email, Facebook and Twitter buttons on the page next to the ShareThis button.</p>
<p>In order to begin, please follow the steps below:</p>
<h4>Step 1</h4>
<p>To begin, you will need to include ShareThis JS code in the header of your page.  Below is an example of the code.<br />
<em>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://w.sharethis.com/button/sharethis.js#publisher=00000000-0000-0000-0000-000000000000&amp;type=website&amp;button=false&#8221;&gt;&lt;/script&gt;</em></p>
<h4>Step 2</h4>
<p>In order to display and track the social web services outside of the ShareThis button, you will need to define the HTML elements on the page.  The services which can be “pulled out” of the ShareThis widget are Email, Facebook, Digg, Twitter and Yahoo! Buzz.  Below is an example of what your code should look like for each service.<br />
<em>&lt;a id=&#8221;ck_email&#8221; class=&#8221;chicklet&#8221; href=&#8221;javascript:void(0);&#8221;&gt;&lt;img src=&#8221;http://farm1.static.flickr.com/92/211633454_5a625e2d1d.jpg&#8221; /&gt;Email&lt;/a&gt;<br />
&lt;a id=&#8221;ck_facebook&#8221; class=&#8221;chicklet&#8221; href=&#8221;javascript:void(0);&#8221;&gt;&lt;img src=&#8221;http://www.facebook.com/favicon.ico&#8221; /&gt;Facebook&lt;/a&gt;<br />
&lt;a id=&#8221;ck_digg&#8221; class=&#8221;chicklet&#8221; href=&#8221;javascript:void(0);&#8221;&gt;&lt;img src=&#8221;http://digg.com/favicon.ico&#8221; /&gt;Digg&lt;/a&gt;<br />
&lt;a id=&#8221;ck_twitter&#8221; class=&#8221;chicklet&#8221; href=&#8221;javascript:void(0);&#8221;&gt;&lt;img src=&#8221;http://twitter.com/favicon.ico&#8221; /&gt;Twitter&lt;/a&gt;<br />
&lt;a id=&#8221;ck_ybuzz&#8221; class=&#8221;chicklet&#8221; href=&#8221;javascript:void(0);&#8221;&gt;&lt;img src=&#8221;http://buzz.yahoo.com/favicon.ico&#8221; /&gt;Buzz Up!&lt;/a&gt;<br />
&lt;a id=&#8221;ck_sharethis&#8221; class=&#8221;chicklet&#8221; href=&#8221;javascript:void(0);&#8221;&gt;&lt;img src=&#8221;http://sharethis.com/favicon.ico&#8221; /&gt;ShareThis&lt;/a&gt;</em><br />
The above example is using standard images for each service; you are able to define the image by changing the source location.</p>
<h4>Step 3</h4>
<p>Finally, you will need to define the shared object via SHARETHIS.addEntry() call and attach the appropriate button and social web service chicklets.  Below is the code that needs to go in the &lt;body&gt; of your page.<br />
<em>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
var shared_object = SHARETHIS.addEntry({<br />
title: &#8220;My Article&#8221;,<br />
url: &#8220;http://domain.com/article.html&#8221;<br />
});</em></p>
<p><em>shared_object.attachButton(document.getElementById(&#8221;ck_sharethis&#8221;));<br />
shared_object.attachChicklet(&#8221;email&#8221;, document.getElementById(&#8221;ck_email&#8221;));<br />
shared_object.attachChicklet(&#8221;facebook&#8221;, document.getElementById(&#8221;ck_facebook&#8221;));<br />
shared_object.attachChicklet(&#8221;digg&#8221;, document.getElementById(&#8221;ck_digg&#8221;));<br />
shared_object.attachChicklet(&#8221;twitter&#8221;, document.getElementById(&#8221;ck_twitter&#8221;));<br />
shared_object.attachChicklet(&#8221;yahoo_buzz&#8221;, document.getElementById(&#8221;ck_ybuzz&#8221;));<br />
&lt;/script&gt;</em></p>
<h4>Sample HTML</h4>
<p><em>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;ShareThis Chicklet Test&lt;/title&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://w.sharethis.com/button/sharethis.js#publisher=00000000-0000-0000-0000-000000000000&amp;type=website&amp;button=false&#8221;&gt;&lt;/script&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
* {<br />
font-family: Arial, Helvetica, sans-serif;<br />
font-size: 12px;<br />
}</em></p>
<p><em>a.chicklet img {<br />
border: 0;<br />
height: 16px;<br />
width: 16px;<br />
margin-right: 3px;<br />
vertical-align: middle;<br />
}</em></p>
<p><em>a.chicklet {<br />
height: 16px;<br />
line-height: 16px;<br />
margin-right: 6px;<br />
}<br />
&lt;/style&gt;<br />
&lt;/head&gt;</em></p>
<p><em>&lt;body&gt;<br />
&lt;a id=&#8221;ck_email&#8221; class=&#8221;chicklet&#8221; href=&#8221;javascript:void(0);&#8221;&gt;&lt;img src=&#8221;http://farm1.static.flickr.com/92/211633454_5a625e2d1d.jpg&#8221; /&gt;Email&lt;/a&gt;<br />
&lt;a id=&#8221;ck_facebook&#8221; class=&#8221;chicklet&#8221; href=&#8221;javascript:void(0);&#8221;&gt;&lt;img src=&#8221;http://www.facebook.com/favicon.ico&#8221; /&gt;Facebook&lt;/a&gt;<br />
&lt;a id=&#8221;ck_digg&#8221; class=&#8221;chicklet&#8221; href=&#8221;javascript:void(0);&#8221;&gt;&lt;img src=&#8221;http://digg.com/favicon.ico&#8221; /&gt;Digg&lt;/a&gt;<br />
&lt;a id=&#8221;ck_twitter&#8221; class=&#8221;chicklet&#8221; href=&#8221;javascript:void(0);&#8221;&gt;&lt;img src=&#8221;http://twitter.com/favicon.ico&#8221; /&gt;Twitter&lt;/a&gt;<br />
&lt;a id=&#8221;ck_ybuzz&#8221; class=&#8221;chicklet&#8221; href=&#8221;javascript:void(0);&#8221;&gt;&lt;img src=&#8221;http://buzz.yahoo.com/favicon.ico&#8221; /&gt;Buzz Up!&lt;/a&gt;<br />
&lt;a id=&#8221;ck_sharethis&#8221; class=&#8221;chicklet&#8221; href=&#8221;javascript:void(0);&#8221;&gt;&lt;img src=&#8221;http://sharethis.com/favicon.ico&#8221; /&gt;ShareThis&lt;/a&gt;</em></p>
<p><em>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
var shared_object = SHARETHIS.addEntry({<br />
title: document.title,<br />
url: document.location.href<br />
});</em></p>
<p><em>shared_object.attachButton(document.getElementById(&#8221;ck_sharethis&#8221;));<br />
shared_object.attachChicklet(&#8221;email&#8221;, document.getElementById(&#8221;ck_email&#8221;));<br />
shared_object.attachChicklet(&#8221;facebook&#8221;, document.getElementById(&#8221;ck_facebook&#8221;));<br />
shared_object.attachChicklet(&#8221;digg&#8221;, document.getElementById(&#8221;ck_digg&#8221;));<br />
shared_object.attachChicklet(&#8221;twitter&#8221;, document.getElementById(&#8221;ck_twitter&#8221;));<br />
shared_object.attachChicklet(&#8221;yahoo_buzz&#8221;, document.getElementById(&#8221;ck_ybuzz&#8221;));<br />
&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</em><br />
This is a basic overview of how the ShareThis bar works, you&#8217;ll need to customize the code to fit your needs and the design of your website or blog.</p>
<p><a href="http://sharethis.com/item?publisher=0&title=How+do+I+get+the+ShareThis+Bar%3F&url=http%3A%2F%2Fsupport.sharethis.com%2Fdevelopers%2Fdevelopers-faq%2F142">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://support.sharethis.com/developers/developers-faq/142/feed</wfw:commentRss>
		</item>
		<item>
		<title>How do I disable the widget opening on mouseover?</title>
		<link>http://support.sharethis.com/publishers/publishers-faq/new-widget/141</link>
		<comments>http://support.sharethis.com/publishers/publishers-faq/new-widget/141#comments</comments>
		<pubDate>Mon, 14 Dec 2009 21:50:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Common questions about the new widget design]]></category>

		<guid isPermaLink="false">http://support.sharethis.com/publishers/publishers-faq/new-widget/141</guid>
		<description><![CDATA[The widget opens on mouseover by default.  To change this, add &#8216;&#38;onmouseover=false&#8221; to your ShareThis widget code.  Here&#8217;s an example of what it might look like:
&#60;script type="text/javascript" src="http://w.sharethis.com/button/sharethis.js#publisher=123456-7890a-bcdefg-hijkl&#38;type=website&#38;onmouseover=false"&#62;&#60;/script&#62;


<script type="text/javascript">
SHARETHIS.addEntry({
	title: "How do I disable the widget opening on mouseover?",
	url: "http://support.sharethis.com/publishers/publishers-faq/new-widget/141"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>The widget opens on mouseover by default.  To change this, add &#8216;&amp;onmouseover=false&#8221; to your ShareThis widget code.  Here&#8217;s an example of what it might look like:</p>
<p><code>&lt;script type="text/javascript" src="http://w.sharethis.com/button/sharethis.js#publisher=123456-7890a-bcdefg-hijkl&amp;type=website&amp;onmouseover=false"&gt;&lt;/script&gt;</code></p>
<p><a href="http://sharethis.com/item?publisher=0&title=How+do+I+disable+the+widget+opening+on+mouseover%3F&url=http%3A%2F%2Fsupport.sharethis.com%2Fpublishers%2Fpublishers-faq%2Fnew-widget%2F141">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://support.sharethis.com/publishers/publishers-faq/new-widget/141/feed</wfw:commentRss>
		</item>
		<item>
		<title>How can I use the shar.es URL to see the underlying domain?</title>
		<link>http://support.sharethis.com/social/get_started/116</link>
		<comments>http://support.sharethis.com/social/get_started/116#comments</comments>
		<pubDate>Sat, 23 May 2009 03:20:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Getting Started]]></category>

		<guid isPermaLink="false">http://support.sharethis.com/uncategorized/116</guid>
		<description><![CDATA[As part of the ShareThis product offering to our publishers, we provide analytics on how much traffic we generated for each share from their site. In order to properly track this sharing activity, we have implemented our own URL shortening service.
Users and publishers can continue to share normally from any web page or their browser [...]

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "How can I use the shar.es URL to see the underlying domain?",
	url: "http://support.sharethis.com/social/get_started/116"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>As part of the ShareThis product offering to our publishers, we provide analytics on how much traffic we generated for each share from their site. In order to properly track this sharing activity, we have implemented our own URL shortening service.</p>
<p>Users and publishers can continue to share normally from any web page or their browser plugin/bookmarklet without any action taken on your part.</p>
<p>If you wish to display information to users about the URL&#8217;s source domain, then please use one for the options below.</p>
<p><strong>Option 1:</strong>Parse a query parameter on a URL that allows us to indicate the domain from which the shared URL originates:</p>
<p><strong>Example:</strong> http://www.yoursite.com ?url=http://share.es/xyz&amp;title=ExampleArticle&amp;domain=example.com<br />
Sharing services site (e.g. digg, delicious, technorati, etc) = http://www.yoursite.com<br />
Shortened URL shared to yoursite.com = http://share.es/xyz<br />
Title of the URL article = ExampleArticle<br />
Domain of the URL article = Example.com</p>
<p><strong>Option 2:</strong>Get the URL domain from a valid URL check:<br />
Using the above example, the shared URL, http://share.es/xyz, already points to the domain example.com.<br />
You should be able to identify the domain example.com when it resolves to http://shar.es/xyz.</p>
<p>If you have any questions, then please contact us at feedback@sharethis.com</p>
<p><a href="http://sharethis.com/item?publisher=0&title=How+can+I+use+the+shar.es+URL+to+see+the+underlying+domain%3F&url=http%3A%2F%2Fsupport.sharethis.com%2Fsocial%2Fget_started%2F116">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://support.sharethis.com/social/get_started/116/feed</wfw:commentRss>
		</item>
		<item>
		<title>How can I get my service in the ShareThis widget?</title>
		<link>http://support.sharethis.com/social/get_started/115</link>
		<comments>http://support.sharethis.com/social/get_started/115#comments</comments>
		<pubDate>Sat, 23 May 2009 02:45:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Getting Started]]></category>

		<guid isPermaLink="false">http://support.sharethis.com/social/social-faq/getting_started-social-faq-social/115</guid>
		<description><![CDATA[submit a service


<script type="text/javascript">
SHARETHIS.addEntry({
	title: "How can I get my service in the ShareThis widget?",
	url: "http://support.sharethis.com/social/get_started/115"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p><a href="http://sharethis.com/publishers/submit_service/">submit a service</a></p>
<p><a href="http://sharethis.com/item?publisher=0&title=How+can+I+get+my+service+in+the+ShareThis+widget%3F&url=http%3A%2F%2Fsupport.sharethis.com%2Fsocial%2Fget_started%2F115">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://support.sharethis.com/social/get_started/115/feed</wfw:commentRss>
		</item>
		<item>
		<title>How do I import my contacts?</title>
		<link>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/112</link>
		<comments>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/112#comments</comments>
		<pubDate>Thu, 26 Mar 2009 18:04:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Common questions about the new widget design]]></category>

		<guid isPermaLink="false">http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/112</guid>
		<description><![CDATA[Users are able to import their contacts by clicking on the “Import Contacts” link located in the Send and Contact Manager screens.



<script type="text/javascript">
SHARETHIS.addEntry({
	title: "How do I import my contacts?",
	url: "http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/112"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>Users are able to import their contacts by clicking on the “Import Contacts” link located in the Send and Contact Manager screens.</p>
<p><img src="http://support.sharethis.com/wp-content/uploads/2009/08/import-contacts.jpg" /></p>
<p><a href="http://sharethis.com/item?publisher=0&title=How+do+I+import+my+contacts%3F&url=http%3A%2F%2Fsupport.sharethis.com%2Fusers%2Fusers-faq%2Fnew-widget-users-faq-users%2F112">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/112/feed</wfw:commentRss>
		</item>
		<item>
		<title>How do I access my Contact Manager?</title>
		<link>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/111</link>
		<comments>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/111#comments</comments>
		<pubDate>Thu, 26 Mar 2009 18:03:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Common questions about the new widget design]]></category>

		<guid isPermaLink="false">http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/111</guid>
		<description><![CDATA[When you are signed into your account, you are able to access your contact manager in a couple of places.  On the initial ShareThis screen, you can click on the “Contacts” link in the upper right corner.  In addition, by clicking the Contact Manager icon on the Send screen, you will be taken to your [...]

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "How do I access my Contact Manager?",
	url: "http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/111"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>When you are signed into your account, you are able to access your contact manager in a couple of places.  On the initial ShareThis screen, you can click on the “Contacts” link in the upper right corner.  In addition, by clicking the Contact Manager icon on the Send screen, you will be taken to your contact manager.</p>
<p><a href="http://sharethis.com/item?publisher=0&title=How+do+I+access+my+Contact+Manager%3F&url=http%3A%2F%2Fsupport.sharethis.com%2Fusers%2Fusers-faq%2Fnew-widget-users-faq-users%2F111">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/111/feed</wfw:commentRss>
		</item>
		<item>
		<title>What is the “Recent” feature?</title>
		<link>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/110</link>
		<comments>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/110#comments</comments>
		<pubDate>Thu, 26 Mar 2009 18:03:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Common questions about the new widget design]]></category>

		<guid isPermaLink="false">http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/110</guid>
		<description><![CDATA[As registered ShareThis users share content, we will display the three most recently used email and Text Message addresses. This provides a quicker sharing experience for more frequent sharing. If you are registered with ShareThis, your recent contacts appear above the To field.



<script type="text/javascript">
SHARETHIS.addEntry({
	title: "What is the “Recent” feature?",
	url: "http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/110"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>As registered ShareThis users share content, we will display the three most recently used email and Text Message addresses. This provides a quicker sharing experience for more frequent sharing. If you are registered with ShareThis, your recent contacts appear above the To field.</p>
<p><img src="http://support.sharethis.com/wp-content/uploads/2009/08/recent.jpg" /></p>
<p><a href="http://sharethis.com/item?publisher=0&title=What+is+the+%E2%80%9CRecent%E2%80%9D+feature%3F&url=http%3A%2F%2Fsupport.sharethis.com%2Fusers%2Fusers-faq%2Fnew-widget-users-faq-users%2F110">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/110/feed</wfw:commentRss>
		</item>
		<item>
		<title>What is the ShareBox?</title>
		<link>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/109</link>
		<comments>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/109#comments</comments>
		<pubDate>Thu, 26 Mar 2009 18:03:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Common questions about the new widget design]]></category>

		<guid isPermaLink="false">http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/109</guid>
		<description><![CDATA[The ShareBox is a place where registered ShareThis users’ shared content is stored.  If you want to retrieve something you have shared in the past, share it again or would like to tag and organize your shares, this can all be done within the ShareBox.  In addition, we now allow users to save and tag [...]

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "What is the ShareBox?",
	url: "http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/109"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>The ShareBox is a place where registered ShareThis users’ shared content is stored.  If you want to retrieve something you have shared in the past, share it again or would like to tag and organize your shares, this can all be done within the ShareBox.  In addition, we now allow users to save and tag content directly to their ShareBox from within the widget for easy searching later.</p>
<p><img src="http://support.sharethis.com/wp-content/uploads/2009/07/sharebox.jpg" align="middle" height="701" width="611" /></p>
<p>If you do not have a ShareThis account, please <a href="http://sharethis.com/users/register/">create your own today</a>.</p>
<p><a href="http://sharethis.com/item?publisher=0&title=What+is+the+ShareBox%3F&url=http%3A%2F%2Fsupport.sharethis.com%2Fusers%2Fusers-faq%2Fnew-widget-users-faq-users%2F109">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/109/feed</wfw:commentRss>
		</item>
		<item>
		<title>Will my existing ShareThis account work with the new widget?</title>
		<link>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/108</link>
		<comments>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/108#comments</comments>
		<pubDate>Thu, 26 Mar 2009 18:02:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Common questions about the new widget design]]></category>

		<guid isPermaLink="false">http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/108</guid>
		<description><![CDATA[You do not need to register for a new account. Your contacts and sharing history will all be maintained with the new widget design.


<script type="text/javascript">
SHARETHIS.addEntry({
	title: "Will my existing ShareThis account work with the new widget?",
	url: "http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/108"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>You do not need to register for a new account. Your contacts and sharing history will all be maintained with the new widget design.</p>
<p><a href="http://sharethis.com/item?publisher=0&title=Will+my+existing+ShareThis+account+work+with+the+new+widget%3F&url=http%3A%2F%2Fsupport.sharethis.com%2Fusers%2Fusers-faq%2Fnew-widget-users-faq-users%2F108">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://support.sharethis.com/users/users-faq/new-widget-users-faq-users/108/feed</wfw:commentRss>
		</item>
		<item>
		<title>Where did my tabs go?</title>
		<link>http://support.sharethis.com/publishers/publishers-faq/new-widget/107</link>
		<comments>http://support.sharethis.com/publishers/publishers-faq/new-widget/107#comments</comments>
		<pubDate>Thu, 26 Mar 2009 18:02:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Common questions about the new widget design]]></category>

		<guid isPermaLink="false">http://support.sharethis.com/publishers/publishers-faq/new-widget/107</guid>
		<description><![CDATA[Flattening the widget to provide a tab-free environment allows users to see all the sharing options you offer upon opening the widget. This should optimize and increase sharing on your site.


<script type="text/javascript">
SHARETHIS.addEntry({
	title: "Where did my tabs go?",
	url: "http://support.sharethis.com/publishers/publishers-faq/new-widget/107"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>Flattening the widget to provide a tab-free environment allows users to see all the sharing options you offer upon opening the widget. This should optimize and increase sharing on your site.</p>
<p><a href="http://sharethis.com/item?publisher=0&title=Where+did+my+tabs+go%3F&url=http%3A%2F%2Fsupport.sharethis.com%2Fpublishers%2Fpublishers-faq%2Fnew-widget%2F107">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://support.sharethis.com/publishers/publishers-faq/new-widget/107/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
