<?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>Big Cloud Media</title>
	<atom:link href="http://www.bigcloudmedia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bigcloudmedia.com</link>
	<description>Custom Wordpress, Websites and Web Apps</description>
	<lastBuildDate>Tue, 18 Jun 2013 01:47:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>WordPress Coding: get_the_content() with formatting</title>
		<link>http://www.bigcloudmedia.com/thebuzz/wordpress-coding-get_the_content-with-formatting/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-coding-get_the_content-with-formatting</link>
		<comments>http://www.bigcloudmedia.com/thebuzz/wordpress-coding-get_the_content-with-formatting/#comments</comments>
		<pubDate>Tue, 18 Jun 2013 01:45:14 +0000</pubDate>
		<dc:creator>Web-Design and Development</dc:creator>
				<category><![CDATA[Helpful Info]]></category>
		<category><![CDATA[The Buzz]]></category>
		<category><![CDATA[Wordpress Code]]></category>
		<category><![CDATA[Wordpress help]]></category>
		<category><![CDATA[Wordpress theme]]></category>

		<guid isPermaLink="false">http://www.bigcloudmedia.com/?p=1844</guid>
		<description><![CDATA[A simple Wordpress theme function with the flexibility of get_the_content() with the option to perserve the formatting like the_content();]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.bigcloudmedia.com/wp-content/uploads/2012/07/wplogo.png"><img class="alignright size-medium wp-image-946" alt="We can customize your wordpress site to meet your needs." src="http://www.bigcloudmedia.com/wp-content/uploads/2012/07/wplogo-300x248.png" width="300" height="248" /></a>If you have used the WordPress function get_the_content() in your theme, you have surely run into the issue of lost formatting in the output.  Normally you would use the_content() to display content but the problem with this function is it outputs immediately making it less than ideal if you want to do something with the data before you output.</p>
<p>Below is a simple function that allows the best of both worlds: the flexibility of get_the_content() (where you control when the output happens) with the option to perserve the formatting like the_content();</p>
<h2><strong>The function (place within your functions.php theme file):</strong></h2>
<p>function get_content_with_formatting($content){<br />
$content = apply_filters(&#8216;the_content&#8217;, $content);<br />
$content = str_replace(&#8216;]]&gt;&#8217;, &#8216;]]&amp;gt;&#8217;, $content);<br />
return $content;<br />
}</p>
<h2><strong>Usage example (use within <a title="Wordpress Codex - The Loop" href="http://codex.wordpress.org/The_Loop" target="_blank">The Loop</a>) :</strong></h2>
<p>&lt;?php</p>
<p>// in your functions.php<br />
function custom_loop(){<br />
// customize the loop<br />
$params = array(&#8216;post_type&#8217; =&gt; &#8216;post&#8217;,'posts_per_page&#8217; =&gt; 5);</p>
<p>// setup the custom loop using WP_Query<br />
$new_query = new WP_Query($params);<br />
// the custom loop<br />
if($new_query-&gt;have_posts()): while ($new_query-&gt;have_posts()) : $new_query-&gt;the_post();$id = get_the_ID();<br />
$content = get_the_content();<br />
<strong>$content_formatted = get_content_with_formatting($content);</strong></p>
<p>$return.=&#8217;.$title.&#8217;;<br />
$return.=&#8217;.$content_formatted.&#8217;;<br />
endwhile;<br />
endif;<br />
} ?&gt;</p>
<p>&lt;?php // place below code in an output template file such as home.php to display the post content<br />
echo custom_loop(); ?&gt;</p>
<p>To see the original forum answer this post is based on go <a title="Apply filters to get_the_content() - WordPress.org Forum" href="http://wordpress.org/support/topic/apply-filters-to-get_the_content" target="_blank">here</a> (props to <strong>jonradio </strong>for the answer).</p>
<p>If you have any questions about how to use this function in your own wordpress theme or just questions in general, post them below in the comments.  Feel free to use this function in your own WordPress theme.</p>
<p>Thank you for reading and have a great day.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigcloudmedia.com/thebuzz/wordpress-coding-get_the_content-with-formatting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO: Focus on relevant, quality content</title>
		<link>http://www.bigcloudmedia.com/thebuzz/seo-focus-on-relevant-quality-content/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=seo-focus-on-relevant-quality-content</link>
		<comments>http://www.bigcloudmedia.com/thebuzz/seo-focus-on-relevant-quality-content/#comments</comments>
		<pubDate>Mon, 21 Jan 2013 05:06:35 +0000</pubDate>
		<dc:creator>Web-Design and Development</dc:creator>
				<category><![CDATA[Helpful Info]]></category>
		<category><![CDATA[The Buzz]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[relevant content]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bigcloudmedia.com/?p=1740</guid>
		<description><![CDATA[Keywords mean nothing unless you back them up with content.  Improve your SEO by creating quality, relevant content for the search engines and your visitors]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.bigcloudmedia.com/wp-content/uploads/2013/01/Seo-blocks.gif"><img class="size-full wp-image-1766 aligncenter" style="border: 0px solid white;" alt="Seo-blocks" src="http://www.bigcloudmedia.com/wp-content/uploads/2013/01/Seo-blocks.gif" width="523" height="403" /></a></p>
<p>It is a fact that SEO is becoming <strong>less about keywords</strong> and <strong>more about relevant content</strong>.</p>
<blockquote><p>&#8220;The  <a href="http://googleblog.blogspot.com/2011/02/finding-more-high-quality-sites-in.html">Panda update</a> [to the Google ranking algorithm] was designed to improve the user experience by <em><span style="text-decoration: underline;">catching and </span><span style="text-decoration: underline;"><em>d</em>emoting low-quality sites that did not provide useful original content</span></em> or otherwise add much value. At the same time, it <em><span style="text-decoration: underline;">provided better rankings for high-quality sites—sites with original content</span></em> and information such as research, in-depth reports, thoughtful analysis and so on.&#8221; ~ <a title="How Google Search Works" href="http://www.google.com/competition/howgooglesearchworks.html" target="_blank">How Google Search Works</a></p></blockquote>
<p>This shift in focus makes perfect sense since keywords are meaningless unless the content is there to support them.  The search engines, namely Google, have picked up on the content quality and relevance as an important search rank indicator and are doing something about it.</p>
<h2>SEO the wrong way: Cheat the system.</h2>
<p>I know it&#8217;s tempting but don&#8217;t engage in iffy SEO keyword and back link schemes. They game the system and can get you penalized. Google and the other search engines know about the games / schemes and actively look for ways to prevent them from skewing the search results.</p>
<blockquote><p>Ask yourself:  <em>Do you really want to risk your search rank on a company who wants you to pay them to cheat the system for you?</em></p></blockquote>
<p>Doesn&#8217;t sound quite right does it?</p>
<h2>SEO the right way: Give &#8216;em what they want.</h2>
<p>And what do the search engines want?</p>
<blockquote><p><strong>Relevant, quality content!</strong></p></blockquote>
<p>You can publish relevant content through your website, blog, news feed, article writing, guest blogging, etc.  If you create great content and then use the keywords to help identify it, your on the right track.  If you guest blog, or write articles, you can link back to your site and create quality back links for the search engines to pick up as well.</p>
<h2>But don&#8217;t forget:</h2>
<p>Oh yeah, with all this talk of search engines, don&#8217;t forget your visitor. Relevant quality content helps them too. They are the ones who will ultimately decide to come back for more, so make sure your optimized content is visitor friendly too.</p>
<h1><strong>The Takeaway:  Improve your SEO by creating quality, relevant content for the search engines and your visitors.</strong></h1>
<p>&nbsp;</p>
<p>If you have comments, questions, opinions, thoughts or you just want to say something about this topic, post a comment below.  Your comments are welcome here. <img src='http://www.bigcloudmedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<div class="alert alert-success">
<p>As always, if you need additional help with your web strategy or anything else website, web-app or WordPress related, <strong><a title="Contact us for all of your Website, WordPress or Web-App needs" href="http://www.bigcloudmedia.com/#request-a-quote-right-now">give me a shout</a></strong>.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bigcloudmedia.com/thebuzz/seo-focus-on-relevant-quality-content/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>5 questions to help you distinguish yourself online</title>
		<link>http://www.bigcloudmedia.com/thebuzz/5-questions-to-help-you-distinguish-yourself-online/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=5-questions-to-help-you-distinguish-yourself-online</link>
		<comments>http://www.bigcloudmedia.com/thebuzz/5-questions-to-help-you-distinguish-yourself-online/#comments</comments>
		<pubDate>Thu, 17 Jan 2013 21:16:02 +0000</pubDate>
		<dc:creator>Web-Design and Development</dc:creator>
				<category><![CDATA[Helpful Info]]></category>
		<category><![CDATA[The Buzz]]></category>
		<category><![CDATA[distinguish yourself]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.bigcloudmedia.com/?p=1455</guid>
		<description><![CDATA[Ask yourself these 5 questions to help you discover how to distinguish yourself online. Then, act on the answers and make it happen.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.bigcloudmedia.com/wp-content/uploads/2013/01/Burj_dubai_3.11.08_crop.jpg"><img class="alignright size-full wp-image-1716" style="margin-left: 10px; margin-right: 10px;" title="Distinguish yourself online" alt="By Burj_dubai_3.11.08.jpg: Aheilner derivative work: Andrea (Burj_dubai_3.11.08.jpg) [CC-BY-SA-3.0 (http://creativecommons.org/licenses/by-sa/3.0/), FAL or GFDL (http://www.gnu.org/copyleft/fdl.html)], via Wikimedia Commons" src="http://www.bigcloudmedia.com/wp-content/uploads/2013/01/Burj_dubai_3.11.08_crop.jpg" /></a></p>
<h2>&#8220;How do I get more business online?&#8221;</h2>
<p>I see this question written on business forums and website forums all over the place this same question and I believe I have an answer:</p>
<blockquote>
<h2 style="text-align: left;"><strong>Distinguish yourself.</strong></h2>
</blockquote>
<p>If you have an idea for a better way for your customers to purchase your products online, build it and see what happens.  If no one in your industry has done it yet, you have a good chance to be the first and thus, you distinguish yourself.  If your competition is selling online products but their site does not adapt to the mobile screen, make yours mobile friendly and distinguish yourself.  If no one else in your industry blogs (or blogs well), start blogging and distinguish yourself.</p>
<blockquote>
<h3>In all of these situations, the underlying theme is to do something your competition is not doing or fill a need that your competition is not filling online.</h3>
</blockquote>
<p>That being said, ask yourself these 5 questions:</p>
<ol>
<li>If you had no knowledge of your company, would you be compelled by your website <strong>to act</strong>?</li>
<li>Can you see a <strong>memorable</strong> difference between your competition&#8217;s website and your website?</li>
<li>What makes your company different? <strong> Is your website highlighting this difference?</strong></li>
<li>Is your website available and easy to use, regardless of device?</li>
<li>Is your website a convenient way for your website visitors to act on your products/services online?</li>
</ol>
<p>These five questions are meant to help you get your mindset right so you can start distinguishing yourself online in a way that will produce results for you.</p>
<p>All of this being said, after you have explored these questions, <strong>ACT on the answers</strong>.  If you answered negatively to any of these questions, those areas would be a good place to start improving.  Keep in mind that knowing about a problem only does so much for you.  <strong>You must then act to solve the problem</strong>.</p>
<p>Feel like speaking your mind?  Awesome!  We would love you too. Leave a comment below or send us a message with your thoughts, opinions, etc.</p>
<div class="alert alert-success">
<p>As always, if you need additional help with your web strategy or anything else website, web-app or WordPress related, <strong><a title="Contact us for all of your Website, WordPress or Web-App needs" href="http://www.bigcloudmedia.com/#request-a-quote-right-now">give me a shout</a></strong>.</p>
<p>Have a great day.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bigcloudmedia.com/thebuzz/5-questions-to-help-you-distinguish-yourself-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Benefits of 301 Redirects</title>
		<link>http://www.bigcloudmedia.com/thebuzz/the-benefits-of-301-redirects/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-benefits-of-301-redirects</link>
		<comments>http://www.bigcloudmedia.com/thebuzz/the-benefits-of-301-redirects/#comments</comments>
		<pubDate>Mon, 14 Jan 2013 18:31:05 +0000</pubDate>
		<dc:creator>Web-Design and Development</dc:creator>
				<category><![CDATA[Helpful Info]]></category>
		<category><![CDATA[The Buzz]]></category>
		<category><![CDATA[301 Redirect]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[redirection]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bigcloudmedia.com/?p=1583</guid>
		<description><![CDATA[Useful when changing domains or link structure, the 301 redirect is a status code that, when applied to a web page, automatically "redirects" the visitor to a different designated page.  This also indicates to the search engines, etc. that the page has moved permanently and that they need to update their records with the new address. Read on for the benefits...]]></description>
				<content:encoded><![CDATA[<p>Consider the following 301 redirect situation:</p>
<p>You do a website update and switch from Squarespace to WordPress and in doing so, your blog link structure changes from:</p>
<blockquote><p>www.domain.com<span style="color: #ff0000;">/?category=This%20Category</span></p></blockquote>
<p>to:</p>
<blockquote><p>www.domain.com<span style="color: #ff0000;">/blog/category/this-category</span></p></blockquote>
<p>After the switch is complete, any link to the old blog post (with the old link structure) would break and instead go to a nasty &#8220;could not load page&#8221; error.  <strong>Imagine this scenario playing out across the old site and all of the pages and posts on it.  </strong>Ugh!</p>
<p>As you can imagine, this would cause major issues for visitors who previously saved links to your posts and also for Google, who would now see all of your old site links, it previously indexed, as broken.  Double Ugh!!</p>
<p>Don&#8217;t worry though, all is not lost.  There is a way to avoid the chaos.</p>
<blockquote><p><strong>Enter the 301 Redirect to help you save your web traffic and keep Google and your visitors happy.</strong></p></blockquote>
<p>Using the power of the 301 Redirect, you would tell the browser to redirect the visitor to the new site address when they visit the old site address.  Awesome right?!<strong><br />
</strong></p>
<h3>What is the 301 redirect?</h3>
<p>According to <a title="Google Webmaster - 301 Redirects" href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=93633" target="_blank">Google Webmaster</a>:</p>
<blockquote><p>&#8220;If you need to change the URL of a page as it is shown in search engine results, we recommended that you use a server-side 301 redirect. This is the best way to ensure that users and search engines are directed to the correct page. The 301 status code means that a page has permanently moved to a new location.&#8221;</p></blockquote>
<p>The 301 redirect is a status code that, when applied to a web page, automatically &#8220;redirects&#8221; the visitor to a different designated page.  This also indicates to the search engines, etc. that the page has moved permanently and that they need to update their records with the new address.<br />
<a href="http://www.bigcloudmedia.com/wp-content/uploads/2013/01/Redirect_Barnstar_Hires.png"><img class="size-medium wp-image-1645 alignleft" style="margin-left: 10px; margin-right: 10px; border: none;" alt="Redirect_Barnstar_Hires" src="http://www.bigcloudmedia.com/wp-content/uploads/2013/01/Redirect_Barnstar_Hires-300x284.png" width="300" height="284" /></a></p>
<h3>Why do you need to use the 301 Redirect?</h3>
<p>As mentioned before, the 301 Redirect will automatically redirect traffic to different website address and do so without nasty error messages and is very useful when changing domains or changing your link structure.  An added benefit: in most cases, <strong>the redirect is seamless</strong> which improves the user experience.</p>
<p>Using this method will also prevent you from loosing traffic and rank due to the old links to your site not working anymore.</p>
<h3>How do you setup 301 Redirects?</h3>
<p>The method for setting up 301 redirects varies based on your hosting and website etc.  but if you have a self-hosted wordpress site, you can try the <a title="Redirection WordPress Plugin for 301 Redirects" href="http://wordpress.org/extend/plugins/redirection/" target="_blank">Redirection</a> plugin.  It updates your .htaccess file for you and makes it super easy to setup the 301 redirects for your site.  This is my plugin of choice (mainly because it is super easy and so far, quite reliable) but I am sure there are several other ones out there for you to try out.</p>
<p>If you are not self-hosting wordpress, I would recommend contacting your host to see how best to setup your 301 redirects.  They may have a tool for 301 Redirects which you can use to set them up for your site.</p>
<h3><span style="color: #ff0000;">Important Note: You have to know where you&#8217;ve been to know where your going</span></h3>
<p>In order for the 301 Redirect to work, you have to have the old address that you will redirect visitors from, as well as the new address to redirect visitors to. <strong> Without the old address, your redirects won&#8217;t work.</strong></p>
<p>Also, ideally, you want redirect the visitor to the same (or similar) page or post at the new site, as the original, so the experience is seamless   Redirecting all of the old site links to your new homepage is not recommended from a user experience standpoint.</p>
<h3>Take away on 301 Redirects</h3>
<p>Use them and love them.  They will help you keep your site traffic and Google standing in the case of a domain change or link structure change and will keep your visitors going to the right pages.</p>
<div class="alert alert-success">
<p>As always, if you need additional help with 301 Redirects or anything else website or WordPress related, <a title="Contact us for all of your Website, WordPress or Web-App needs" href="http://www.bigcloudmedia.com/#request-a-quote-right-now">give me a shout</a> or leave it in the comment box.  Your thoughts are welcome here. <img src='http://www.bigcloudmedia.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>Have a great day.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bigcloudmedia.com/thebuzz/the-benefits-of-301-redirects/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Big Cloud Media &#8211; Weekly Infographic</title>
		<link>http://www.bigcloudmedia.com/thebuzz/big-cloud-media-weekly-infographic/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=big-cloud-media-weekly-infographic</link>
		<comments>http://www.bigcloudmedia.com/thebuzz/big-cloud-media-weekly-infographic/#comments</comments>
		<pubDate>Sat, 10 Nov 2012 02:03:05 +0000</pubDate>
		<dc:creator>Web-Design and Development</dc:creator>
				<category><![CDATA[The Buzz]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[infographic]]></category>

		<guid isPermaLink="false">http://www.bigcloudmedia.com/?p=1594</guid>
		<description><![CDATA[We are starting a weekly infographic series to highlight some of the infographic awesomeness we come across in our online meanderings. In case you are not familiar with what an infographic is, an infographic is the graphic representation of a large amount of data or different types of data.  Think of it like this:  You have a 30 min. report that you have to present to your board of directors and they only have 5 min. for you to get the point across.  Instead of laying out all of the details of the entire report, you pick out the most [...]]]></description>
				<content:encoded><![CDATA[<p>We are starting a weekly infographic series to highlight some of the infographic awesomeness we come across in our online meanderings.</p>
<p>In case you are not familiar with what an infographic is, an infographic is the graphic representation of a large amount of data or different types of data.  Think of it like this:  You have a 30 min. report that you have to present to your board of directors and they only have 5 min. for you to get the point across.  Instead of laying out all of the details of the entire report, you pick out the most important ones and display them visually using charts, graphs, graphics, etc.   This visual display, or infographic, would take care of much of the broad explanation and allow you to get the point across in 5 min.  See below for an actual infographic from the website visual.ly.</p>
<p>This weeks infographic is &#8220;Demystifying Amazon Web Services&#8221; and it is a doozy.</p>
<p style="text-align: center;"><a href="http://bit.ly/SSn9Cd"><img class="visually_embed_infographic aligncenter rounded-image" title="Demystifying Amazon Web Services - Infographic" src="http://thumbnails.visually.netdna-cdn.com/DemystifyingAmazonWebServices_5033fc53770bc_w587.jpg" alt="Demystifying Amazon Web Services - Infographic" width="587" height="3068" /></a></p>
<p> Thanks for checking out this weeks infographic.  If you have a comment or opinion, let it be known and post it below.</p>
<p>As always, if you need anything WordPress, Website or Web App, <a title="Contact us about anything WordPress, Website or Web App." href="http://www.bigcloudmedia.com/#request-a-quote-right-now" target="_blank">give us a shout</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigcloudmedia.com/thebuzz/big-cloud-media-weekly-infographic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google recommends &#8220;Responsive&#8221; web design for smartphone optimized website</title>
		<link>http://www.bigcloudmedia.com/thebuzz/google-recommends-responsive-for-smartphone-optimized-website/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-recommends-responsive-for-smartphone-optimized-website</link>
		<comments>http://www.bigcloudmedia.com/thebuzz/google-recommends-responsive-for-smartphone-optimized-website/#comments</comments>
		<pubDate>Mon, 29 Oct 2012 17:09:43 +0000</pubDate>
		<dc:creator>Web-Design and Development</dc:creator>
				<category><![CDATA[Helpful Info]]></category>
		<category><![CDATA[The Buzz]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[mobile search]]></category>
		<category><![CDATA[responsive web design]]></category>
		<category><![CDATA[smartphone optimized website]]></category>

		<guid isPermaLink="false">http://www.bigcloudmedia.com/?p=1492</guid>
		<description><![CDATA[For smartphone optimized websites, "responsive" web design is Google's recommended configuration.  Read more to find out why Google takes this position and what you can do about it.]]></description>
				<content:encoded><![CDATA[<p>I was recently asked which website configuration to use in order for a website to be smartphone optimized and thus, I was off on a quest to find the answers.  Below are my findings.  <strong>Enjoy.</strong></p>
<p style="text-align: center;"><a title="Google recommends responsive web design for smartphone optimized websites" href="http://commons.wikimedia.org/wiki/File%3AA_Companion.jpg"><img class="aligncenter  wp-image-1565 rounded-image" title="By R. Gopakumar [1] (Own work) [CC-BY-SA-3.0 (http://creativecommons.org/licenses/by-sa/3.0)], via Wikimedia Commons" src="http://www.bigcloudmedia.com/wp-content/uploads/2012/10/A_Companion1.jpg" alt="A Companion" width="600" height="470" /></a></p>
<h2>The situation:</h2>
<p>To put things in context, there are generally three different configurations for a smartphone optimized website that Google supports:</p>
<ol>
<li><strong>Responsive web design:</strong>  This is where the website and it&#8217;s content will adjust to the screen it is being viewed on.  For an example of responsive website design, look at this site on your smartphone or tablet, or just grab the browser window and shrink the site down.  Notice, this site also uses the same url&#8217;s on the mobile devices (i.e. smartphones) as it does on the regular browser and the different views are created using a mixture of CSS and Javascript.  Same site, different views, with each view optimized for each device.</li>
<li><strong>Sites that serve the same urls but provide different HTML to each device:</strong>  An example of this would be a website that is served as a flash site in the desktop browser and as a regular HTML site in the mobile browser with both versions using the same URLs.</li>
<li><strong>Sites that have a desktop version and a separate mobile version:</strong>   An example of this would be  www.examplewebsite.com and m.examplewebsite.com.  Two different versions of the site, with different 2 different urls.</li>
</ol>
<p>Also, it should be noted that Google defines smartphones as &#8220;Phones with browsers that render normal desktop pages, at least to some extent. This category includes recent mobile browsers that can render HTML5, and covers a diversity of devices, such Android-based phones and iPhones.&#8221; - <a title="Google Webmasters Smartphone Sites Docs" href="https://developers.google.com/webmasters/smartphone-sites/">Google</a></p>
<h2>Background:</h2>
<p>I always went with &#8220;responsive&#8221; website design for building smartphone optimized websites just because this configuration made more sense to me.  You see with responsive design, your mobile website address is the same as your regular address, you don&#8217;t have to deal with visitor re-directions to a different domain or sub-domain and you can directly control how your content displays in the different size screens, all from the same place, using the same code.  Less mess overall and less to keep track of, both for me as a developer and for my clients as well.</p>
<h2>The Research:</h2>
<p>Being that my tendency to use responsive web design was just based on my opinion, I decided to dig a little deeper and lo and behold&#8230; Google agrees with me. <img src='http://www.bigcloudmedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I found on the <a title="Recommendations for building smartphone-optimized websites " href="http://googlewebmastercentral.blogspot.com/2012/06/recommendations-for-building-smartphone.html" target="_blank">Google WebMasterCentral blog</a> the answers to my smartphone optimized website questions and here they are:</p>
<blockquote><p> &#8221;1. Sites that use responsive web design, i.e. sites that serve all devices on the same set of URLs, with each URL serving the same HTML to all devices and using just CSS to change how the page is rendered on the device. <strong>This is Google’s recommended configuration.</strong>&#8221;</p>
<p>~<a title="Recommendations for building smartphone-optimized websites " href="http://googlewebmastercentral.blogspot.com/search/label/mobile" target="_blank">Recommendations for building smartphone-optimized websites- Google</a></p></blockquote>
<p>This is all well and good but it left me begging the question &#8220;Why?&#8221;  and as usual, the powers that be at Google had an answer for this too:</p>
<blockquote><p>&#8220;[Google] recommend using responsive web design because it has many good aspects:</p>
<ul>
<li>Using a single URL for a piece of content makes it easier for your users to interact with, share, and link to your content, and a single URL for the content helps Google&#8217;s algorithms assign the indexing properties for the content.</li>
<li>No redirection is needed for users to get to the device-optimized view, which reduces loading time. Also, user agent-based redirection is error-prone and can degrade your site&#8217;s user experience (see &#8220;<a title="Pitfalls when detecting user agents" href="https://developers.google.com/webmasters/smartphone-sites/redirects.html" target="_blank">Pitfalls when detecting user agents</a>&#8221; section for details).</li>
<li>It saves resources for both your site and Google&#8217;s crawlers. For responsive web design pages, any Googlebot user agents needs to crawl your pages once, as opposed to crawling multiple times with different user agents, to retrieve your content. This improvement in crawling efficiency can indirectly help Google index more of the site&#8217;s contents and keep it appropriately fresh.&#8221;</li>
</ul>
<p>~<a title="Building Smartphone-Optimized Websites - Google" href="https://developers.google.com/webmasters/smartphone-sites/details" target="_blank">Building Smartphone-Optimized Websites &#8211; Google</a></p></blockquote>
<h2>What does it all mean?</h2>
<p>So what does all of this mean?  Well for starters, it seems Google wants to do as little extra work as possible to crawl, analyze, figure out and relate smartphone optimized websites and thus, the easier we make it for Google, the better.</p>
<p>Serving multiple URLs for the same content, as in config #3, has it&#8217;s uses but really doesn&#8217;t make Google&#8217;s task of indexing those files and relating them all back to each other any easier.  The same goes with serving one type of content on the desktop browser and a different type of content on the mobile browser, config #2.  More difficult for Google to understand right?  I think so.  Lastly, we come to responsive website design, Google&#8217;s recommended configuration, where the style of the page changes to meet the device (smartphone, tablet, etc.) but same website content is served using the same URLs, making Google&#8217;s task that much easier.</p>
<h2>Other Advantages of Responsive Website Design:</h2>
<p>There are other advantages to having a responsive smartphone optimized website such as:</p>
<ol>
<li>One web address for your customers to remember.</li>
<li>Less development time and testing since the only thing changing is the display of the site.</li>
<li>The functionality of the live site can be applied to the smartphone optimized version (to the extent the mobile browser allows).</li>
</ol>
<h2>Smartphone Optimized Websites and You.</h2>
<p>If you don&#8217;t currently have a mobile website, consider making your regular site responsive so you can provide the growing number of mobile users with an optimized version of your site, just for them.</p>
<blockquote><p><em><strong>Shameless plug:</strong>  We can create a custom responsive website for you or convert your existing site into a responsive website optimized for smartphones.  For more information on this service, <strong><a title="Contact us today to make your existing site a smartphone optimized website" href="http://www.bigcloudmedia.com/#request-a-quote-right-now">contact us</a> </strong>right now.</em></p></blockquote>
<p>If you have a response, objection, rebuttal, thought, or well, anything to say about this topic, please post a comment below and let&#8217;s discuss it.</p>
<p>Thank you for reading and have a wonderful day.</p>
<p>-Big Cloud Media</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigcloudmedia.com/thebuzz/google-recommends-responsive-for-smartphone-optimized-website/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>#WPQA on Twitter: An Effort to Do Some Good</title>
		<link>http://www.bigcloudmedia.com/thebuzz/wpqa-on-twitter/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wpqa-on-twitter</link>
		<comments>http://www.bigcloudmedia.com/thebuzz/wpqa-on-twitter/#comments</comments>
		<pubDate>Wed, 10 Oct 2012 17:10:39 +0000</pubDate>
		<dc:creator>Web-Design and Development</dc:creator>
				<category><![CDATA[The Buzz]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Questions and Answers]]></category>
		<category><![CDATA[WPQA]]></category>

		<guid isPermaLink="false">http://www.bigcloudmedia.com/?p=1414</guid>
		<description><![CDATA[What is #WPQA? Over the last couple of months we noticed that a lot of people on Twitter were asking variations of the same questions about WordPress but had no way of comparing or collaborating on the answers.  After helping several of these people with everything from the CSS of a theme, to recommended WordPress hosting, to the difference between self-hosted WordPress and WordPress.com, we decided to dig deeper and explore a way to get the questions and their answers into one place and accessible to anyone who needed them.  Enter the Twitter hashtag #WPQA. The problem Since we don&#8217;t [...]]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href="https://twitter.com/i/#!/search?q=%23WPQA"><img class="size-full wp-image-1429 rounded-image aligncenter" title="#WPQA on Twitter: An Effort to Do Some Good" src="http://www.bigcloudmedia.com/wp-content/uploads/2012/10/20121010-110901.jpg" alt="#WPQA on Twitter: An Effort to Do Some Good" width="640" height="552" /></a></p>
<h2>What is #WPQA?</h2>
<p>Over the last couple of months we noticed that a lot of people on Twitter were asking variations of the same questions about WordPress but had no way of comparing or collaborating on the answers.  After helping several of these people with everything from the CSS of a theme, to recommended WordPress hosting, to the difference between self-hosted WordPress and WordPress.com, we decided to dig deeper and explore a way to get the questions and their answers into one place and accessible to anyone who needed them.  Enter the Twitter hashtag #WPQA.</p>
<h2>The problem</h2>
<p>Since we don&#8217;t all have access to everyone&#8217;s twitter streams, have time to look at everyone&#8217;s tweets or even know who to ask in most cases, we just tweet the WordPress question and wait.  It&#8217;s literally a shot in the dark.  If you have 5 followers and none of them know about WordPress, chances are, your WordPress related question will go unanswered.</p>
<p>Those tweeters that have a ton of followers sometimes get an answer but unless an expert is actively looking for their question, it&#8217;s a likely chance that the questions go unanswered and the issue goes unresolved.  This can lead to lots of frustration and bad results from un-informed decisions.</p>
<blockquote><p>This whole situation just re-enforces the confusion surrounding WordPress in general and as mentioned before, <em><strong>some questions never get answered at all.  THIS IS BAD.</strong></em></p></blockquote>
<h2>Our solution</h2>
<p>In an effort to help fight this growing issue, we recently launched the #WPQA hashtag on Twitter which we actively monitor to make sure the questions, issues, concerns, etc. posted with it, get addressed.</p>
<blockquote><p>#WPQA stands for <strong>WordPress Questions and Answers</strong></p></blockquote>
<p>This hashtag represents an effort to capture and address WordPress questions, issues, concerns, etc. all in one place, which can be easily found, searched and used by anyone on Twitter.  Our goal is to ensure that WordPress questions get addressed, regardless of whether a WordPress expert is following the user asking the question.  This will hopefully alleviate some of the confusion and help users, developers, and others make more educated decisions regarding WordPress.</p>
<h2>How do you use it?</h2>
<p>To post your question to the #WPQA list you just include #WPQA in your tweet.  That&#8217;s all.  When an answer is posted to your question, you will be mentioned and the tweet will also contain the #WPQA hashtag so everything stays together.</p>
<p>To find all of the questions and answers posted to the #WPQA list, just search &#8220;WPQA&#8221; or &#8220;wpqa&#8221; and all of the posts tagged with #WPQA will be shown.</p>
<h2>How can you help?  Spread the word.</h2>
<p>You can help the cause by just telling your Twitter followers to use the #WPQA hashtag when tweeting a WordPress question and also by using it yourself.  Easy peasy.</p>
<p>If you have any questions, concerns, thoughts, kudos, etc. regarding this post, please leave us a comment below.</p>
<p>As always, if you need anything WordPress related, feel free to <a title="Contact us today for all of your WordPress needs." href="http://www.bigcloudmedia.com/#request-a-quote-right-now">contact us</a> today.</p>
<p>Thank you for reading and stay tuned for our next post. <img src='http://www.bigcloudmedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigcloudmedia.com/thebuzz/wpqa-on-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AdWords Business Credit Coming to US</title>
		<link>http://www.bigcloudmedia.com/thebuzz/adwords-business-credit-coming-to-us/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adwords-business-credit-coming-to-us</link>
		<comments>http://www.bigcloudmedia.com/thebuzz/adwords-business-credit-coming-to-us/#comments</comments>
		<pubDate>Mon, 08 Oct 2012 20:03:07 +0000</pubDate>
		<dc:creator>Web-Design and Development</dc:creator>
				<category><![CDATA[The Buzz]]></category>
		<category><![CDATA[AdWords]]></category>
		<category><![CDATA[AdWords Credit Card]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[small business]]></category>

		<guid isPermaLink="false">http://www.bigcloudmedia.com/?p=1377</guid>
		<description><![CDATA[According to the InsideAdWords blog, this month Google is extending some US-based small to medium size businesses invitations to participate in Adwords Business Credit, a credit card  specifically for Google&#8217;s AdWords service.  Hold on one sec&#8230;did I just say an AdWords credit card?  Yes.  I did.  :) What does this mean for you and your small business?   Well, probably not a whole lot right now since it is invite only at this point.   But, that being said, if and when Google opens this program up to all businesses, or if you have received an invite already, it will be an easier [...]]]></description>
				<content:encoded><![CDATA[<p style="text-align: left;">According to the <a title="Google's InsideAdWords Blog" href="http://adwords.blogspot.com/2012/10/extra-credit-for-small-and-medium-sized.html" target="_blank">InsideAdWords</a> blog, this month Google is extending some US-based small to medium size businesses invitations to participate in Adwords Business Credit, a credit card  specifically for Google&#8217;s AdWords service.  Hold on one sec&#8230;did I just say an AdWords credit card?  Yes.  I did.  :)</p>
<p><strong>What does this mean for you and your small business?  </strong></p>
<p style="text-align: center;"><a href="http://adwords.blogspot.com/2012/10/extra-credit-for-small-and-medium-sized.html"><img class="aligncenter rounded-image" title="AdWords Business Credit Coming to US - Image via Wikipedia" src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/30/Googlelogo.png/800px-Googlelogo.png" alt="AdWords Business Credit Coming to US - Image via Wikipedia" width="384" height="131" /></a></p>
<p>Well, probably not a whole lot right now since it is invite only at this point.   But, that being said, if and when Google opens this program up to all businesses, or if you have received an invite already, it will be an easier way to pay for and keep track of your AdWords campaign.  You get the flexibility of credit and only one place to use it which keeps it on task and not mixable with other things you might have going on.  This translates into a convenient payment method for a lot of small businesses with many things currently on their credit plates, who want to keep their AdWords campaign spending completely separate from everything else.</p>
<p><strong>How does it work?</strong></p>
<p>As far as we can tell, it will be a regular credit card that only works with Google AdWords.  You apply, you have to get approved, your given a rate (the Adwords blog post notes that &#8220;*Depending on creditworthiness, rates range from 8.99% to 18.99%.&#8221;), you&#8217;d only use it for Google AdWords and pay on it each month.</p>
<blockquote><p>The purpose, according to the InsideAdwords post,  is to &#8220;give Small and Medium Sized Businesses more flexibility—some ‘extra credit’—so they&#8217;re able to focus on growing their businesses even further&#8221;.</p></blockquote>
<p><strong>Back to You.</strong></p>
<p><em>Would you be down to use an AdWords Business Credit card?</em>  <em>Is this just another attempt by Google to take over the world?</em></p>
<p>Be sure to leave us a comment with your thoughts, concerns, rants, raves, or you know&#8230; whatever is on your mind and as always, thank you for reading.</p>
<p>~Big Cloud Media</p>
<p>ps. If you need help with your Website, WordPress or Web App, give us a call (210-519-7729), <a title="Get in touch for all of your Website, Web App or WordPress needs." href="http://www.bigcloudmedia.com/#request-a-quote-right-now">send us a message</a> or tweet us: <a title="Connect with us on Twitter @BigCloudMedia" href="http://twitter.com/BigCloudMedia" target="_blank">@BigCloudMedia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigcloudmedia.com/thebuzz/adwords-business-credit-coming-to-us/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Buffer + Social Media = Awesomeness</title>
		<link>http://www.bigcloudmedia.com/thebuzz/buffer-social-media-awesomeness/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=buffer-social-media-awesomeness</link>
		<comments>http://www.bigcloudmedia.com/thebuzz/buffer-social-media-awesomeness/#comments</comments>
		<pubDate>Sat, 29 Sep 2012 22:52:04 +0000</pubDate>
		<dc:creator>Web-Design and Development</dc:creator>
				<category><![CDATA[Helpful Info]]></category>
		<category><![CDATA[The Buzz]]></category>

		<guid isPermaLink="false">http://www.bigcloudmedia.com/?p=1317</guid>
		<description><![CDATA[If you use Facebook, Twitter and/or Linkedin to grow your social media presence, you should be using Buffer.  This awesome web app increases the chances follower interaction by scheduling your posts to Twitter, Facebook and Linkedin for when they will most likely be looked at and interacted with. How can you use Buffer? Excellent question.  Imagine this scenario:  You have a product launch coming up and you need to get the word out to your followers.  You know they interact with you but you don&#8217;t know exactly when so it&#8217;s hard to gauge when the best time to post is. [...]]]></description>
				<content:encoded><![CDATA[<p>If you use Facebook, Twitter and/or Linkedin to grow your social media presence, you should be using <a title="Check out Buffer today" href="http://bufferapp.com/r/e0c79">Buffer</a>.  This awesome web app increases the chances follower interaction by scheduling your posts to Twitter, Facebook and Linkedin for when they will most likely be looked at and interacted with.</p>
<p><strong>How can you use Buffer?</strong></p>
<p style="text-align: center;"><a href="http://bufferapp.com"><img class="size-full wp-image-1284 aligncenter rounded-image" title="bufferapp" src="http://www.bigcloudmedia.com/wp-content/uploads/2012/09/bufferapp.jpg" alt="Buffer is awesome.  Try it today." width="650" height="466" /></a></p>
<p>Excellent question.  Imagine this scenario:  You have a product launch coming up and you need to get the word out to your followers.  You know they interact with you but you don&#8217;t know exactly when so it&#8217;s hard to gauge when the best time to post is.  So, what do you do?  Set Buffer loose and watch the awesomeness happen.</p>
<blockquote><p><em>Using Buffer you can write the post(s) and let it schedule when to post them for max effect.  <strong>Fire and forget.  Easy, peasy. <img src='http://www.bigcloudmedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </strong></em></p></blockquote>
<p>Buffer analyzes when your following interact with you on Linkedin, Facebook and Twitter and schedules your posts accordingly.  If you get the most interaction at 9am, 11am, 4pm and 7pm on Linkedin, buffer schedules your Linkedin posts for those times.  Add into the mix the ability to re-order the posts, tweak the post times, use a url shortener and track the interactions via Buffer&#8217;s analytics and BAM!  You have a great tool at your disposal for increasing your social media interactions.</p>
<p><strong>Buffer and Me?</strong></p>
<p>Currently, Buffer is one of my most used apps on my phone and on my computer.  I am always using it to post news articles or other tidbits to inform my followers of happenings or helpful info.  I find several articles I&#8217;d like to tweet but I don&#8217;t want to flood my stream with them all at once, enter Buffer to save the day.  I use Buffer to schedule my tweets and organize when I want what posted for max effect.  If I think Buffer could do better, I adjust and customize the pre-determined posting schedule accordingly.</p>
<p><strong>In Summary:</strong></p>
<p>To summarize, I love using Buffer and I have seen an increase in my interactions, etc. throughout my Buffer connected social media accounts.  Don&#8217;t get me wrong here, Buffer is not a magic solution to all of your social media issues you may be experiencing but it has helped me to grow and interact with my social media following more and more since I started using it.  My links get clicked more, etc. and I have seen a marked improvement in my social media reach.  If you are looking for a post scheduling solution for your Twitter, Linkedin or Facebook accounts, check out <a title="Check out Buffer.  Make your social media awesome." href="http://bufferapp.com/r/e0c79">Buffer</a>.</p>
<p>Have you used Buffer?  Leave a comment and tell us what your experience has been.</p>
<p>As always, if you need help with your website, your wordpress or your web application, <a title="Hire us right now for all of your website, web app or WordPress needs" href="http://www.bigcloudmedia.com/#request-a-quote-right-now">contact us</a> today.</p>
<p>Thank you for visiting and have a wonderful day.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigcloudmedia.com/thebuzz/buffer-social-media-awesomeness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Your Twitter Profile Yours: Continued&#8230;</title>
		<link>http://www.bigcloudmedia.com/thebuzz/make-your-twitter-profile-yours-cont/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=make-your-twitter-profile-yours-cont</link>
		<comments>http://www.bigcloudmedia.com/thebuzz/make-your-twitter-profile-yours-cont/#comments</comments>
		<pubDate>Wed, 19 Sep 2012 14:27:23 +0000</pubDate>
		<dc:creator>Web-Design and Development</dc:creator>
				<category><![CDATA[The Big Cloud]]></category>
		<category><![CDATA[The Buzz]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter profile]]></category>
		<category><![CDATA[twitter profile image]]></category>
		<category><![CDATA[twitter update]]></category>

		<guid isPermaLink="false">http://www.bigcloudmedia.com/?p=1227</guid>
		<description><![CDATA[Hey folks, this is a follow up to our previous post, &#8220;Twitter&#8217;s Profile Update: Make Your Profile Yours&#8221;, which was about the new Twitter profile header image feature and how users can use it to help spread their brand messages, etc. In the last post we explained how to get yours going and what you might use it for and in this post, we will feature some of the creativity already being displayed with the Twitter profile header image. Here are some examples of the new Twitter header image in action: Update 9/20/2012: Added the following: Do you have a cool Twitter [...]]]></description>
				<content:encoded><![CDATA[<p>Hey folks, this is a follow up to our previous post, <em><strong><a title="Twitter’s Profile Update: Make Your Profile Yours." href="http://www.bigcloudmedia.com/thebuzz/twitters-new-profile-update/" target="_blank">&#8220;Twitter&#8217;s Profile Update: Make Your Profile Yours&#8221;</a></strong></em>, which was<strong></strong><em><strong> </strong></em>about the new Twitter profile header image feature and how users can use it to help spread their brand messages, etc.</p>
<p>In the last post we explained how to get yours going and what you might use it for and in this post, we will feature some of the creativity already being displayed with the Twitter profile header image.</p>
<p>Here are some examples of the new <a title="Twitter’s Profile Update: Make Your Profile Yours." href="http://www.bigcloudmedia.com/thebuzz/twitters-new-profile-update/">Twitter header image</a> in action:</p>
<p style="text-align: center;"><a title="@jlavinh's Twitter Profile Header Image" href="https://twitter.com/jlavinh" target="_blank"><img class="size-full aligncenter rounded-image" title="@jlavinh's Twitter Profile Header Image" src="http://www.bigcloudmedia.com/wp-content/uploads/2012/09/20120919-092715.jpg" alt="@jlavinh's Twitter Profile Header Image" width="624" height="824" /></a></p>
<p style="text-align: center;"><a title="@SocialMedia411's Twitter Profile Header Image" href="https://twitter.com/SocialMedia411" target="_blank"><img class="size-full aligncenter rounded-image" title="@SocialMedia411's Twitter Profile Header Image" src="http://www.bigcloudmedia.com/wp-content/uploads/2012/09/20120919-094448.jpg" alt="@SocialMedia411's Twitter Profile Header Image" width="639" height="822" /></a></p>
<p style="text-align: center;"><a title="@sengineland's Twitter Profile Header Image" href="https://twitter.com/sengineland" target="_blank"><img class="size-full aligncenter rounded-image" title="@sengineland's Twitter Profile Header Image" src="http://www.bigcloudmedia.com/wp-content/uploads/2012/09/20120919-094759.jpg" alt="@sengineland's Twitter Profile Header Image" width="640" height="824" /></a></p>
<div class="alert alert-success center">Update 9/20/2012: Added the following:</div>
<p style="text-align: center;"><a title="@AxelKoster's Twitter Profile Header Image" href="https://twitter.com/AxelKoster" target="_blank"><img class="size-full aligncenter rounded-image" title="@AxelKoster's Twitter Profile Header Image" src="http://www.bigcloudmedia.com/wp-content/uploads/2012/09/20120920-112357.jpg" alt="@AxelKoster's Twitter Profile Header Image" width="640" height="827" /></a></p>
<p style="text-align: left;">Do you have a cool Twitter profile image?  Have you seen an awesome Twitter profile image whilst you be surfing the Twitterverse?  In either case, leave us a comment with the Twitter handle of the user who&#8217;s profile header image we should add to our listing and if we agree, it will be done.  By the way, there is no shame in self-promotion, if you got it, flaunt it. <img src='http://www.bigcloudmedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p style="text-align: left;">Even if you don&#8217;t have a Twitter profile to recommend, drop us a line anyways and let us know what you think about all this Twitter profile image hubbub.</p>
<p style="text-align: left;">As always, if you need anything WordPress, Web-app or Website related, <a title="Contact us today for all of your WordPress, Website or Web-App needs." href="http://www.bigcloudmedia.com/#request-a-quote-right-now" target="_blank">contact us</a> today.</p>
<p style="text-align: left;">Thanks for reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigcloudmedia.com/thebuzz/make-your-twitter-profile-yours-cont/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
