<?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>Bloggerrific &#187; Search Engine Optimization</title>
	<atom:link href="http://www.davidjrush.com/blog/category/web-and-graphic-design/search-engine-optimization-seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidjrush.com</link>
	<description>David J. Rush is a web designer and usability consultant in Pittsburgh who freelances and blogs about anything web related.</description>
	<lastBuildDate>Thu, 05 Jan 2012 02:50:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SEO Friendly Two Column Layout</title>
		<link>http://www.davidjrush.com/blog/2011/02/seo-friendly-two-column-layout/</link>
		<comments>http://www.davidjrush.com/blog/2011/02/seo-friendly-two-column-layout/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 14:00:56 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[CSS Tutorials and Tricks]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[css positioning]]></category>
		<category><![CDATA[css tricks]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[website layout]]></category>

		<guid isPermaLink="false">http://www.davidjrush.com/?p=908</guid>
		<description><![CDATA[Most website owners, for obvious reasons, want their websites to be highly trafficked. When I build a site for a client, I always make an effort to keep search engine optimization (SEO) in mind so I can help them grow their traffic/clientele/customer base. There are thousands of companies out there claiming they know the secret [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: right; margin: 0px 0px 20px 20px; _margin: 0px 0px 10px 10px;" src="http://www.davidjrush.com/images/tutorials/twoColumnSEO.gif" alt="SEO Friendly Two Column Layout" width="425" height="230" />Most website owners, for obvious reasons, want their websites to be highly trafficked. When I build a site for a client, I always make an effort to keep search engine optimization (SEO) in mind so I can help them grow their traffic/clientele/customer base. There are thousands of companies out there claiming they know the secret to landing you at the top of Google search results, but when it comes down to it, there is no one answer&#8230; there are a lot. One such item to try for your site is keeping the relevant content of your pages at the top of your HTML code. Sometimes this can be difficult for people working on websites that have a multiple column layout with something like navigation or ads on the left and the main relevant content on the right. Now some might say there are simple solutions to this problem involving using float left and right CSS properties for your respective divs that contain each column, but there are some layouts that require a more sophisticated solution, that is much less prone to break regardless of the actual content.</p>
<p>When implementing this for my fulltime employer, <a href="http://collegeprowler.com/" target="_blank">College Prowler</a>, I stumbled upon a genius post by <a href="http://matthewjamestaylor.com/blog/ultimate-2-column-left-menu-pixels.htm" target="_blank">Matthew James Taylor</a> who has a series on <a href="http://matthewjamestaylor.com/blog/ultimate-multi-column-liquid-layouts-em-and-pixel-widths" target="_blank">multi-column liquid layouts</a> that are all cross-browser compatible and SEO friendly in the sense that I speak of above. I adapted it a little bit to account for some specific 10px margins and a specific navigation width of 300px, which you can also adjust. The requirements are quite simple to implement, and here&#8217;s how to do it:</p>
<p><strong>The HTML:</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;mainWrap&quot;&gt;
  &lt;div class=&quot;mainSubWrap&quot;&gt;
    &lt;div class=&quot;mainContentWrap&quot;&gt;
      &lt;div class=&quot;mainContentSubWrap&quot;&gt;&lt;!--All your main content goes in here--&gt;&lt;/div&gt;
    &lt;/div&gt;
    &lt;div class=&quot;navContentWrap&quot;&gt;&lt;!--Nav content goes in here--&gt;&lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;
</pre>
<p><strong>The CSS:</strong></p>
<pre class="brush: css; title: ; notranslate">.mainWrap {
  position: relative;
  clear: both;
  float: left;
  width: 100%;
  overflow: hidden;
  margin: 10px 0px;
}
div.mainSubWrap {
  float: left;
  width: 200%;
  position: relative;
  left: 290px;
}
div.mainContentWrap {
  float: right;
  width: 50%;
  position: relative;
  right: 290px;
}
div.mainContentSubWrap {
  margin: 0px 10px 0px 310px;
  position: relative;
  right: 100%;
}
div.navContentWrap {
  float: left;
  width: 290px;
  position: relative;
  right: 290px;
}
</pre>
<p>Basically you end up using relative positioning to move the navigation box over to the left of the main content box, and visa versa, yielding the main content appearing on the right side of your screen, but appearing first in your code. The benefit to this over a simple float is the ability to assign background colors that you want to fill to the bottom of the screen regardless of whether or not the background colored div is the largest in height. It is also pretty much a sure bet that it won&#8217;t break across browsers.</p>
<p>Definitely give it a shot, and if you have any questions, don&#8217;t hesitate to ask!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidjrush.com/blog/2011/02/seo-friendly-two-column-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Simplified</title>
		<link>http://www.davidjrush.com/blog/2008/12/seo-simplified/</link>
		<comments>http://www.davidjrush.com/blog/2008/12/seo-simplified/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 20:46:00 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[dmoz]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[website grader]]></category>
		<category><![CDATA[website statistics]]></category>

		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=6</guid>
		<description><![CDATA[SEO or Search Engine Optimization is a very complex process. People make a living doing SEO work for other individuals. Entire companies exist that tout the best SEO practices. Well, for the simple minded, for the not so wealthy, and just for the interested, let&#8217;s break down what SEO really is and what simple steps [...]]]></description>
			<content:encoded><![CDATA[<p>SEO or Search Engine Optimization is a very complex process. People make a living doing SEO work for other individuals. Entire companies exist that tout the best SEO practices. Well, for the simple minded, for the not so wealthy, and just for the interested, let&#8217;s break down what SEO really is and what simple steps you can take to help out your own site.</p>
<p>Okay, first a definition. Simply put, Search Engine Optimization is an attempt to get your website higher up on search results run by Google, Yahoo, et cetera. Why is this important? Don&#8217;t you want visitors!?! Search engines are the best marketing tool out there. You&#8217;ll never come close to getting more direct or referral traffic than search traffic to your website (unless you are as big as say facebook.com for example). Even the biggest of businesses such as Amazon.com still rely very heavily on search traffic. So how can you push yourself higher on those results?</p>
<p>Well, there are countless articles out there trying to tell you how to perform SEO. I&#8217;m not saying you should listen to me, in fact, I consider myself a novice when it comes to SEO, but I do have a few easy suggestions that just about anyone can do.</p>
<p><span style="font-weight:bold;">1. Make sure to set up a redirect between the www and non-www version of your website.</span> Search engines see http://www.example.com as a different site than http://example.com. If you set up a permanent redirect, then search engines will bump you up higher, links to your site will be consistent. Here is a great <a href="http://www.stepforth.com/faq/non-www-redirect.htm" target="_blank">tutorial</a> on it.</p>
<p><span style="font-weight:bold;">2. Register with sites like dmoz and yahoo and zoominfo.</span> These sites are essentially listings of websites and companies and people. Being listed on these helps show search engines that your website is essentially more reputable than websites not listed there. Yahoo costs money, but dmoz is free. Hurry up though, it can take months for them to get you on the list!</p>
<p><span style="font-weight:bold;">3. Write a BLOG!!!</span> I know, ironic right? The reason that I started this blog in the first place was to drive more traffic to my site. Sites with blogs have tons more content, and because the content is constantly changing and updating, it is much more likely to pop up in search results. Even more than that, people might start bookmarking your blog posts on sites like del.icio.us and digg.com. Bookmarks on these sites can drive hundreds of visits in under an hour once they are posted. Also, when there are bookmarks to your site from these websites, search engines use that as another form of validation that your content is useful, just like being listed in those conglomerate sites mentioned above.</p>
<p><span style="font-weight:bold;">4. Get lots and lots of links to your site.</span> The more links that exist on the web to your site, the better. Search engines see those links as even <span style="font-style: italic;">more</span> validation for your content. Try establishing relationships with other businesses you work with on a regular basis and get them to link to your site in return for a link to theirs. Make a facebook page for the website with a link. Anything that will add more links to your site out there in the web is good!</p>
<p><span style="font-weight:bold;">5. Lots of content, that you update, with good header tags.</span> Google is known to use the content of a website to determine what is on it. Go figure right? In the past, all search engines used the Meta Keyword and Description tags, but then people started stuffing their tags with thousands of unrelated words in hopes of landing on tons of search results. As a result Google, and many other search engines have followed suit, do not use them anymore. Stick to under a dozen keywords, and then just pay attention to your content. Having useful header tags (h1, h2, h3, etc), lots of good content, preferably that you update, and purposeful images will do wonders.</p>
<div class="floatLeft" style="width: 500px; margin-left: 10px;"><span style="font-weight:bold;">6. Check out <a href="http://website.grader.com/" target="_blank">Website Grader</a>.</span> This site will help you keep track of your progress. As with any of these tools, take it with a grain of salt, but so far, this is the best one I&#8217;ve found on the web. I use this site regularly to continually improve my SEO. I think a year ago, I was sitting at a grade of about 26 (my site performed better than 26% of all websites), and now look at me with that beautiful score you see on your right. That&#8217;s pretty amazing considering I&#8217;m just one person with a small website. That&#8217;s how much Website Grader helped! Any other suggestions? Let me know!</div>
<div style="float: right;"><a href="http://websitegrader.com/site/www.davidjrush.com" target="_blank"><img src="http://badge.websitegrader.com/site/www.davidjrush.com" alt="The Website Grade for www.davidjrush.com!"></a></div>
<div class="clear"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.davidjrush.com/blog/2008/12/seo-simplified/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Hullabaloo on Blogging</title>
		<link>http://www.davidjrush.com/blog/2008/11/the-hullabaloo-on-blogging/</link>
		<comments>http://www.davidjrush.com/blog/2008/11/the-hullabaloo-on-blogging/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 03:15:00 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[google search]]></category>

		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=3</guid>
		<description><![CDATA[I never got it. Heck, I still don&#8217;t get it. Why are blogs so popular? Why do people find the need to write about their mundane lives? Even more puzzling, why do people find the need to read about other people&#8217;s mundane lives!? All these questions for naught. It seems no matter how much it [...]]]></description>
			<content:encoded><![CDATA[<p>I never got it. Heck, I still don&#8217;t get it. Why are blogs so popular? Why do people find the need to write about their mundane lives? Even more puzzling, why do people find the need to <span style="font-style: italic;">read</span> about <span style="font-style: italic;">other people&#8217;s</span> mundane lives!? All these questions for naught. It seems no matter how much it disgusts me, I&#8217;m going to give in, but for a specific reason.</p>
<p>I&#8217;m going to use this blog as a way to help drive traffic to my online portfolio. Also, working as a full-time web designer, I&#8217;ve discovered that whenever I can&#8217;t figure something out, I google it. More often than not, I end up on a blog site, reading someone else&#8217;s CSS trick that saves my life. Well, by now, I seem to have quite a few tricks up my own sleeve, so why not unite them under one roof?</p>
<p>From recent issues I&#8217;ve dealt with, here are a few of my upcoming posts that you can look forward to:</p>
<ul>
<li><a href="http://www.davidjrush.com/blog/2008/12/html-getting-started/">HTML: Getting Started</a></li>
<li><a href="http://www.davidjrush.com/blog/2008/12/screen-resolution-size-matters/">Screen Resolution</a></li>
<li><a href="http://www.davidjrush.com/blog/2008/12/css-back-to-basics/">CSS Basics</a></li>
<li><a href="http://www.davidjrush.com/blog/2009/01/css-ie6-bugs-and-hacks/">Common IE6 Bugs</a></li>
<li><a href="http://www.davidjrush.com/blog/2009/01/css-sticky-footer/">Sticky Footers</a></li>
</ul>
<p>Other suggestions are always welcome. We&#8217;ll see how I do with moderating/reading comments. Please feel free to make requests.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidjrush.com/blog/2008/11/the-hullabaloo-on-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

