<?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; seo</title>
	<atom:link href="http://www.davidjrush.com/blog/tag/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>Google Analytics</title>
		<link>http://www.davidjrush.com/blog/2009/04/google-analytics/</link>
		<comments>http://www.davidjrush.com/blog/2009/04/google-analytics/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 14:00:29 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[User Experience]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[website statistics]]></category>

		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=15</guid>
		<description><![CDATA[Google Analytics is an amazing tool for web designers and web developers. There are really four different types of things you can do with Google Analytics, and I&#8217;m here to write about each one, and some of the benefits of them, as well as a few downsides. 1. Enhance your user experience: Google analytics has [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com/analytics/" target="_blank">Google Analytics</a> is an amazing tool for web designers and web developers. There are really four different types of things you can do with Google Analytics, and I&#8217;m here to write about each one, and some of the benefits of them, as well as a few downsides.</p>
<p><strong>1. Enhance your user experience:</strong> Google analytics has tools to track the types of users you are getting. You can look at their location (in the world), their computer specs (computer type, screen size, operating system, browser/version), their viewing trends (page views, bounce rates, time on the site), and much more.</p>
<p>So why is this helpful? It allows you to design your site around your users. You know what browsers and versions they are using, so you can decide how much time to spend cross browser testing. You know what screen sizes your users are using, so you can figure out how wide you want your designs to be. You can see when you launch major changes to your site what happens to your user trends (did it cause an increase or decrease in the positive experience of your users). But these are all very broad things, let&#8217;s get more specific.</p>
<p><strong>2. Test and improve specific content:</strong> Google analytics takes the first benefit a step further by allowing you to look at most of the above data and more with specific pages and sections of your site. This will allow you to test out smaller changes to your site by looking at user trending and navigation on specific pages or new sections that you just launched or changed.</p>
<p>So why is this helpful? Imagine you just put up a new section of your site that is a little more alternative to the standard navigation you have throughout the rest of your site, or the design is a bit more energetic and you aren&#8217;t sure how it will be received. Now, say a week after your launch, you can go back and see how your users interacted with the new section. You can see where they came from in the site to get there, what they did there, when they left, and where they left to go to. You can compare the visitor trends with the overall site averages and get a feel for whether the new design and/or navigation is an improvement to your site, or a detriment. It can then guide future changes to that section, or even the rest of your site!</p>
<p><strong>3. Pimp out your SEO efforts:</strong> With the &#8220;sources&#8221; section of Google Analytics, you can track where your users are coming from, and how they are finding you. You can see how many users are coming in directly (typing in your web address or using a bookmark), through referring sites (external links), or through search engines. Then you can look at keywords that people used to land on specific pages within your site, or the site in general.</p>
<p>So why is this helpful? If you have been trying to up your SEO, then you can see how often people are linking to you (based on the rate of referring sites) and how effective you are at certain keyword searches that you are trying to optimize for. Knowing what people already land on your for and teach you what your site is doing well, and help you decide what other keywords you might want to focus more on.</p>
<p><strong>4. Make some moolah:</strong> Lastly, Google Analytics allows you to track sales and other goals within your site. If you have specific items you are trying to sell, you can put in a specific goal that tracks it. Then you can see the paths those users took to get to that sale and optimize for it even more. To be honest, I haven&#8217;t focused on these tools much myself. For my own website, I don&#8217;t have much of a need for it with all the other customization options. For my work at <a href="http://collegeprowler.com" target="_blank">College Prowler</a>, though we do have sales, I tend to focus more on the user experience considering that is where my background is, and my boss looks at everything, including the sales &#8220;goals&#8221; and &#8220;ecommerce&#8221; options.</p>
<p>All of these sections have some additional benefits that Google Analytics is still testing out, in particular the &#8220;advanced segments&#8221; tool. This tool allows you to set up segments of your visitors or your site so that you can get even more detailed with your website&#8217;s statistics. Say you have too main sections of your site, and though they sometimes cross over with users, they are often relatively separate. You might want to see just what one half of the users are doing, as compared to the other half, because they really represent two completely different user bases. Again, it allows for even more customization to your user. There are some downsides to this tool though. In particular, you can create segments, but you can&#8217;t share them with co-workers that might be on the same analytics account, they are only available to you. I already emailed Google months ago and complained about this, but they are slow to respond to that kind of stuff. I think sometimes they pretend to be all focused on usability, but in reality, they lose that focus too often&#8230;</p>
<p>One more downside to Google Analytics is the slight inaccuracy of information. Data is never 100% accurate or reliable. This is a problem with really small sites where small differences can really cause issues with the data (because of low statistical power). Still, take everything you see with a grain of salt, but also put some trust in it. If anything, it will lead you in specific directions for real user testing! Overall though, fantastic tool!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidjrush.com/blog/2009/04/google-analytics/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>
	</channel>
</rss>

