<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dreamsites.com... making your website better</title>
	<atom:link href="http://dreamsites.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dreamsites.com</link>
	<description>Helping You Make More Money with Your Website</description>
	<lastBuildDate>Tue, 04 May 2010 12:51:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>It&#8217;s Tricky: Putting a Facebook &#8220;Fan/Like&#8221; Box on Your Site&#8230;</title>
		<link>http://dreamsites.com/2010/05/04/its-tricky-putting-a-facebook-fanlike-box-on-your-site/</link>
		<comments>http://dreamsites.com/2010/05/04/its-tricky-putting-a-facebook-fanlike-box-on-your-site/#comments</comments>
		<pubDate>Tue, 04 May 2010 12:49:26 +0000</pubDate>
		<dc:creator>Dream Master</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[iframes]]></category>
		<category><![CDATA[like box]]></category>
		<category><![CDATA[Website Marketing]]></category>
		<category><![CDATA[xfbml]]></category>

		<guid isPermaLink="false">http://dreamsites.com/?p=42</guid>
		<description><![CDATA[Want to know how to get one of those cool Facebook "fan" (now "like") boxes on your website? We recently took the time to add one to a customers site and thought we would share how to do it... ]]></description>
			<content:encoded><![CDATA[<p>Some of you have wondered how people get those cool Facebook fan boxes on their actual website.  Facebook tries to make it easy for you, but even their &#8220;easy&#8221; approach is pretty tricky at best.  I recently had a customer ask me to put a &#8220;fan&#8221; box on his site and tried this out myself for the first time.  Let me share with you what works, and what doesn&#8217;t, because if you do it wrong you will end up with something stupid on your page that looks like this&#8230;<br />
<span id="more-42"></span><br />
<strong>WHAT YOU DONT WANT:</strong><a href="http://dreamsites.com/wp-content/uploads/2010/05/facebook_iframe_wrong.jpg"></a></p>
<p><a href="http://dreamsites.com/wp-content/uploads/2010/05/facebook_iframe_wrong.jpg"><img class="size-medium wp-image-48 alignnone" title="facebook_iframe_wrong" src="http://dreamsites.com/wp-content/uploads/2010/05/facebook_iframe_wrong-210x300.jpg" alt="" width="210" height="300" /></a></p>
<p><strong><em>What is this?</em></strong> It&#8217;s called an iframe, an iframe displays content from another site inside a framed box.  Sort of like looking through a window to another website.  In this case I have just added the &#8220;iframe&#8221; code Facebook told me to use.  It appeared that this would be easy&#8230;. just paste in the code and I would be done right? Wrong. I ended up with this stupid looking box on my site.  At first I thought maybe Facebook hasn&#8217;t recognized my page yet since I just added the code.  But after waiting a few minutes I realized that this was not the case and it was just wrong and wasn&#8217;t working.</p>
<p><strong>So after a little trial and error I got it to work correctly&#8230; so it looked like this:</strong></p>
<p><a href="http://dreamsites.com/wp-content/uploads/2010/05/facebook_fanbox_correct.jpg"><img class="alignnone size-full wp-image-55" title="facebook_fanbox_correct" src="http://dreamsites.com/wp-content/uploads/2010/05/facebook_fanbox_correct.jpg" alt="" width="212" height="296" /></a></p>
<p><strong>Here is what I did to get things to look right: </strong><em> (I will soon make a video on this available)</em></p>
<p><strong>Step 1: Edit Your Facebook Page</strong><br />
Go to your page on Facebook and click on &#8220;Edit Page&#8221;.</p>
<p><strong>Step 2: Getting to Promote with Like Box</strong><br />
On the right side of your edit screen, click on &#8220;Promote with a Link Box&#8221;.  This takes you to the page where the code in generated for your &#8220;like&#8221; box.</p>
<p><strong>Step 3: Generate and Add the Code to Your Site:</strong><br />
Set the options you want to display in the like box, such as updates, size, etc. Then Click on &#8220;Get Code&#8221;.  What is displayed is two types of code. One is an iframe, and the other is xfbml (facebook html to non coders). When I used the iframe code and entered it into my page it didn&#8217;t work.  If I choose &#8220;xfbml&#8221; then it won&#8217;t work either without even more code added to my site. You will notice that it says &#8220;XFBML is more flexible than iframes, but requires you use the <a href="http://developers.facebook.com/docs/reference/javascript/"> JavaScript SDK</a>.&#8221;  If you click on this Javascript link&#8230; most of you will be totally confused so rather then explain what this is I will just show you what you need to add.</p>
<p>Copy the xfbml code to a text file somewhere on your machine.  I use a tool called textpad, but notepad on Windows works fine.  You will also want to copy the code below into your text file as well.  Both pieces of code will need to be added to your webpage in order for this to work.<br />
<span class="blu_highlight">&lt;div id=&#8221;fb-root&#8221;&gt;&lt;/div&gt;<br />
&lt;script&gt;<br />
window.fbAsyncInit = function() {<br />
FB.init({appId: &#8216;your app id&#8217;, status: true, cookie: true,<br />
xfbml: true});<br />
};<br />
(function() {<br />
var e = document.createElement(&#8217;script&#8217;); e.async = true;<br />
e.src = document.location.protocol +<br />
&#8216;//connect.facebook.net/en_US/all.js&#8217;;<br />
document.getElementById(&#8216;fb-root&#8217;).appendChild(e);<br />
}());<br />
&lt;/script&gt;</span></p>
<p>Copy the above &lt;script&gt; tag into the footer of your webpage html code.  Copy and paste xfbml code you generated into your pages code where you want the box to appear. On out blog I added it to the &#8220;sidebar&#8221; under the widgets area of Wordpress.</p>
<p><strong>Lost?</strong><br />
If you are totally lost that is ok. We are here to help you.  Contact us here at Dreamsites at: 248-230-5028 or email us @: <a href="mailto:sales@dreamsites.com">sales@dreamsites.com</a>.  <a href="mailto:sales@dreamsites.com"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dreamsites.com/2010/05/04/its-tricky-putting-a-facebook-fanlike-box-on-your-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sweet! &#8211; Photoshop CS5 Content Aware Fill</title>
		<link>http://dreamsites.com/2010/04/05/photoshop-cs5-content-aware-fill/</link>
		<comments>http://dreamsites.com/2010/04/05/photoshop-cs5-content-aware-fill/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 11:56:53 +0000</pubDate>
		<dc:creator>Dream Master</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Content Aware Fill]]></category>
		<category><![CDATA[CS5]]></category>
		<category><![CDATA[Photo Editing]]></category>

		<guid isPermaLink="false">http://dreamsites.com/?p=35</guid>
		<description><![CDATA[For anyone that has ever used Adobe Photoshop for anything from fixing photos to mocking up a web-page, you know it can be time consuming to get what the look you want. Adobe has come up with a new fill tool that will amaze you no matter what your experience is, this tool alone is worth the upgrade to CS5 in the coming months.]]></description>
			<content:encoded><![CDATA[<p>For anyone that has ever used Adobe Photoshop for anything from fixing photos to mocking up a web-page, you know it can be time consuming to get what you want.</p>
<p>I myself have been using Photoshop since version 3 when I first started making cool background for my college notebooks. Using all the filters in Photoshop, meshing photos together, creating cool looking text effects (Who doesn&#8217;t remember the diamond text from those Master P &#8211; CDs?)  Anyway&#8230; it looks like the folks at Adobe are coming out with something really cool that makes even me want to upgrade.  It&#8217;s called &#8220;Content Aware Fill&#8221;.  The time it will save some designers makes this one tool, an automatic &#8220;buy&#8221; in my book. <span id="more-35"></span></p>
<p><strong>Highlights of what this can do&#8230;</strong></p>
<p>1. Want to take out a tree in the middle of your picture? No Problem</p>
<p>2. Want to match the color of the sky on side of the photo to the other side? No problem</p>
<p>These are just a couple of examples&#8230; watch the video below to get a full overview.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/NH0aEp1oDOI&amp;hl=en_US&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="405" src="http://www.youtube.com/v/NH0aEp1oDOI&amp;hl=en_US&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>View a full size version of this video out on Adobe CS5 Launch page at Adobe.com</strong></p>
<p><a title="View the Photoshop Content Aware Video Here" href="http://cs5launch.adobe.com/" target="_blank">Click here to video</a>, then click on &#8220;Content Aware &#8211; Sneak Peak&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamsites.com/2010/04/05/photoshop-cs5-content-aware-fill/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video: Getting people to link to your site</title>
		<link>http://dreamsites.com/2010/01/16/video-getting-people-to-link-to-your-site/</link>
		<comments>http://dreamsites.com/2010/01/16/video-getting-people-to-link-to-your-site/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 02:50:22 +0000</pubDate>
		<dc:creator>Dream Master</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[inbound marketing]]></category>
		<category><![CDATA[link juice]]></category>
		<category><![CDATA[linking]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://dreamsites.com/?p=16</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/eez2_Jgir50&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/eez2_Jgir50&amp;hl=en_US&amp;fs=1&amp;" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://dreamsites.com/2010/01/16/video-getting-people-to-link-to-your-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Link Juice&#8221; &#8211; What is it?</title>
		<link>http://dreamsites.com/2010/01/16/link-juice-what-is-it/</link>
		<comments>http://dreamsites.com/2010/01/16/link-juice-what-is-it/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 18:15:51 +0000</pubDate>
		<dc:creator>Dream Master</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>

		<guid isPermaLink="false">http://dreamsites.com/?p=11</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://dreamsites.com/2010/01/16/link-juice-what-is-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Update in Progress</title>
		<link>http://dreamsites.com/2010/01/16/hello-world/</link>
		<comments>http://dreamsites.com/2010/01/16/hello-world/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 17:40:28 +0000</pubDate>
		<dc:creator>Dream Master</dc:creator>
				<category><![CDATA[Ask The Guru]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Website Marketing]]></category>

		<guid isPermaLink="false">http://dreamsites.com/?p=1</guid>
		<description><![CDATA[We are currently working on updating our site&#8230; please visit us again soon.
The new site will include articles, links, videos, and more about how to get the most out of your website.
]]></description>
			<content:encoded><![CDATA[<p>We are currently working on updating our site&#8230; please visit us again soon.</p>
<p>The new site will include articles, links, videos, and more about how to get the most out of your website.</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamsites.com/2010/01/16/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
