<?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>Shane Strong &#187; Shane</title>
	<atom:link href="http://www.shanestrong.com/tag/shane/feed" rel="self" type="application/rss+xml" />
	<link>http://www.shanestrong.com</link>
	<description>Lansing WordPress Web Developer Search Engine Optimization Website Consultant Theme Developer Magento Developer Lansing Michigan</description>
	<lastBuildDate>Fri, 03 Feb 2012 15:45:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>jQuery Corner Page Peel</title>
		<link>http://www.shanestrong.com/web-design/jquery-corner-page-peel</link>
		<comments>http://www.shanestrong.com/web-design/jquery-corner-page-peel#comments</comments>
		<pubDate>Sat, 06 Feb 2010 08:39:50 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[jQuery Peel]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Simple jQuery]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1310</guid>
		<description><![CDATA[There are many different ways to make your RSS Icon jump out at people. Well why not have it peel at people. You have seen those ads that sites have in the upper right corner of there site that when you hover over them they just peel away. Well some people might think that must [...]]]></description>
			<content:encoded><![CDATA[<p>There are many different ways to make your RSS Icon jump out at people.  Well why not have it peel at people.  You have seen those ads that sites have in the upper right corner of there site that when you hover over them they just peel away.  Well some people might think that must be flash at work or something that is so advanced I can never learn it.  Well to let everyone know yes you can learn it and no it is not hard.  I am sure that you could make a peel away corner with flash and I bet it would look good.  But, I also bet that it would take a couple hours to create and then a few more to implement.  Well with some jQuery and CSS you can create a peel away corner in about 20-30mins.  All that you need to know for this is how to copy some code into your head and header area of your website.  I am going to break down exactly what you need to do in 3 easy steps.  If you would like to download the end product you can find it at the bottom of this tutorial.</p>
<h3>Add Your jQuery Scripts</h3>
<p>We are going to use Google&#8217;s AJAX Library to add our jQuery library to our header.  You may ask why we would do this well including the jQuery library from a external source will make less stress on your server and we all know that Google&#8217;s servers can handle the stress.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">&lt;head&gt;
//Google Hosted
&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
//Your Script
&lt;script type=&quot;text/javascript&quot;&gt;
   jQuery(document).ready(function($) {
      $(&quot;.cornerpeel&quot;).hover(function() { //Hover Over
         $(&quot;.cornerpeel img , .message&quot;).stop()
	 .animate({ //Expand the Message and the Hover Image
	    width: '138px',
	    height: '138px'
	 }, 600);
      } , function() {
         $(&quot;.cornerpeel img&quot;).stop() //Hover Out Go Back To Original
	 .animate({
	    width: '50px',
	    height: '50px'
	 }, 200);
	 $(&quot;.message&quot;).stop() //Hover Out Go Back To Original
	 .animate({
            width: '50px',
	    height: '50px'
	 }, 180); //This should be a tad faster than the image because IE is known to glitch
      });
   });
&lt;/script&gt;
&lt;/head&gt;</pre></div></div>

<h3>Create Your Styles</h3>
<p>These are your styles and can be changed up depending on where your image is and what size you want to start out with.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.cornerpeel</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.cornerpeel</span> img <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">50px</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">50px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">101</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.cornerpeel</span> <span style="color: #6666ff;">.message</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">50px</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">50px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">100</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fffcf9</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">http://www.shanestrong.com/jQuery/cornerpeel/rss.jpg</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #000000; font-weight: bold;">right</span> <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">text-indent</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-9999px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<h3>Create Your Corner Peice</h3>
<p>This is were you create your hoverable corner piece.  This will be placed somewhere in your header area or right inside your body tag.</p>

<div class="wp_syntax"><div class="code"><pre class="htm" style="font-family:monospace;">&lt;div class=&quot;cornerpeel&quot;&gt;
   &lt;a href=&quot;http://feeds.feedburner.com/ShaneStrong&quot;&gt;
      &lt;img src=&quot;http://www.shanestrong.com/jQuery/cornerpeel/corner_img.png&quot; alt=&quot;&quot; /&gt;
      &lt;span class=&quot;message&quot;&gt;Subscribe To My Feed&lt;/span&gt;
   &lt;/a&gt;
&lt;/div&gt;</pre></div></div>

<h3>Your Finished</h3>
<p>Well that was it, that is all that you need to create your self a corner peel.  If you would like to see this in action you can download my script at the bottom.  There is a ton of things that you can do with jQuery that can make your site seem more flashy without having to find a flash developer.  jQuery is one of the fastest growing languages around.  If you have any tutorials that you would like to publish on my site please go to my contact page.</p>
<p>jQuery Corner Peel: <a target="_blank" href="/jquery/corner-peel/cornerpeel.htm" title="Corner Page Peel">Corner Peel Trial</a></p>
<p>Download: <a class="downloadlink" href="http://www.shanestrong.com/downloads74" title="Version1.0 downloaded 1262 times" >jQuery Corner Peel (1262)</a></p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If by chance you are in need of any web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen.  Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm.  We are a small business but are growing in the Lansing Area for our Web Design and Development skills.  We have done work for clients and companies. We prefer client work but we also take contract work.  We have worked with most of the biggest web companies in the Lansing Area and all the way out to California.  We would love to hear from you.</p>
<h3>Sponsors</h3>
<p>Start saving on <a target="_blank" href="http://blog.psprint.com">printing services</a> today. Visit our website to learn more about <a target="_blank" href="http://www.psprint.com/booklets">booklet printing</a> today.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=jQuery%20Corner%20Page%20Peel%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;t=jQuery%20Corner%20Page%20Peel"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&title=jQuery%20Corner%20Page%20Peel"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;title=jQuery%20Corner%20Page%20Peel&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=There%20are%20many%20different%20ways%20to%20make%20your%20RSS%20Icon%20jump%20out%20at%20people.%20%20Well%20why%20not%20have%20it%20peel%20at%20people.%20%20You%20have%20seen%20those%20ads%20that%20sites%20have%20in%20the%20upper%20right%20corner%20of%20there%20site%20that%20when%20you%20hover%20over%20them%20they%20just%20peel%20away.%20%20Well%20so"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;title=jQuery%20Corner%20Page%20Peel&amp;notes=There%20are%20many%20different%20ways%20to%20make%20your%20RSS%20Icon%20jump%20out%20at%20people.%20%20Well%20why%20not%20have%20it%20peel%20at%20people.%20%20You%20have%20seen%20those%20ads%20that%20sites%20have%20in%20the%20upper%20right%20corner%20of%20there%20site%20that%20when%20you%20hover%20over%20them%20they%20just%20peel%20away.%20%20Well%20so"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;title=jQuery%20Corner%20Page%20Peel&amp;annotation=There%20are%20many%20different%20ways%20to%20make%20your%20RSS%20Icon%20jump%20out%20at%20people.%20%20Well%20why%20not%20have%20it%20peel%20at%20people.%20%20You%20have%20seen%20those%20ads%20that%20sites%20have%20in%20the%20upper%20right%20corner%20of%20there%20site%20that%20when%20you%20hover%20over%20them%20they%20just%20peel%20away.%20%20Well%20so"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;title=jQuery%20Corner%20Page%20Peel&amp;bodytext=There%20are%20many%20different%20ways%20to%20make%20your%20RSS%20Icon%20jump%20out%20at%20people.%20%20Well%20why%20not%20have%20it%20peel%20at%20people.%20%20You%20have%20seen%20those%20ads%20that%20sites%20have%20in%20the%20upper%20right%20corner%20of%20there%20site%20that%20when%20you%20hover%20over%20them%20they%20just%20peel%20away.%20%20Well%20so"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;title=jQuery%20Corner%20Page%20Peel"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1310'), event, 'post-1310')" onMouseOver="more(this,'post-1310')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-1310')" id="sociable-post-1310" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;t=jQuery%20Corner%20Page%20Peel"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;t=jQuery%20Corner%20Page%20Peel"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=jQuery%20Corner%20Page%20Peel&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;cat_id=6&amp;tag_id=31&amp;Remark=There%20are%20many%20different%20ways%20to%20make%20your%20RSS%20Icon%20jump%20out%20at%20people.%20%20Well%20why%20not%20have%20it%20peel%20at%20people.%20%20You%20have%20seen%20those%20ads%20that%20sites%20have%20in%20the%20upper%20right%20corner%20of%20there%20site%20that%20when%20you%20hover%20over%20them%20they%20just%20peel%20away.%20%20Well%20so"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;Title=jQuery%20Corner%20Page%20Peel"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;title=jQuery%20Corner%20Page%20Peel&amp;selection=There%20are%20many%20different%20ways%20to%20make%20your%20RSS%20Icon%20jump%20out%20at%20people.%20%20Well%20why%20not%20have%20it%20peel%20at%20people.%20%20You%20have%20seen%20those%20ads%20that%20sites%20have%20in%20the%20upper%20right%20corner%20of%20there%20site%20that%20when%20you%20hover%20over%20them%20they%20just%20peel%20away.%20%20Well%20so"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;t=jQuery%20Corner%20Page%20Peel&amp;s=There%20are%20many%20different%20ways%20to%20make%20your%20RSS%20Icon%20jump%20out%20at%20people.%20%20Well%20why%20not%20have%20it%20peel%20at%20people.%20%20You%20have%20seen%20those%20ads%20that%20sites%20have%20in%20the%20upper%20right%20corner%20of%20there%20site%20that%20when%20you%20hover%20over%20them%20they%20just%20peel%20away.%20%20Well%20so"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=jQuery%20Corner%20Page%20Peel&body=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;title=jQuery%20Corner%20Page%20Peel&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-1310',true)" class="close">























		  <img onclick="hide_sociable('post-1310',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="jQuery Corner Page Peel - http://www.shanestrong.com/web-design/jquery-corner-page-peel (via #sociablesite)" data-url="http://www.shanestrong.com/web-design/jquery-corner-page-peel" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/web-design/jquery-corner-page-peel&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-corner-page-peel&amp;title=jQuery%20Corner%20Page%20Peel'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/web-design/jquery-corner-page-peel"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/web-design/jquery-corner-page-peel" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/web-design/jquery-corner-page-peel" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1310&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/web-design/jquery-corner-page-peel/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Website Value Boost</title>
		<link>http://www.shanestrong.com/seo/website-value-boost</link>
		<comments>http://www.shanestrong.com/seo/website-value-boost#comments</comments>
		<pubDate>Thu, 31 Dec 2009 20:05:55 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Google Ads]]></category>
		<category><![CDATA[SEM]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Google PageRank]]></category>
		<category><![CDATA[SEO Optimized]]></category>
		<category><![CDATA[Text Link Ads]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1216</guid>
		<description><![CDATA[There are a ton of ways to get more traffic to your site but really there are only a couple ways to build your sites value. How is your site measured by the amount of traffic it gets, how much it makes in profit in a given month, what its PageRank is. There is a [...]]]></description>
			<content:encoded><![CDATA[<p>There are a ton of ways to get more traffic to your site but really there are only a couple ways to build your sites value.  How is your site measured by the amount of traffic it gets, how much it makes in profit in a given month, what its PageRank is.  There is a lot of different ways to make your site valuable.  I prefer to do the easy way by how much your site makes in a given month.  The reason that I consider this easy is because you have so many different ways to go about doing this.  Most of these ways depend on how much traffic/popularity your site has.  One of the easiest ways is to put ads on your site.  You can choose from many different advertising companies.  This is where it gets hard because if your site does not have the traffic/popularity then most of these companies will not accept you.</p>
<h3>Google Ads</h3>
<p>Google everyone knows them and probably everyone has seen multiple ads by them.  They will accept every site.  Not just because they have the money to do so but they can measure where the person who clicked on the ad came from.  For instance If you put ads up on your site by Google.  You have to register where you live with them.  Now not saying that you should but yeah you could go to a neighboring town and click on your ads and yes you will probably get money for it.  But, Google is smart if it finds a pattern in clicks and area of the clicks then it will suspect something and you can get prosecuted for it.  What does this mean you will loose your ability to use Google ads and could be fined and possible jail time.  In order to setup Google ads on your site all that you have to do is register with Google Adsence it is really easy to find just go to Google and search for Google ads or ads.  You do not have to have a Google email to register.  Once you setup your account then all you have to do is go through the tutorials inside Google Adsence to get the feel for how to go about making money.  The really tough part about making money with Google is where to put the ads.  For instance you want the ads in places that people are going to click them and they dont look like ads.  There are different kinds of ads and ad sizes that you can choose from.  I am using there rss feed ads and there regular ads.</p>
<h3>Other Ad Companies</h3>
<p>There are a ton of other really good ad companies but the two that I like the most is Chitika Ads and Text Link Ads.  Both of these ad companies pay pretty good especially Text Link Ads.  The only problem with these ad companies is you have to have a high amount of traffic to your site before they will accept you.  A really good way to increase your traffic to your site is with Optimization.  This can be done in many different ways the best is to get everything optimized.  This includes SEO (Search Engine Optimization), SEM (Search Engine Marketing), Title and Alt Tags, Content Emphasis, Creating Ads For Your Self, and much more.  The best is to do all of them but if you are looking for some quick traffic.  Then you best bet is to create a ad with a high end company (Google).  Google is extremely cheap for creating ads it would only cost you around $50-$100 a month for good ads and it goes up from there.  Now even with creating ads for yourself this doesn&#8217;t mean that your site is going to get enough of a boost that it needs.  That is why I said that it is best to get everything done.  That way you are building traffic from multiple areas.  Whether it be Search Engines, Advertising, or Keywords.</p>
<h3>SEO Packages</h3>
<p>If you are in need of any Search Engine Optimization I do have packages and I can teach people how to do SEO. My monthly packages for SEO all depend on how much you want done. I charge $25US an hour. With that my recommended package would be 20 hours a month this will give you the best outcome. Of course the more hours you do the better outcome you will get but at 20 hours a month I can really get enough done to your site that it will show improvement a lot quicker and will make you more money faster. I also have a bunch more different packages and prices for web based projects, you can go to Work Prices.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If by chance you are in need of any web design, web development, search engine optimization, editing, content creation or marketing done to one of your sites please feel free to contact me or Chosen. Chosen is a small, but growing Lansing-based firm offering Web Development, Web Design, Web Hosting, Web Editing, and Web Marketing skills. We have done work for clients and companies, by preference, but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Website%20Value%20Boost%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;t=Website%20Value%20Boost"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&title=Website%20Value%20Boost"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;title=Website%20Value%20Boost&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=There%20are%20a%20ton%20of%20ways%20to%20get%20more%20traffic%20to%20your%20site%20but%20really%20there%20are%20only%20a%20couple%20ways%20to%20build%20your%20sites%20value.%20%20How%20is%20your%20site%20measured%20by%20the%20amount%20of%20traffic%20it%20gets%2C%20how%20much%20it%20makes%20in%20profit%20in%20a%20given%20month%2C%20what%20its%20PageRank%20i"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;title=Website%20Value%20Boost&amp;notes=There%20are%20a%20ton%20of%20ways%20to%20get%20more%20traffic%20to%20your%20site%20but%20really%20there%20are%20only%20a%20couple%20ways%20to%20build%20your%20sites%20value.%20%20How%20is%20your%20site%20measured%20by%20the%20amount%20of%20traffic%20it%20gets%2C%20how%20much%20it%20makes%20in%20profit%20in%20a%20given%20month%2C%20what%20its%20PageRank%20i"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;title=Website%20Value%20Boost&amp;annotation=There%20are%20a%20ton%20of%20ways%20to%20get%20more%20traffic%20to%20your%20site%20but%20really%20there%20are%20only%20a%20couple%20ways%20to%20build%20your%20sites%20value.%20%20How%20is%20your%20site%20measured%20by%20the%20amount%20of%20traffic%20it%20gets%2C%20how%20much%20it%20makes%20in%20profit%20in%20a%20given%20month%2C%20what%20its%20PageRank%20i"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;title=Website%20Value%20Boost&amp;bodytext=There%20are%20a%20ton%20of%20ways%20to%20get%20more%20traffic%20to%20your%20site%20but%20really%20there%20are%20only%20a%20couple%20ways%20to%20build%20your%20sites%20value.%20%20How%20is%20your%20site%20measured%20by%20the%20amount%20of%20traffic%20it%20gets%2C%20how%20much%20it%20makes%20in%20profit%20in%20a%20given%20month%2C%20what%20its%20PageRank%20i"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;title=Website%20Value%20Boost"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1216'), event, 'post-1216')" onMouseOver="more(this,'post-1216')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-1216')" id="sociable-post-1216" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;t=Website%20Value%20Boost"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;t=Website%20Value%20Boost"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Website%20Value%20Boost&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;cat_id=6&amp;tag_id=31&amp;Remark=There%20are%20a%20ton%20of%20ways%20to%20get%20more%20traffic%20to%20your%20site%20but%20really%20there%20are%20only%20a%20couple%20ways%20to%20build%20your%20sites%20value.%20%20How%20is%20your%20site%20measured%20by%20the%20amount%20of%20traffic%20it%20gets%2C%20how%20much%20it%20makes%20in%20profit%20in%20a%20given%20month%2C%20what%20its%20PageRank%20i"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;Title=Website%20Value%20Boost"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;title=Website%20Value%20Boost&amp;selection=There%20are%20a%20ton%20of%20ways%20to%20get%20more%20traffic%20to%20your%20site%20but%20really%20there%20are%20only%20a%20couple%20ways%20to%20build%20your%20sites%20value.%20%20How%20is%20your%20site%20measured%20by%20the%20amount%20of%20traffic%20it%20gets%2C%20how%20much%20it%20makes%20in%20profit%20in%20a%20given%20month%2C%20what%20its%20PageRank%20i"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;t=Website%20Value%20Boost&amp;s=There%20are%20a%20ton%20of%20ways%20to%20get%20more%20traffic%20to%20your%20site%20but%20really%20there%20are%20only%20a%20couple%20ways%20to%20build%20your%20sites%20value.%20%20How%20is%20your%20site%20measured%20by%20the%20amount%20of%20traffic%20it%20gets%2C%20how%20much%20it%20makes%20in%20profit%20in%20a%20given%20month%2C%20what%20its%20PageRank%20i"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Website%20Value%20Boost&body=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;title=Website%20Value%20Boost&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-1216',true)" class="close">























		  <img onclick="hide_sociable('post-1216',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Website Value Boost - http://www.shanestrong.com/seo/website-value-boost (via #sociablesite)" data-url="http://www.shanestrong.com/seo/website-value-boost" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/seo/website-value-boost&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fwebsite-value-boost&amp;title=Website%20Value%20Boost'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/seo/website-value-boost"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/seo/website-value-boost" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/seo/website-value-boost" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1216&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/seo/website-value-boost/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress Posts VS. Pages</title>
		<link>http://www.shanestrong.com/powered-by-wordpress/wordpress-posts-vs-pages</link>
		<comments>http://www.shanestrong.com/powered-by-wordpress/wordpress-posts-vs-pages#comments</comments>
		<pubDate>Fri, 25 Sep 2009 23:05:54 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Powered by WordPress]]></category>
		<category><![CDATA[Theme Development]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Shane Strong]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Theme Developer]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1145</guid>
		<description><![CDATA[The most asked question about WordPress that I get is on the difference between a WordPress Page and a WordPress Post. The two are often misused wrongfully. Here are a few pointers to assist in better understanding the difference. WordPress pages are just static or you could say the posted elements are not often moveable [...]]]></description>
			<content:encoded><![CDATA[<p>The most asked question about WordPress that I get is on the difference between a WordPress Page and a WordPress Post. The two are often misused wrongfully. Here are a few pointers to assist in better understanding the difference. WordPress pages are just static or you could say the posted elements are not often moveable or changed. With the WordPress pages, you really don’t change them unless you have more information that you want to add to them, or, you wish to change something that is already there. For instance, a contact page is not going to change that often because your contact information might never change. But as for a page like a portfolio or a picture album you might end up adding, deleting or changing items monthly.</p>
<p>The main thing that you have to notice is that the WordPress page, whether it is a &#8216;portfolio page&#8217; or a &#8216;contact page&#8217;, will be set for long term that is it won’t have a extreme change, and if it does, you are changing it up.</p>
<p>As for a blog post or post, you might be creating these every day. They are supposed to be informative and/or updates about the topic that you write about on your blog. For example, you are a school and on your main page is your blog. Well, you may want to keep talking about various things about your school, hence frequently posting updated information on the school. For instance, if this coming Sunday, the your school will be playing a team that they might just be able to beat, updates on the blog could include information about the people, the upcoming game with maybe stats on the players and other any other interesting stuff about the game. That way if the your school looses the game that post will not be on the school&#8217;s blog page for a long time. At least it is only there until another post update is made.</p>
<h3>Pages Versus Posts</h3>
<p>There are five real reasons why pages are different than posts.</p>
<ol class="decimal">
<li>They are not involved with the blog.</li>
<li>You can use different page templates with them.</li>
<li>Pages are static text, they don&#8217;t change often.</li>
<li>Pages can have a hierarchy</li>
<li>Pages can have sub pages inside there main pages.</li>
</ol>
<p>So your pages really have nothing to do with your blog. They are static text and don’t change that often. They are not time dependent. Most of the time these pages include (about, contact, services, and other informative pages about your site).</p>
<h3>Posts In View</h3>
<p>Posts are primarily meant for updating and link building. You use your posts to gain traffic to your site through SEO, SEM, and other means. With posts you tend to make regular entries into your blog, unlike pages, you need to change your posts almost weekly if not a couple of times a week. Most of the time your blog post show up on your home page in a certain order. More times than not the order is constructed by date of the post. With the newest posts at the top of the page and the older get put to the back of the list. Blog posts use categories and tags to organize your posts. Given the categories and tags each are automatically given a RSS feed so that you may get updates on the groups.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you need assistance with web design, web development, search engine optimization, editing, content creation or marketing done to one of your sites please feel free to contact me or Chosen. Chosen is a small, but growing Lansing-based firm offering Web Development, Web Design, Web Hosting, Web Editing, and Web Marketing skills. We have done work for clients and companies, by preference, but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you. </p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=WordPress%20Posts%20VS.%20Pages%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;t=WordPress%20Posts%20VS.%20Pages"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&title=WordPress%20Posts%20VS.%20Pages"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;title=WordPress%20Posts%20VS.%20Pages&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=The%20most%20asked%20question%20about%20WordPress%20that%20I%20get%20is%20on%20the%20difference%20between%20a%20WordPress%20Page%20and%20a%20WordPress%20Post.%20The%20two%20are%20often%20misused%20wrongfully.%20Here%20are%20a%20few%20pointers%20to%20assist%20in%20better%20understanding%20the%20difference.%20WordPress%20pages%20are"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;title=WordPress%20Posts%20VS.%20Pages&amp;notes=The%20most%20asked%20question%20about%20WordPress%20that%20I%20get%20is%20on%20the%20difference%20between%20a%20WordPress%20Page%20and%20a%20WordPress%20Post.%20The%20two%20are%20often%20misused%20wrongfully.%20Here%20are%20a%20few%20pointers%20to%20assist%20in%20better%20understanding%20the%20difference.%20WordPress%20pages%20are"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;title=WordPress%20Posts%20VS.%20Pages&amp;annotation=The%20most%20asked%20question%20about%20WordPress%20that%20I%20get%20is%20on%20the%20difference%20between%20a%20WordPress%20Page%20and%20a%20WordPress%20Post.%20The%20two%20are%20often%20misused%20wrongfully.%20Here%20are%20a%20few%20pointers%20to%20assist%20in%20better%20understanding%20the%20difference.%20WordPress%20pages%20are"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;title=WordPress%20Posts%20VS.%20Pages&amp;bodytext=The%20most%20asked%20question%20about%20WordPress%20that%20I%20get%20is%20on%20the%20difference%20between%20a%20WordPress%20Page%20and%20a%20WordPress%20Post.%20The%20two%20are%20often%20misused%20wrongfully.%20Here%20are%20a%20few%20pointers%20to%20assist%20in%20better%20understanding%20the%20difference.%20WordPress%20pages%20are"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;title=WordPress%20Posts%20VS.%20Pages"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1145'), event, 'post-1145')" onMouseOver="more(this,'post-1145')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-1145')" id="sociable-post-1145" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;t=WordPress%20Posts%20VS.%20Pages"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;t=WordPress%20Posts%20VS.%20Pages"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=WordPress%20Posts%20VS.%20Pages&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;cat_id=6&amp;tag_id=31&amp;Remark=The%20most%20asked%20question%20about%20WordPress%20that%20I%20get%20is%20on%20the%20difference%20between%20a%20WordPress%20Page%20and%20a%20WordPress%20Post.%20The%20two%20are%20often%20misused%20wrongfully.%20Here%20are%20a%20few%20pointers%20to%20assist%20in%20better%20understanding%20the%20difference.%20WordPress%20pages%20are"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;Title=WordPress%20Posts%20VS.%20Pages"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;title=WordPress%20Posts%20VS.%20Pages&amp;selection=The%20most%20asked%20question%20about%20WordPress%20that%20I%20get%20is%20on%20the%20difference%20between%20a%20WordPress%20Page%20and%20a%20WordPress%20Post.%20The%20two%20are%20often%20misused%20wrongfully.%20Here%20are%20a%20few%20pointers%20to%20assist%20in%20better%20understanding%20the%20difference.%20WordPress%20pages%20are"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;t=WordPress%20Posts%20VS.%20Pages&amp;s=The%20most%20asked%20question%20about%20WordPress%20that%20I%20get%20is%20on%20the%20difference%20between%20a%20WordPress%20Page%20and%20a%20WordPress%20Post.%20The%20two%20are%20often%20misused%20wrongfully.%20Here%20are%20a%20few%20pointers%20to%20assist%20in%20better%20understanding%20the%20difference.%20WordPress%20pages%20are"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=WordPress%20Posts%20VS.%20Pages&body=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;title=WordPress%20Posts%20VS.%20Pages&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-1145',true)" class="close">























		  <img onclick="hide_sociable('post-1145',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="WordPress Posts VS. Pages - http://www.shanestrong.com/powered-by-wordpress/wordpress-posts-vs-pages (via #sociablesite)" data-url="http://www.shanestrong.com/powered-by-wordpress/wordpress-posts-vs-pages" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/powered-by-wordpress/wordpress-posts-vs-pages&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fpowered-by-wordpress%2Fwordpress-posts-vs-pages&amp;title=WordPress%20Posts%20VS.%20Pages'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/powered-by-wordpress/wordpress-posts-vs-pages"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/powered-by-wordpress/wordpress-posts-vs-pages" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/powered-by-wordpress/wordpress-posts-vs-pages" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1145&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/powered-by-wordpress/wordpress-posts-vs-pages/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Top 10 SEO Tools</title>
		<link>http://www.shanestrong.com/work/top-10-seo-tools</link>
		<comments>http://www.shanestrong.com/work/top-10-seo-tools#comments</comments>
		<pubDate>Thu, 13 Aug 2009 20:52:48 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Fast SEO]]></category>
		<category><![CDATA[SEO Optimized]]></category>
		<category><![CDATA[SEO Tools]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1060</guid>
		<description><![CDATA[What do you use for SEO? What do you consider the best tools? I have a list of SEO tools that I use daily. My list is a little more than 10 but I figured for simplicity I will give you the top 10 SEO tools that I use. The reason I am putting together [...]]]></description>
			<content:encoded><![CDATA[<p>What do you use for SEO?  What do you consider the best tools? I have a list of <a target="_blank" href="http://www.rankpay.net">SEO tools </a>that I use daily.  My list is a little more than 10 but I figured for simplicity I will give you the top 10 SEO tools that I use.  The reason I am putting together a list of my top ten is because I see a trend from other SEO experts bot saying that I am a expert but I would like to be.  There are a ton of SEO tools out there that are free of charge and these tools are evolving at a rapid speed.  My big question with SEO is where will it go next.  Well what everyone really wants is the list so here it is.</p>
<h3>Top Ten SEO Tool List</h3>
<ul class="circle">
<div class="alignleft fifty">
<li><a target="_blank" href="http://www.searchenginegenie.com/" title="Search Engine Genie">Search Engine Genie</a></li>
<li><a target="_blank" href="http://www.websitegrader.com" title="Website Grader">Website Grader</a></li>
<li><a target="_blank" href="https://adwords.google.com/select/KeywordToolExternal" title="Google Adwords">Google Adwords</a></li>
<li><a target="_blank" href="http://www.google.com/analytics/" title="Google Analytics">Google Analytics</a></li>
<li><a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/3036" title="SEO Quake">SEO Quake</a></li>
</div>
<div class="alignleft fifty">
<li><a target="_blank" href="https://siteexplorer.search.yahoo.com/mysites" title="Site Explorer">SiteExplorer</a></li>
<li><a target="_blank" href="http://www.google.com/trends" title="Google Trends">Google Trends</a></li>
<li><a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/321" title="Search Status">Search Status</a></li>
<li><a target="_blank" href="http://www.seomoz.org/tools" title="SEO Moz">seomoz.org</a></li>
<li><a target="_blank" href="http://www.wordtracker.com/" title="Word Tracker">Word Tracker</a></li>
</div>
</ul>
<div class="clear"></div>
<h3>What The SEO Tool Does</h3>
<p><b>Search Engine Genie</b> &#8211; This site is not well known but it has quite a few really nice SEO tools that are free to use and they have a ton of really helpful articles.<br />
<b>Website Grader by HubSpot</b> &#8211; I use this site to get a good idea of where a site is and where it might need to be and get to.  HubSpot has a paid version of this that has a ton of really great SEO tools.  They have a free week trial of the system if I were you I would jump at the trial and see if you like it.<br />
<b>Google Adwords</b> &#8211; This is a great way to find out how heavily a keyword is being targeted.  I use this when ever i am looking for the really good keyword to get a site going.<br />
<b>Google Analytics</b> &#8211; Great tool if you are not using it you are loosing out.  My main use for this is to see what is bringing traffic into my site or my client sites.  With the name Google behind this you know that you are going to 1 get it for free and 2 get something that is great.<br />
<b>SEO Quake</b> &#8211; This is a plugin for Firefox that gives you a ton of really useful info that you need for SEO.  I know a few different people that this is the only tool that they use for SEO.<br />
<b>Site Explorer by Yahoo</b> &#8211; This is a useful tool for the yahoo search engine.  I prefer Google&#8217;s Analytics over this because it has more to it.<br />
<b>Google Trand</b> &#8211; Great tool by Google this lets you find the trends of the time so that you can find the really good keywords and SEO articles to write for traffic purposes.<br />
<b>Search Status</b> &#8211; I really enjoy using Search Status because of its simplicity.  I am a Firefox user and this is a Firefox plugin.<br />
<b>seomoz.org</b> &#8211; These people really know what they are doing with SEO.  They have a ton of free tools and they also have some really great paid tools.<br />
<b>Word tracker</b> &#8211; I personally have not used this service but i have heard from a ton of people that they are great.  It is a paid service but they do have a free trial.</p>
<h3>SEO Packages</h3>
<p>If you are in need of any Search Engine Optimization I do have packages and I can teach people how to do SEO. My monthly packages for SEO all depend on how much you want done. I charge $25US an hour. With that my recommended package would be 20 hours a month this will give you the best outcome. Of course the more hours you do the better outcome you will get but at 20 hours a month I can really get enough done to your site that it will show improvement a lot quicker and will make you more money faster. I also have a bunch more different packages and prices for web based projects, you can go to Work Prices.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen. Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Top%2010%20SEO%20Tools%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;t=Top%2010%20SEO%20Tools"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&title=Top%2010%20SEO%20Tools"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;title=Top%2010%20SEO%20Tools&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=What%20do%20you%20use%20for%20SEO%3F%20%20What%20do%20you%20consider%20the%20best%20tools%3F%20I%20have%20a%20list%20of%20SEO%20tools%20that%20I%20use%20daily.%20%20My%20list%20is%20a%20little%20more%20than%2010%20but%20I%20figured%20for%20simplicity%20I%20will%20give%20you%20the%20top%2010%20SEO%20tools%20that%20I%20use.%20%20The%20reason%20I%20am%20putting%20toget"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;title=Top%2010%20SEO%20Tools&amp;notes=What%20do%20you%20use%20for%20SEO%3F%20%20What%20do%20you%20consider%20the%20best%20tools%3F%20I%20have%20a%20list%20of%20SEO%20tools%20that%20I%20use%20daily.%20%20My%20list%20is%20a%20little%20more%20than%2010%20but%20I%20figured%20for%20simplicity%20I%20will%20give%20you%20the%20top%2010%20SEO%20tools%20that%20I%20use.%20%20The%20reason%20I%20am%20putting%20toget"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;title=Top%2010%20SEO%20Tools&amp;annotation=What%20do%20you%20use%20for%20SEO%3F%20%20What%20do%20you%20consider%20the%20best%20tools%3F%20I%20have%20a%20list%20of%20SEO%20tools%20that%20I%20use%20daily.%20%20My%20list%20is%20a%20little%20more%20than%2010%20but%20I%20figured%20for%20simplicity%20I%20will%20give%20you%20the%20top%2010%20SEO%20tools%20that%20I%20use.%20%20The%20reason%20I%20am%20putting%20toget"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;title=Top%2010%20SEO%20Tools&amp;bodytext=What%20do%20you%20use%20for%20SEO%3F%20%20What%20do%20you%20consider%20the%20best%20tools%3F%20I%20have%20a%20list%20of%20SEO%20tools%20that%20I%20use%20daily.%20%20My%20list%20is%20a%20little%20more%20than%2010%20but%20I%20figured%20for%20simplicity%20I%20will%20give%20you%20the%20top%2010%20SEO%20tools%20that%20I%20use.%20%20The%20reason%20I%20am%20putting%20toget"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;title=Top%2010%20SEO%20Tools"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1060'), event, 'post-1060')" onMouseOver="more(this,'post-1060')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-1060')" id="sociable-post-1060" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;t=Top%2010%20SEO%20Tools"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;t=Top%2010%20SEO%20Tools"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Top%2010%20SEO%20Tools&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;cat_id=6&amp;tag_id=31&amp;Remark=What%20do%20you%20use%20for%20SEO%3F%20%20What%20do%20you%20consider%20the%20best%20tools%3F%20I%20have%20a%20list%20of%20SEO%20tools%20that%20I%20use%20daily.%20%20My%20list%20is%20a%20little%20more%20than%2010%20but%20I%20figured%20for%20simplicity%20I%20will%20give%20you%20the%20top%2010%20SEO%20tools%20that%20I%20use.%20%20The%20reason%20I%20am%20putting%20toget"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;Title=Top%2010%20SEO%20Tools"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;title=Top%2010%20SEO%20Tools&amp;selection=What%20do%20you%20use%20for%20SEO%3F%20%20What%20do%20you%20consider%20the%20best%20tools%3F%20I%20have%20a%20list%20of%20SEO%20tools%20that%20I%20use%20daily.%20%20My%20list%20is%20a%20little%20more%20than%2010%20but%20I%20figured%20for%20simplicity%20I%20will%20give%20you%20the%20top%2010%20SEO%20tools%20that%20I%20use.%20%20The%20reason%20I%20am%20putting%20toget"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;t=Top%2010%20SEO%20Tools&amp;s=What%20do%20you%20use%20for%20SEO%3F%20%20What%20do%20you%20consider%20the%20best%20tools%3F%20I%20have%20a%20list%20of%20SEO%20tools%20that%20I%20use%20daily.%20%20My%20list%20is%20a%20little%20more%20than%2010%20but%20I%20figured%20for%20simplicity%20I%20will%20give%20you%20the%20top%2010%20SEO%20tools%20that%20I%20use.%20%20The%20reason%20I%20am%20putting%20toget"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Top%2010%20SEO%20Tools&body=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;title=Top%2010%20SEO%20Tools&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-1060',true)" class="close">























		  <img onclick="hide_sociable('post-1060',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Top 10 SEO Tools - http://www.shanestrong.com/work/top-10-seo-tools (via #sociablesite)" data-url="http://www.shanestrong.com/work/top-10-seo-tools" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/work/top-10-seo-tools&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Ftop-10-seo-tools&amp;title=Top%2010%20SEO%20Tools'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/work/top-10-seo-tools"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/work/top-10-seo-tools" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/work/top-10-seo-tools" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1060&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/work/top-10-seo-tools/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>SEO Optimization</title>
		<link>http://www.shanestrong.com/work/seo-optimization</link>
		<comments>http://www.shanestrong.com/work/seo-optimization#comments</comments>
		<pubDate>Fri, 07 Aug 2009 18:47:06 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Fast SEO]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[SEM]]></category>
		<category><![CDATA[SEO Optimized]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1048</guid>
		<description><![CDATA[What is SEO and how can it help me? That is the question you should be asking your self if you have a web site. SEO stands for Search Engine Optimization. How do you get your site to the top of search engines? Well this is a really great place to start. SEO optimization can [...]]]></description>
			<content:encoded><![CDATA[<p>What is SEO and how can it help me?  That is the question you should be asking your self if you have a web site.  SEO stands for Search Engine Optimization.  How do you get your site to the top of search engines?  Well this is a really great place to start.  SEO optimization can improve the traffic of your site and the sales of your site.  Basically SEO is what happens when you tell search engines what exactly you want people to search and find you as.  Well some people say that this can be hard because there are so many sites out there that it is almost impossible to get to the top.  Well those people are wrong.  With some great planning and strategy any site can make it to the top of any search engine.  For a example if you search the word Chosen in Google you will get 169,000,000 hits for just the word Chosen.  Well one of the companies that I own is Chosen LLC.  One of our sites is chosendevelopment.com you will find it at around 7 or 8 and rising.  Now we just started doing SEO on our Chosen Development site about 3 months ago.  Yes we spent a lot of time and planing in order to get to where we are now.</p>
<h3>Practical</h3>
<p>Now for a little practical look at SEO.  If someone came to me and said I want to be number one for the word Google I would look at you and tell you to talk to this company called Google.  Some things are not able to happen.  One of the biggest things with SEO is that it takes time.  Look at my site for instance I live in Michigan around the Lansing Area.  Now I am trying to get to the top for Lansing Web Design, Lansing Web Development, Michigan Web Design, Michigan Web Development, and a ton of other Michigan and Lansing combination&#8217;s.  Well I am finally getting there after 5 months of hard work.  One thing that most people don&#8217;t understand is that in order to get to the top for a certain word or phrase you have to beat out the competition.  That means you have to do research on what other people do, how they do it, where there flaws are, and how can you beat them.</p>
<h3>SEO Consists</h3>
<p>SEO and SEM are two totally different things people think that one goes with the other.  Well they are kind of right in the fact that they both assist each other.  SEM is Search Engine Marketing, this consists of stuff like Google Adsence, Post Writing, Building Backlinks, and a bunch of other things.  SEO is mainly focused around Meta tags and search engine submissions.  Meta tags are not a really big thing for SEO.  That is what people say.  Well I feel that they are still a very big thing.  Meta tags direct search engines on what to index on your site.  There are a ton&#8217;s of different Meta tag that you can use in SEO but the most important ones are Keywords, Descriptions, and Titles.  The last thing that I will leave you with is that everyone can do SEO and SEM.  SEM is a little easier for people because of all the social media places out there.  SEO is really hard and takes a lot of planning.  I would recommend everyone to leave SEO to the people that consider them self experts.  I am not saying don&#8217;t try to learn SEO or teach your self SEO because you could become one of those experts.</p>
<h3>SEO Packages</h3>
<p>If you are in need of any Search Engine Optimization I do have packages and I can teach people how to do SEO.  My monthly packages for SEO all depend on how much you want done.  I charge $25US an hour.  With that my recommended package would be 20 hours a month this will give you the best outcome.  Of course the more hours you do the better outcome you will get but at 20 hours a month I can really get enough done to your site that it will show improvement a lot quicker and will make you more money faster.  I also have a bunch more different packages and prices for web based projects, you can go to <a title="Web Design, Development, SEO, SEM, Marketing, Consulting, and Optimization" href="http://www.shanestrong.com/work-prices">Work Prices</a>.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen. Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=SEO%20Optimization%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;t=SEO%20Optimization"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&title=SEO%20Optimization"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;title=SEO%20Optimization&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=What%20is%20SEO%20and%20how%20can%20it%20help%20me%3F%20%20That%20is%20the%20question%20you%20should%20be%20asking%20your%20self%20if%20you%20have%20a%20web%20site.%20%20SEO%20stands%20for%20Search%20Engine%20Optimization.%20%20How%20do%20you%20get%20your%20site%20to%20the%20top%20of%20search%20engines%3F%20%20Well%20this%20is%20a%20really%20great%20place%20to"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;title=SEO%20Optimization&amp;notes=What%20is%20SEO%20and%20how%20can%20it%20help%20me%3F%20%20That%20is%20the%20question%20you%20should%20be%20asking%20your%20self%20if%20you%20have%20a%20web%20site.%20%20SEO%20stands%20for%20Search%20Engine%20Optimization.%20%20How%20do%20you%20get%20your%20site%20to%20the%20top%20of%20search%20engines%3F%20%20Well%20this%20is%20a%20really%20great%20place%20to"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;title=SEO%20Optimization&amp;annotation=What%20is%20SEO%20and%20how%20can%20it%20help%20me%3F%20%20That%20is%20the%20question%20you%20should%20be%20asking%20your%20self%20if%20you%20have%20a%20web%20site.%20%20SEO%20stands%20for%20Search%20Engine%20Optimization.%20%20How%20do%20you%20get%20your%20site%20to%20the%20top%20of%20search%20engines%3F%20%20Well%20this%20is%20a%20really%20great%20place%20to"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;title=SEO%20Optimization&amp;bodytext=What%20is%20SEO%20and%20how%20can%20it%20help%20me%3F%20%20That%20is%20the%20question%20you%20should%20be%20asking%20your%20self%20if%20you%20have%20a%20web%20site.%20%20SEO%20stands%20for%20Search%20Engine%20Optimization.%20%20How%20do%20you%20get%20your%20site%20to%20the%20top%20of%20search%20engines%3F%20%20Well%20this%20is%20a%20really%20great%20place%20to"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;title=SEO%20Optimization"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1048'), event, 'post-1048')" onMouseOver="more(this,'post-1048')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-1048')" id="sociable-post-1048" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;t=SEO%20Optimization"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;t=SEO%20Optimization"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=SEO%20Optimization&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;cat_id=6&amp;tag_id=31&amp;Remark=What%20is%20SEO%20and%20how%20can%20it%20help%20me%3F%20%20That%20is%20the%20question%20you%20should%20be%20asking%20your%20self%20if%20you%20have%20a%20web%20site.%20%20SEO%20stands%20for%20Search%20Engine%20Optimization.%20%20How%20do%20you%20get%20your%20site%20to%20the%20top%20of%20search%20engines%3F%20%20Well%20this%20is%20a%20really%20great%20place%20to"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;Title=SEO%20Optimization"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;title=SEO%20Optimization&amp;selection=What%20is%20SEO%20and%20how%20can%20it%20help%20me%3F%20%20That%20is%20the%20question%20you%20should%20be%20asking%20your%20self%20if%20you%20have%20a%20web%20site.%20%20SEO%20stands%20for%20Search%20Engine%20Optimization.%20%20How%20do%20you%20get%20your%20site%20to%20the%20top%20of%20search%20engines%3F%20%20Well%20this%20is%20a%20really%20great%20place%20to"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;t=SEO%20Optimization&amp;s=What%20is%20SEO%20and%20how%20can%20it%20help%20me%3F%20%20That%20is%20the%20question%20you%20should%20be%20asking%20your%20self%20if%20you%20have%20a%20web%20site.%20%20SEO%20stands%20for%20Search%20Engine%20Optimization.%20%20How%20do%20you%20get%20your%20site%20to%20the%20top%20of%20search%20engines%3F%20%20Well%20this%20is%20a%20really%20great%20place%20to"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=SEO%20Optimization&body=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;title=SEO%20Optimization&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-1048',true)" class="close">























		  <img onclick="hide_sociable('post-1048',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="SEO Optimization - http://www.shanestrong.com/work/seo-optimization (via #sociablesite)" data-url="http://www.shanestrong.com/work/seo-optimization" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/work/seo-optimization&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwork%2Fseo-optimization&amp;title=SEO%20Optimization'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/work/seo-optimization"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/work/seo-optimization" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/work/seo-optimization" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1048&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/work/seo-optimization/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>jQuery Hover</title>
		<link>http://www.shanestrong.com/lansing-web-design/jquery-hover</link>
		<comments>http://www.shanestrong.com/lansing-web-design/jquery-hover#comments</comments>
		<pubDate>Fri, 24 Jul 2009 03:05:35 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1003</guid>
		<description><![CDATA[As a developer I hate the fact that Internet Explorer is not up to date with their web browser. For instance the w3 has approved that you can use the :hover selector on anything not just a tags. Now most browsers do support the :hover selector but IE. Why they can&#8217;t catch up with times [...]]]></description>
			<content:encoded><![CDATA[<p>As a developer I hate the fact that Internet Explorer is not up to date with their web browser.  For instance the w3 has approved that you can use the :hover selector on anything not just a tags.  Now most browsers do support the :hover selector but IE.  Why they can&#8217;t catch up with times and be like everyone else is beyond my comprehension.  Well one really useful thing to fix this problem is jQuery Hover.  You can use jQuery Hover to give any object a hover state and it will work in IE and all other browsers.  Also you can have jQuery pull out the a tags href from inside any element.  For instance if you have some blocks with different information that you want to link to a certain page all you will have to do is make a box and call the a tags href.</p>
<h3>jQuery Hover State</h3>
<p>So to show you how to do this I am going to use my site under my main post on the homepage I have some of my recent post.  Now I want to have the full post area to have a jQuery hover state that changes the background.  So I would do this.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">$(document).ready(function() {
    //call the jQuery Hover Over and Out
    $('#YOURID').hover(over, out);
    //Tell the browser to change the background when hovered over
    function over(event) {
        $(this).css(&quot;background&quot;, &quot;url('Path To Your Image')&quot;);
	$(this).css(&quot;cursor&quot;, &quot;pointer&quot;);
    }
    //tell the browser to change the background to nothing when 
    //going outside the object area
    function out(event) {
	    $(this).css(&quot;background&quot;, &quot;&quot;);
	}
});</pre></div></div>

<h3>jQuery Hover with a click event</h3>
<p>If you want jQuery to do a hover state only then that will work for you but if you want to get the a tags href, so that when you click on the object area it will take you to that page.  You would have to add this after your jQuery hover code.  So now your jQuery code should be.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">$(document).ready(function() {
    //call the jQuery Hover Over and Out
    $('#YOURID').hover(over, out);
    //Tell the browser to change the background when hovered over
    function over(event) {
        $(this).css(&quot;background&quot;, &quot;url('Path To Your Image')&quot;);
	$(this).css(&quot;cursor&quot;, &quot;pointer&quot;);
    }
    //tell the browser to change the background to nothing 
    //when going outside the object area
    function out(event) {
	$(this).css(&quot;background&quot;, &quot;&quot;);
    }
    //This adds the click event to your object and tells it where to go
    $('#YOURID').click(function() {
	window.location=$(this).find(&quot;a&quot;).attr(&quot;href&quot;);
    });
});</pre></div></div>

<p>This is very useful to get around the IE problem and if someone checks your site they can see that you know jQuery.  If you need any help with this just let me know.  I would be more than willing to help.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you by chance need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen. Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you. </p>
<h3>Sponsors</h3>
<p>Get your <a target="_blank" href="http://www.lusterforever.com/department/charm-bracelet-10036.cfm">charm bracelets</a> in time for the new year. LusterForever.com features a complete collection of such bracelets.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=jQuery%20Hover%20-%20http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;t=jQuery%20Hover"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&title=jQuery%20Hover"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover&amp;notes=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover&amp;annotation=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover&amp;bodytext=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1003'), event, 'post-1003')" onMouseOver="more(this,'post-1003')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-1003')" id="sociable-post-1003" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;t=jQuery%20Hover"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;t=jQuery%20Hover"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=jQuery%20Hover&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;cat_id=6&amp;tag_id=31&amp;Remark=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;Title=jQuery%20Hover"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover&amp;selection=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;t=jQuery%20Hover&amp;s=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=jQuery%20Hover&body=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-1003',true)" class="close">























		  <img onclick="hide_sociable('post-1003',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="jQuery Hover - http://www.shanestrong.com/lansing-web-design/jquery-hover (via #sociablesite)" data-url="http://www.shanestrong.com/lansing-web-design/jquery-hover" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/lansing-web-design/jquery-hover&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/lansing-web-design/jquery-hover"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/lansing-web-design/jquery-hover" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/lansing-web-design/jquery-hover" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1003&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/lansing-web-design/jquery-hover/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How To Install Magento Themes</title>
		<link>http://www.shanestrong.com/chosen/how-to-install-magento-themes</link>
		<comments>http://www.shanestrong.com/chosen/how-to-install-magento-themes#comments</comments>
		<pubDate>Thu, 23 Jul 2009 03:35:30 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Magento Themes]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=989</guid>
		<description><![CDATA[One of the biggest and best e-commerce shopping carts is Magento. Magento has a free version at Magento Commerce. This system can be quite confusing when you are trying to change your theme. It isn&#8217;t like most other systems where you get one folder and all you have to do is upload it and activate [...]]]></description>
			<content:encoded><![CDATA[<p>One of the biggest and best e-commerce shopping carts is Magento.  Magento has a free version at <a target="_blank" href="http://www.magentocommerce.com/download">Magento Commerce</a>.  This system can be quite confusing when you are trying to change your theme.  It isn&#8217;t like most other systems where you get one folder and all you have to do is upload it and activate it.  I have put together a walk through on how to install/change your Magento theme.</p>
<p>First off you have to go out and find a Magento theme.  Some of these are quite expensive but come with much more than just your typical free one.  The first place I would check for themes is <a target="_blank" href="http://ecommerce-themes.com/">ecommerce-themes</a> they have quite a few really nice looking themes for you to download.  After getting your theme, it should come in a zip file extract those on your computer.  Inside the extracted folder you should get two folder called app and skin.<br />
The next thing you have to do is add those folders to your Magento installation.  This requires you to ftp into your site.  The app and skin folders go in different places.  The app folder needs to be uploaded to your <b>magento/app/design/frontend/default</b> directory and your skin folder needs to be uploaded in your <b>magento/skin/frontend/default</b> directory.</p>
<h3>Magento CMS Manage Pages</h3>
<p>Now that you have these folder in your Magento site we have to go through the admin to tell the site to use the new theme.  First log in to your admin and go to the CMS tab and them manage pages.</p>
<p><img src="http://www.shanestrong.com/wp-content/uploads/2009/07/Magento-CMS-Pages.jpg" alt="Magento CMS Pages" title="Magento CMS Pages" width="400" height="250" class="alignnone size-full wp-image-994" /></p>
<h3>Custom Design Pages</h3>
<p>Inside there you will have to change every pages custom design to your new theme name you installed.</p>
<p><img src="http://www.shanestrong.com/wp-content/uploads/2009/07/Magento-Custom-Design-Pages.jpg" alt="Magento Custom Design Pages" title="Magento Custom Design Pages" width="400" height="153" class="alignnone size-full wp-image-995" /></p>
<h3>System Configure Design</h3>
<p>Next you will have to go to the System tab and then Configure.  Inside the Configuration section go under Design and change all of the relevant fields to your new theme name.  Make sure you save everything and your theme should be up and ready to go.</p>
<p><img src="http://www.shanestrong.com/wp-content/uploads/2009/07/System-Configure-Design.jpg" alt="System Configure Design" title="System Configure Design" width="400" height="231" class="alignnone size-full wp-image-996" /></p>
<h3>Magento And  Hosting</h3>
<p>Something that I would recommend would be getting a server from peer1 hosting.  They have managed private cloud servers with <a target="_blank" href="http://www.peer1.com/hosting/private-cloud.php" title="vm ware hosting">vm ware hosting</a>.  This will make it easy to work with multiple operating systems and have a great IT support team on call 24/7/365.  For more information check out peer1.com private cloud documentation and pricing.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen. Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you. </p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=How%20To%20Install%20Magento%20Themes%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;t=How%20To%20Install%20Magento%20Themes"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&title=How%20To%20Install%20Magento%20Themes"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;title=How%20To%20Install%20Magento%20Themes&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=One%20of%20the%20biggest%20and%20best%20e-commerce%20shopping%20carts%20is%20Magento.%20%20Magento%20has%20a%20free%20version%20at%20Magento%20Commerce.%20%20This%20system%20can%20be%20quite%20confusing%20when%20you%20are%20trying%20to%20change%20your%20theme.%20%20It%20isn%27t%20like%20most%20other%20systems%20where%20you%20get%20one%20folde"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;title=How%20To%20Install%20Magento%20Themes&amp;notes=One%20of%20the%20biggest%20and%20best%20e-commerce%20shopping%20carts%20is%20Magento.%20%20Magento%20has%20a%20free%20version%20at%20Magento%20Commerce.%20%20This%20system%20can%20be%20quite%20confusing%20when%20you%20are%20trying%20to%20change%20your%20theme.%20%20It%20isn%27t%20like%20most%20other%20systems%20where%20you%20get%20one%20folde"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;title=How%20To%20Install%20Magento%20Themes&amp;annotation=One%20of%20the%20biggest%20and%20best%20e-commerce%20shopping%20carts%20is%20Magento.%20%20Magento%20has%20a%20free%20version%20at%20Magento%20Commerce.%20%20This%20system%20can%20be%20quite%20confusing%20when%20you%20are%20trying%20to%20change%20your%20theme.%20%20It%20isn%27t%20like%20most%20other%20systems%20where%20you%20get%20one%20folde"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;title=How%20To%20Install%20Magento%20Themes&amp;bodytext=One%20of%20the%20biggest%20and%20best%20e-commerce%20shopping%20carts%20is%20Magento.%20%20Magento%20has%20a%20free%20version%20at%20Magento%20Commerce.%20%20This%20system%20can%20be%20quite%20confusing%20when%20you%20are%20trying%20to%20change%20your%20theme.%20%20It%20isn%27t%20like%20most%20other%20systems%20where%20you%20get%20one%20folde"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;title=How%20To%20Install%20Magento%20Themes"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-989'), event, 'post-989')" onMouseOver="more(this,'post-989')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-989')" id="sociable-post-989" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;t=How%20To%20Install%20Magento%20Themes"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;t=How%20To%20Install%20Magento%20Themes"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=How%20To%20Install%20Magento%20Themes&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;cat_id=6&amp;tag_id=31&amp;Remark=One%20of%20the%20biggest%20and%20best%20e-commerce%20shopping%20carts%20is%20Magento.%20%20Magento%20has%20a%20free%20version%20at%20Magento%20Commerce.%20%20This%20system%20can%20be%20quite%20confusing%20when%20you%20are%20trying%20to%20change%20your%20theme.%20%20It%20isn%27t%20like%20most%20other%20systems%20where%20you%20get%20one%20folde"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;Title=How%20To%20Install%20Magento%20Themes"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;title=How%20To%20Install%20Magento%20Themes&amp;selection=One%20of%20the%20biggest%20and%20best%20e-commerce%20shopping%20carts%20is%20Magento.%20%20Magento%20has%20a%20free%20version%20at%20Magento%20Commerce.%20%20This%20system%20can%20be%20quite%20confusing%20when%20you%20are%20trying%20to%20change%20your%20theme.%20%20It%20isn%27t%20like%20most%20other%20systems%20where%20you%20get%20one%20folde"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;t=How%20To%20Install%20Magento%20Themes&amp;s=One%20of%20the%20biggest%20and%20best%20e-commerce%20shopping%20carts%20is%20Magento.%20%20Magento%20has%20a%20free%20version%20at%20Magento%20Commerce.%20%20This%20system%20can%20be%20quite%20confusing%20when%20you%20are%20trying%20to%20change%20your%20theme.%20%20It%20isn%27t%20like%20most%20other%20systems%20where%20you%20get%20one%20folde"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=How%20To%20Install%20Magento%20Themes&body=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;title=How%20To%20Install%20Magento%20Themes&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-989',true)" class="close">























		  <img onclick="hide_sociable('post-989',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="How To Install Magento Themes - http://www.shanestrong.com/chosen/how-to-install-magento-themes (via #sociablesite)" data-url="http://www.shanestrong.com/chosen/how-to-install-magento-themes" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/chosen/how-to-install-magento-themes&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-install-magento-themes&amp;title=How%20To%20Install%20Magento%20Themes'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/chosen/how-to-install-magento-themes"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/chosen/how-to-install-magento-themes" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/chosen/how-to-install-magento-themes" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=989&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/chosen/how-to-install-magento-themes/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To jQuery Toggle</title>
		<link>http://www.shanestrong.com/chosen/how-to-jquery-toggle</link>
		<comments>http://www.shanestrong.com/chosen/how-to-jquery-toggle#comments</comments>
		<pubDate>Wed, 22 Jul 2009 08:09:48 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Chosen]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=950</guid>
		<description><![CDATA[jQuery was made to change the way that you write JavaScript. jQuery has tons of really nice effects that you can experiment with. One of my favorite things to do with jQuery is to do a toggle this is a really simple effect to do but will make people go WOW when they see it. [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery was made to change the way that you write JavaScript.  jQuery has tons of really nice effects that you can experiment with.  One of my favorite things to do with jQuery is to do a toggle this is a really simple effect to do but will make people go WOW when they see it.  You can use the toggle effect in multiple different way most of the time people just use the toggle up to down or toggle left to right.  But some people don&#8217;t know that you can use jQuery toggle to go from your upper left or right corner to the opposite corner.  Well here is some code that you can reference on different ways to toggle.</p>
<h2>Lets do the easy toggles first</h2>
<h3>Top To Bottom</h3>
<p>I am doing this for the comments section of most WordPress sites.  First you have to give the identify what the outer most container is of your comments section.  Mine is id comments.  So just to the top of my comments section I need to create a button but you don&#8217;t have to use a button it is just the easiest to explain.  So you should have something that looks like this.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;button id=&quot;comments_bottom&quot;&gt;This Is A Toggle Button&lt;/button&gt;
&lt;div id=&quot;comment&quot;&gt;
//Your Comment Code
&lt;/div&gt;</pre></div></div>

<p>You will notice that I gave the button a id that is so that jQuery can find it.  Next you have to create your js file.  I would name it something like toggle.js.  It should look like this depending on which way you want your content to toggle.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">//Top To Bottom
$(document).ready(function() {
	$(&quot;#comment&quot;).hide();
	$(&quot;#comments_button&quot;).click(function() {
		$(&quot;#comment&quot;).animate({height: &quot;toggle&quot;}, 1000);
	});
});
//Left To Right Or Right To Left
//In order to do either you must float your #comment 
//the direction you want your content to come from!
$(document).ready(function() {
	$(&quot;#comment&quot;).hide();
	$(&quot;#comments_button&quot;).click(function() {
		$(&quot;#comment&quot;).animate({width: &quot;toggle&quot;}, 1000);
	});
});
//Upper Left To Lower Right Or Upper Right To Lower Left
//These ones you also have to float from the direction 
//they are coming from!
$(document).ready(function() {
	$(&quot;#comment&quot;).hide();
	$(&quot;#comments_button&quot;).click(function() {
		$(&quot;#comment&quot;).animate({width: &quot;toggle&quot;, 
                    height: &quot;toggle&quot;}, 1000);
	});
});</pre></div></div>

<p>Now all you have to do is call your jQuery script and a jQuery library and your toggle up to down should work.  I use the Google library because of how quick it is.  You can find more info about the Google library here  <a target="_blank" href="http://code.google.com/apis/ajaxlibs/documentation/">jQuery Library</a></p>
<h3>Other Ways To Toggle</h3>
<p>There are a few other ways to do a toggle like from bottom to top and bottom corners to top corners.  There is also some other things that you can do with toggle like fading.  jQuery has a lot of really easy and light things that you can do to your site to make it just that much better.  If I were you I would take a look at their site <a target="_blank" href="http://jquery.com">jQuery</a>.</p>
<h3><a target="_blank" href="http://chosendevelopment.com" title="Chosen">Website Design , Development, and SEO Marketing</a></h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen. Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=How%20To%20jQuery%20Toggle%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;t=How%20To%20jQuery%20Toggle"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&title=How%20To%20jQuery%20Toggle"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle&amp;notes=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle&amp;annotation=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle&amp;bodytext=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-950'), event, 'post-950')" onMouseOver="more(this,'post-950')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-950')" id="sociable-post-950" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;t=How%20To%20jQuery%20Toggle"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;t=How%20To%20jQuery%20Toggle"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=How%20To%20jQuery%20Toggle&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;cat_id=6&amp;tag_id=31&amp;Remark=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;Title=How%20To%20jQuery%20Toggle"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle&amp;selection=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;t=How%20To%20jQuery%20Toggle&amp;s=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=How%20To%20jQuery%20Toggle&body=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-950',true)" class="close">























		  <img onclick="hide_sociable('post-950',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="How To jQuery Toggle - http://www.shanestrong.com/chosen/how-to-jquery-toggle (via #sociablesite)" data-url="http://www.shanestrong.com/chosen/how-to-jquery-toggle" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/chosen/how-to-jquery-toggle&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/chosen/how-to-jquery-toggle"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/chosen/how-to-jquery-toggle" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/chosen/how-to-jquery-toggle" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=950&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/chosen/how-to-jquery-toggle/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Build A Website Traffic Jam</title>
		<link>http://www.shanestrong.com/seo/build-a-website-traffic-jam</link>
		<comments>http://www.shanestrong.com/seo/build-a-website-traffic-jam#comments</comments>
		<pubDate>Thu, 09 Jul 2009 19:05:35 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Chosen Creative]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Fast SEO]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=935</guid>
		<description><![CDATA[Most people look at their website and go why am I not getting traffic to it. Well if you just look at the site it won&#8217;t build any traffic. My question to you is would you like to have a traffic jam on your website. I would because that means my site is getting so [...]]]></description>
			<content:encoded><![CDATA[<p>Most people look at their website and go why am I not getting traffic to it.  Well if you just look at the site it won&#8217;t build any traffic.  My question to you is would you like to have a traffic jam on your website.  I would because that means my site is getting so much traffic I am going to have to upgrade my servers.  Wouldn&#8217;t that be great so much traffic that your server crashes.  Most people have no idea on how to create traffic to their site let alone just doing that basics to gain traffic.  Well I am going to give you a breakdown of some of the basics to building traffic.  Just so you know building traffic takes time and sometimes money.</p>
<h3>Traffic Meta Breakdown</h3>
<p>Back in the day all traffic came from your meta tags and your keywords.  Don&#8217;t get me wrong these are still very useful but they don&#8217;t build you as much traffic because of the millions of website out there.  To give you an example I would love to be the number 1 site on Google for web design well that really isn&#8217;t practical it is possible but when you search <strong>web design</strong> you get 343,000,000 that is how many pages are being crawled with the words <strong>web design</strong>.  Now I am not saying don&#8217;t try to get to the top of the list.  Defiantly try but try for something a little smaller like for instance I am from Michigan and so I am trying to get top for <strong>Lansing Web Design</strong> and <strong>Michigan Web Design</strong>.  If you search Lansing Web Design I am close to the top.  Now if I use keywords like that and try to focus on a smaller scale my site will rise on the bigger scale.<br />
Your keyword meta tag is important but you have two other tags that are even more important your title meta tag and description meta tag.  Your title meta tag is different from your normal title tag because it is what the browsers look at first and way a lot of their decisions on.  The regular title tag is also very important it should be used everywhere that it is possible.</p>
<h3>Best Ways To Produce Traffic</h3>
<p>Here is a list of some really good ways to build traffic to your site.<br />
1) Submitting &#8211; You must submit your site to search engines.<br />
2) Use a favicon.ico<br />
3) Depending on what your site is about submit it to other sites with that kind of material.<br />
4) Have a lot of content.  This still has to be good content.  Pictures really bring in lots of traffic.<br />
5) Use your META tags effectively. <a target="_blank" href="http://webnet77.com/webstuff/optimize.html">META help</a><br />
6) Advertise with google or other advertising companies.<br />
7) Use Social Media by talking about your site.</p>
<p>Probably the fastest way to get traffic to your site is pay per click.  Yes it is going to cost you but in the long run of things it will be worth it.  Some people think that after doing these things your site will just magically appear at the top of Google or Yahoo but it won&#8217;t.  Building a vast amount of traffic takes time and some times money.</p>
<h3><a target="_blank" href="http://chosendevelopment.com">Website Design , Development, and SEO Marketing</a></h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact <a target="_blank" href="http://www.chosendevelopment.com">Chosen</a>. <a target="_blank" href="http://www.chosendevelopment.com">Chosen</a> is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Build%20A%20Website%20Traffic%20Jam%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;t=Build%20A%20Website%20Traffic%20Jam"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&title=Build%20A%20Website%20Traffic%20Jam"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam&amp;notes=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam&amp;annotation=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam&amp;bodytext=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-935'), event, 'post-935')" onMouseOver="more(this,'post-935')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-935')" id="sociable-post-935" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;t=Build%20A%20Website%20Traffic%20Jam"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;t=Build%20A%20Website%20Traffic%20Jam"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Build%20A%20Website%20Traffic%20Jam&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;cat_id=6&amp;tag_id=31&amp;Remark=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;Title=Build%20A%20Website%20Traffic%20Jam"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam&amp;selection=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;t=Build%20A%20Website%20Traffic%20Jam&amp;s=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Build%20A%20Website%20Traffic%20Jam&body=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-935',true)" class="close">























		  <img onclick="hide_sociable('post-935',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Build A Website Traffic Jam - http://www.shanestrong.com/seo/build-a-website-traffic-jam (via #sociablesite)" data-url="http://www.shanestrong.com/seo/build-a-website-traffic-jam" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/seo/build-a-website-traffic-jam&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/seo/build-a-website-traffic-jam"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/seo/build-a-website-traffic-jam" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/seo/build-a-website-traffic-jam" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=935&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/seo/build-a-website-traffic-jam/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Choosing A CMS</title>
		<link>http://www.shanestrong.com/chosen/choosing-a-cms</link>
		<comments>http://www.shanestrong.com/chosen/choosing-a-cms#comments</comments>
		<pubDate>Thu, 02 Jul 2009 07:52:10 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Chosen Creative]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Lansing Area]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=916</guid>
		<description><![CDATA[Website Planning What is it that you are looking for in your site? What would you like your site to do? How often are you planning on updating your site? Would you like to have the ability to change your site? Well these are some of the questions that we ask a client that comes [...]]]></description>
			<content:encoded><![CDATA[<h3>Website Planning</h3>
<p>What is it that you are looking for in your site?  What would you like your site to do?  How often are you planning on updating your site?  Would you like to have the ability to change your site?  Well these are some of the questions that we ask a client that comes to us wanting a site.  Most people don&#8217;t understand that their is much more to a site then just having a idea of &#8220;I need a site&#8221; or &#8220;my company needs a site.&#8221;  With these questions that I have asked it starts me thinking would it be better for my client to have a CMS or not.  A CMS is a Content Management System it is used to give the buyer the ability to make small changes to the site pages in case they may need to change some text or something little.  Once I find out that my client may need a CMS then comes the point of giving the client a CMS that will work with their needs.  For instance if a client came to me and said that they would like a site that has a blog area that they could update daily.  The first thing that comes to my mind is WordPress.  Let alone WordPress is very user friendly it has so many capabilities and plugins that are free.  If my client came to me and said that they would like a site that they would only have to change about every 6 months or more.  I would probably look at either building the site with static information or using a smaller CMS.  My personal preference would be Frog CMS.  It is easy to learn and is easy to customize because of its small size.  Their are a lot of different opinions on what is the best CMS.  I don&#8217;t really think their is a &#8220;best&#8221; I feel that it really depends on the situation and the developers preference.  A short list of some of the free CMS&#8217;s out their:</p>
<h3>Most Known</h3>
<ul>
<li><a target="_blank" href="http://www.wordpress.org">WordPress</a></li>
<li><a target="_blank" href="http://drupal.org/">Drupal</a></li>
<li><a target="_blank" href="http://www.joomla.org/">Joomla</a></li>
</ul>
<h3>Not So Known</h3>
<ul>
<li><a target="_blank" href="http://www.madebyfrog.com/">Frog CMS</a></li>
<li><a target="_blank" href="http://www.mediawiki.org/wiki/MediaWiki">Media Wiki</a></li>
<li><a target="_blank" href="http://typo3.com/">Typo3 CMS</a></li>
<li><a target="_blank" href="http://moodle.org/">Moodle</a></li>
<li><a target="_blank" href="http://www.boonex.com/products/dolphin/">Dolphin</a></li>
<li><a target="_blank" href="http://www.pligg.com/">Pligg CMS</a></li>
<li><a target="_blank" href="http://www.movabletype.org/">Movable Type</a></li>
<li><a target="_blank" href="http://www.xoops.org/">Xoops</a></li>
<li><a target="_blank" href="http://www.geeklog.net/">Geeklog</a></li>
<li><a target="_blank" href="http://e107.org/news.php">e107</a></li>
<li>Mambo</li>
<li><a target="_blank" href="http://nucleuscms.org/">Nucleus CMS</a></li>
</ul>
<h3>My Opinion</h3>
<p>This is just a few of the vast amount of CMS&#8217;s out their that you can choose from.  Note that all of these are free open source CMS&#8217;s.  I have mt own opinion about these CMS&#8217;s and I believe even though Drupal and Joomla are two of the biggest CMS&#8217;s they are two of the most complicated.  I personally would stick with WordPress for blog sites and for smaller sites I would go with Frog CMS but this is my personal opinion.  I would say defiantly try out multiple CMS&#8217;s to see what you build a preference to.  If you have tried out any of the CMS&#8217;s on the list or any that are not on the list please feel free to leave a comment about them.</p>
<h3>Web Design And Development</h3>
<p>If you by change need web design or web development done to one of your sites you can get in contact with me or you can contact <a target="_blank" href="http://chosendevelopment.com" title="Chosen">Chosen</a>.  Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm.  We are small but are growing in the Lansing Area for our Web Design and Development skills.  We have done work for clients and companies.  We prefer client work but we also take contract work.  We have worked with most of the biggest web companies in the Lansing Area and all the way out to California.  We would love to hear from you.  </p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Choosing%20A%20CMS%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;t=Choosing%20A%20CMS"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&title=Choosing%20A%20CMS"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS&amp;notes=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS&amp;annotation=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS&amp;bodytext=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-916'), event, 'post-916')" onMouseOver="more(this,'post-916')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-916')" id="sociable-post-916" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;t=Choosing%20A%20CMS"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;t=Choosing%20A%20CMS"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Choosing%20A%20CMS&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;cat_id=6&amp;tag_id=31&amp;Remark=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;Title=Choosing%20A%20CMS"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS&amp;selection=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;t=Choosing%20A%20CMS&amp;s=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Choosing%20A%20CMS&body=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-916',true)" class="close">























		  <img onclick="hide_sociable('post-916',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Choosing A CMS - http://www.shanestrong.com/chosen/choosing-a-cms (via #sociablesite)" data-url="http://www.shanestrong.com/chosen/choosing-a-cms" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/chosen/choosing-a-cms&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/chosen/choosing-a-cms"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/chosen/choosing-a-cms" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/chosen/choosing-a-cms" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=916&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/chosen/choosing-a-cms/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>New WordPress Features</title>
		<link>http://www.shanestrong.com/wordpress-help/new-wordpress-features</link>
		<comments>http://www.shanestrong.com/wordpress-help/new-wordpress-features#comments</comments>
		<pubDate>Fri, 26 Jun 2009 16:12:03 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Shane]]></category>
		<category><![CDATA[Theme Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress-Help]]></category>
		<category><![CDATA[Powered by WordPress]]></category>
		<category><![CDATA[Shane Strong]]></category>
		<category><![CDATA[WordPress Theme Developer]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=907</guid>
		<description><![CDATA[New Release 2.8 With the new release of WordPress 2.8 the developers really took in what people had to say and made some vast changes to the content management system. One of the biggest changes that the team made that the end user and really the admin won&#8217;t really see is the database changes. The [...]]]></description>
			<content:encoded><![CDATA[<h3>New Release 2.8</h3>
<p>With the new release of WordPress 2.8 the developers really took in what people had to say and made some vast changes to the content management system.  One of the biggest changes that the team made that the end user and really the admin won&#8217;t really see is the database changes.  The WordPress team made the database much more efficient and much faster that allows for faster page load in the admin and load for the site.  WordPress added some much needed functionality that helps the developer perform much faster.  Some of those changes include.</p>
<h3>Functionality Changes</h3>
<ul>
<li>Theme and Plugin Editor</li>
<li>Theme Installer</li>
<li>Plugin Management</li>
</ul>
<h3>WordPress Changes</h3>
<p>These are just some of the changes that WordPress implemented in the 2.8 release.  All three of these changes speed up the development process on creating a theme for a site.  I will be the first one to say that I use previously developed themes and recreate off of them because it is much faster just to use already created code.  With using a already created theme it used to be a pain to have to ftp into your site and add the theme into the theme directory for your site.  With the implementation of the Theme Installer you can upload a theme in its zip file or you can search the WordPress database for a theme.  Much faster than having to go out and download the theme and then upload it to the theme folder.  Now I have always been against using the theme/plugin editor that was built into the content management system but now that it is changed I have been using it for little changes but I still use a outside code editor.  They made some great changes with it like the ability for line numbers and the function dropdown at the bottom of it.  The new creation of how you manage plugins is great with the ability to deactivate each plugin individually and delete each one without having to go to the top of the page and click the dropdown and select delete.  Probably the best thing with the plugin managment upgrade is the update feature that allows you to update each plugin right there.</p>
<h3>Stuff Not Really Noticed</h3>
<p>WordPress has implemented quite a few thing that the end user will not really notice but will be really affective like the ability to automatically update time when it is daylight savings time.  Also the ability to control the columns on the dashboard page is also a plus for the admin so they can stay updated with whatever it is they have on the dashboard.  Another little change that helps the admin users is the recreation of the widget panel.  Now with more intuitive activity, it makes it easier to add widgets to the sidebars.  One of my favorite things that WordPress implemented is a popup banner to inform the admin that they have not changed the auto generated password.</p>
<h3>Your Questions</h3>
<p>The only question about this new installation of WordPress is what could they possibly do to the platform next to make it even better?  If you have any ideas and don&#8217;t want to submit them please leave a comment on the post and I will submit them for you.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=New%20WordPress%20Features%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;t=New%20WordPress%20Features"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&title=New%20WordPress%20Features"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;title=New%20WordPress%20Features&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=New%20Release%202.8%0D%0AWith%20the%20new%20release%20of%20WordPress%202.8%20the%20developers%20really%20took%20in%20what%20people%20had%20to%20say%20and%20made%20some%20vast%20changes%20to%20the%20content%20management%20system.%20%20One%20of%20the%20biggest%20changes%20that%20the%20team%20made%20that%20the%20end%20user%20and%20really%20the%20a"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;title=New%20WordPress%20Features&amp;notes=New%20Release%202.8%0D%0AWith%20the%20new%20release%20of%20WordPress%202.8%20the%20developers%20really%20took%20in%20what%20people%20had%20to%20say%20and%20made%20some%20vast%20changes%20to%20the%20content%20management%20system.%20%20One%20of%20the%20biggest%20changes%20that%20the%20team%20made%20that%20the%20end%20user%20and%20really%20the%20a"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;title=New%20WordPress%20Features&amp;annotation=New%20Release%202.8%0D%0AWith%20the%20new%20release%20of%20WordPress%202.8%20the%20developers%20really%20took%20in%20what%20people%20had%20to%20say%20and%20made%20some%20vast%20changes%20to%20the%20content%20management%20system.%20%20One%20of%20the%20biggest%20changes%20that%20the%20team%20made%20that%20the%20end%20user%20and%20really%20the%20a"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;title=New%20WordPress%20Features&amp;bodytext=New%20Release%202.8%0D%0AWith%20the%20new%20release%20of%20WordPress%202.8%20the%20developers%20really%20took%20in%20what%20people%20had%20to%20say%20and%20made%20some%20vast%20changes%20to%20the%20content%20management%20system.%20%20One%20of%20the%20biggest%20changes%20that%20the%20team%20made%20that%20the%20end%20user%20and%20really%20the%20a"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;title=New%20WordPress%20Features"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-907'), event, 'post-907')" onMouseOver="more(this,'post-907')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-907')" id="sociable-post-907" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;t=New%20WordPress%20Features"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;t=New%20WordPress%20Features"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=New%20WordPress%20Features&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;cat_id=6&amp;tag_id=31&amp;Remark=New%20Release%202.8%0D%0AWith%20the%20new%20release%20of%20WordPress%202.8%20the%20developers%20really%20took%20in%20what%20people%20had%20to%20say%20and%20made%20some%20vast%20changes%20to%20the%20content%20management%20system.%20%20One%20of%20the%20biggest%20changes%20that%20the%20team%20made%20that%20the%20end%20user%20and%20really%20the%20a"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;Title=New%20WordPress%20Features"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;title=New%20WordPress%20Features&amp;selection=New%20Release%202.8%0D%0AWith%20the%20new%20release%20of%20WordPress%202.8%20the%20developers%20really%20took%20in%20what%20people%20had%20to%20say%20and%20made%20some%20vast%20changes%20to%20the%20content%20management%20system.%20%20One%20of%20the%20biggest%20changes%20that%20the%20team%20made%20that%20the%20end%20user%20and%20really%20the%20a"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;t=New%20WordPress%20Features&amp;s=New%20Release%202.8%0D%0AWith%20the%20new%20release%20of%20WordPress%202.8%20the%20developers%20really%20took%20in%20what%20people%20had%20to%20say%20and%20made%20some%20vast%20changes%20to%20the%20content%20management%20system.%20%20One%20of%20the%20biggest%20changes%20that%20the%20team%20made%20that%20the%20end%20user%20and%20really%20the%20a"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=New%20WordPress%20Features&body=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;title=New%20WordPress%20Features&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-907',true)" class="close">























		  <img onclick="hide_sociable('post-907',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="New WordPress Features - http://www.shanestrong.com/wordpress-help/new-wordpress-features (via #sociablesite)" data-url="http://www.shanestrong.com/wordpress-help/new-wordpress-features" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/wordpress-help/new-wordpress-features&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fnew-wordpress-features&amp;title=New%20WordPress%20Features'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/wordpress-help/new-wordpress-features"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/wordpress-help/new-wordpress-features" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/wordpress-help/new-wordpress-features" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=907&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/wordpress-help/new-wordpress-features/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Windows 7 Release Candidate Download</title>
		<link>http://www.shanestrong.com/windows-7/windows-7-release-candidate-download</link>
		<comments>http://www.shanestrong.com/windows-7/windows-7-release-candidate-download#comments</comments>
		<pubDate>Thu, 14 May 2009 19:57:04 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=799</guid>
		<description><![CDATA[Windows 7 Microsoft next operating system is out to the public yet again. Microsoft did something that was not normal when they released the different Beta versions to the public. Now Microsoft has released the release candidate to the public as well. This is normally something that only gets released to the MSDN users. When [...]]]></description>
			<content:encoded><![CDATA[<p>Windows 7 Microsoft next operating system is out to the public yet again.  Microsoft did something that was not normal when they released the different Beta versions to the public.  Now Microsoft has released the release candidate to the public as well.  This is normally something that only gets released to the MSDN users.  When you download the release candidate it comes with a activation key that is good from when you activate it to June 1, 2010.  This is almost 5 months after the actual release date is for Windows 7.</p>
<p>Windows 7 has came a long way from Windows Vista with a much smaller and faster system.  The system requirements are almost smaller than what was needed for Windows XP.  Here are some of the computer requirements necessary for Windows 7 to runs.</p>
<h3>For the Basic Windows 7 -</h3>
<ul>
<li>1 GHz 32-bit (x86) or 64-bit (x64) processor</li>
<li>512 MB of system memory</li>
<li>20 GB hard drive with at least 15 GB available space</li>
<li>Support for DirectX 9 graphics and 32 MB of graphics memory</li>
<li>DVD-ROM drive</li>
<li>Audio Output</li>
<li>Internet Access</li>
</ul>
<h3>For the Premium Windows 7 -</h3>
<ul>
<li>1 GHz 32-bit (x86) or 64-bit (x64) processor</li>
<li>1 GB of system memory</li>
<li>40 GB hard drive with at least 15 GB of available space</li>
<li> Support for DirectX 9 graphics with:</li>
</ul>
<ol>
<li> WDDM Driver</li>
<li>128 MB of graphics memory (minimum)</li>
<li>Pixel Shader 2.0 in hardware</li>
</ol>
<ul>
<li>32 bits per pixel</li>
<li>DVD-ROM drive</li>
<li>Audio Output</li>
<li>Internet Access</li>
</ul>
<p>If you would like to check out Windows 7 for your self you can go to:</p>
<ul>
<li><a target="_blank" href="http://www.microsoft.com/windows/windows-7/default.aspx">Windows 7 Home</a></li>
<li><a target="_blank" href="http://www.microsoft.com/windows/windows-7/whats-new.aspx">Windows 7 What&#8217;s New</a></li>
<li><a target="_blank" href="http://www.microsoft.com/windows/windows-7/videos.aspx">Windows 7 Videos</a></li>
<li><a target="_blank" href="http://www.microsoft.com/windows/windows-7/download.aspx">Download Windows 7</a></li>
</ul>
<p>Some of the new feature&#8217;s to Windows 7 are state of the art and very cool and creative.  My favorite is the Aero Shake.  Please take a look at Windows 7 and share your input about what could change and be advanced.</p>
<p><!-- ckey="6F46377B" --></p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Windows%207%20Release%20Candidate%20Download%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;t=Windows%207%20Release%20Candidate%20Download"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&title=Windows%207%20Release%20Candidate%20Download"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;title=Windows%207%20Release%20Candidate%20Download&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=Windows%207%20Microsoft%20next%20operating%20system%20is%20out%20to%20the%20public%20yet%20again.%20%20Microsoft%20did%20something%20that%20was%20not%20normal%20when%20they%20released%20the%20different%20Beta%20versions%20to%20the%20public.%20%20Now%20Microsoft%20has%20released%20the%20release%20candidate%20to%20the%20public%20as%20we"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;title=Windows%207%20Release%20Candidate%20Download&amp;notes=Windows%207%20Microsoft%20next%20operating%20system%20is%20out%20to%20the%20public%20yet%20again.%20%20Microsoft%20did%20something%20that%20was%20not%20normal%20when%20they%20released%20the%20different%20Beta%20versions%20to%20the%20public.%20%20Now%20Microsoft%20has%20released%20the%20release%20candidate%20to%20the%20public%20as%20we"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;title=Windows%207%20Release%20Candidate%20Download&amp;annotation=Windows%207%20Microsoft%20next%20operating%20system%20is%20out%20to%20the%20public%20yet%20again.%20%20Microsoft%20did%20something%20that%20was%20not%20normal%20when%20they%20released%20the%20different%20Beta%20versions%20to%20the%20public.%20%20Now%20Microsoft%20has%20released%20the%20release%20candidate%20to%20the%20public%20as%20we"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;title=Windows%207%20Release%20Candidate%20Download&amp;bodytext=Windows%207%20Microsoft%20next%20operating%20system%20is%20out%20to%20the%20public%20yet%20again.%20%20Microsoft%20did%20something%20that%20was%20not%20normal%20when%20they%20released%20the%20different%20Beta%20versions%20to%20the%20public.%20%20Now%20Microsoft%20has%20released%20the%20release%20candidate%20to%20the%20public%20as%20we"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;title=Windows%207%20Release%20Candidate%20Download"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-799'), event, 'post-799')" onMouseOver="more(this,'post-799')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-799')" id="sociable-post-799" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;t=Windows%207%20Release%20Candidate%20Download"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;t=Windows%207%20Release%20Candidate%20Download"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Windows%207%20Release%20Candidate%20Download&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;cat_id=6&amp;tag_id=31&amp;Remark=Windows%207%20Microsoft%20next%20operating%20system%20is%20out%20to%20the%20public%20yet%20again.%20%20Microsoft%20did%20something%20that%20was%20not%20normal%20when%20they%20released%20the%20different%20Beta%20versions%20to%20the%20public.%20%20Now%20Microsoft%20has%20released%20the%20release%20candidate%20to%20the%20public%20as%20we"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;Title=Windows%207%20Release%20Candidate%20Download"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;title=Windows%207%20Release%20Candidate%20Download&amp;selection=Windows%207%20Microsoft%20next%20operating%20system%20is%20out%20to%20the%20public%20yet%20again.%20%20Microsoft%20did%20something%20that%20was%20not%20normal%20when%20they%20released%20the%20different%20Beta%20versions%20to%20the%20public.%20%20Now%20Microsoft%20has%20released%20the%20release%20candidate%20to%20the%20public%20as%20we"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;t=Windows%207%20Release%20Candidate%20Download&amp;s=Windows%207%20Microsoft%20next%20operating%20system%20is%20out%20to%20the%20public%20yet%20again.%20%20Microsoft%20did%20something%20that%20was%20not%20normal%20when%20they%20released%20the%20different%20Beta%20versions%20to%20the%20public.%20%20Now%20Microsoft%20has%20released%20the%20release%20candidate%20to%20the%20public%20as%20we"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Windows%207%20Release%20Candidate%20Download&body=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;title=Windows%207%20Release%20Candidate%20Download&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-799',true)" class="close">























		  <img onclick="hide_sociable('post-799',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Windows 7 Release Candidate Download - http://www.shanestrong.com/windows-7/windows-7-release-candidate-download (via #sociablesite)" data-url="http://www.shanestrong.com/windows-7/windows-7-release-candidate-download" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/windows-7/windows-7-release-candidate-download&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwindows-7%2Fwindows-7-release-candidate-download&amp;title=Windows%207%20Release%20Candidate%20Download'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/windows-7/windows-7-release-candidate-download"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/windows-7/windows-7-release-candidate-download" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/windows-7/windows-7-release-candidate-download" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=799&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/windows-7/windows-7-release-candidate-download/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>About Shane Strong</title>
		<link>http://www.shanestrong.com/shane/about-shane-strong</link>
		<comments>http://www.shanestrong.com/shane/about-shane-strong#comments</comments>
		<pubDate>Tue, 12 May 2009 07:39:36 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Shane]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=792</guid>
		<description><![CDATA[One thing that you really don&#8217;t see on most blogs is a really good place to get to know the owner. Well this is because there really isn&#8217;t a easy way to do this. Yeah you have your about page and maybe people can contact the owner and get to know them. Well I know [...]]]></description>
			<content:encoded><![CDATA[<p>One thing that you really don&#8217;t see on most blogs is a really good place to get to know the owner.  Well this is because there really isn&#8217;t a easy way to do this.  Yeah you have your about page and maybe people can contact the owner and get to know them.  Well I know I wouldn&#8217;t do that, maybe read the about page but that is it.  So in this post I am going to tell you some stuff about Shane Strong me.</p>
<p>I grew up in a little town called Olivet this town is about 30 min south west from Lansing Michigan.  I went to school there all my life.  I was that kid that everyone was friends with but I didn&#8217;t really have all to many good friend.  Maybe this was because I only wanted two of three close friends.  All through out school I was really good at math and science but I was not the greatest when it came to reading, spelling, or history.  I started playing a lot of sports in 7th grade and found that I liked them quite a bit.  I was playing <a target="_blank" href="http://www.myshopping.com.au/PT--257_Personal_Fitness_Basketball__fs_13246_e__">basketball</a>, track, and golf.  Most of my child hood I was set that I would become a electrical engineer and build up to be a nuclear engineer.</p>
<p>Then high school happened.  I was still into sports trying out for Golf, Basketball, and Baseball.  Most of my school time was set to getting better at sports.  I was really fixed on golf.  It was a sport that my grandpa taught me before he died and I guess it was because of him that I became such a great golfer.  I player basketball for my freshmen ans sophomore years in high school but couldn&#8217;t make the cut my junior or senior year.  I played baseball my freshmen, sophomore, and senior years.  Took off the junior year so I could get better at golf.  That was my real charge in high school.  I became a Varsity player my sophomore year playing almost every game and if I wasn&#8217;t playing on Varsity I was number 1 on JV.  My Junior year of golf I dropped 2 strokes on my game and was driving the ball about 310 yards.  Ending the season the number 1 player on the team and getting awarded all-conference 1st class.  That means I was in the top ten of all the players in our league.  My senior year rolled around and I was pumped ready to become the number one player in our league.  I started the year up one stroke from the year before but driving the ball about 315 yards still not bad but that one stroke would kill me.  I finished the year out in 5th place still getting all-conference first class and MVP of the Olivet team and Captain award.  Both Junior and Senior year for some reason I would choke at the regional round and not make it to state.  Not the worst thing ever but no one had ever went to state in golf for Olivet and I could of been the first.  I really feel that my biggest set back was that I wanted the Olivet golf team to get bigger than just me and didn&#8217;t focus quite enough on my personal game.  Well of all my high school year my senior year was the best I broke up with my horrid girl friend that was holding me back from quite a few thing.  I took 2 college classes Calculus 2 and Intro to Information Systems.  Then it was time to graduate and I really was still stuck wondering what am I going to do next.  Of the two Colleges I submitted my application to three contacted me back.  Michigan Tech and Ferris State University.  Oh yeah the third Olivet College they wanted me to go there because of what I did in the two classes well I was there.  I actually had the opportunity to take a course that wasn&#8217;t offered there and I would have my own personal teacher.  I ended up choosing Ferris why that was I couldn&#8217;t tell you but that is for another day.</p>
<p>Well that was the start of my life in a quick nut shell.  I will inform you next time how I became a Web Developer and owning a business.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=About%20Shane%20Strong%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;t=About%20Shane%20Strong"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&title=About%20Shane%20Strong"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong&amp;notes=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong&amp;annotation=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong&amp;bodytext=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-792'), event, 'post-792')" onMouseOver="more(this,'post-792')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-792')" id="sociable-post-792" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;t=About%20Shane%20Strong"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;t=About%20Shane%20Strong"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=About%20Shane%20Strong&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;cat_id=6&amp;tag_id=31&amp;Remark=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;Title=About%20Shane%20Strong"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong&amp;selection=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;t=About%20Shane%20Strong&amp;s=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=About%20Shane%20Strong&body=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-792',true)" class="close">























		  <img onclick="hide_sociable('post-792',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="About Shane Strong - http://www.shanestrong.com/shane/about-shane-strong (via #sociablesite)" data-url="http://www.shanestrong.com/shane/about-shane-strong" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/shane/about-shane-strong&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/shane/about-shane-strong"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/shane/about-shane-strong" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/shane/about-shane-strong" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=792&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/shane/about-shane-strong/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

