<?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; Web Design</title>
	<atom:link href="http://www.shanestrong.com/category/web-design/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>CSS3 Box-Shadow</title>
		<link>http://www.shanestrong.com/css/css3-box-shadow</link>
		<comments>http://www.shanestrong.com/css/css3-box-shadow#comments</comments>
		<pubDate>Fri, 03 Feb 2012 15:45:52 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1958</guid>
		<description><![CDATA[It seems like more and more website want to have the newest look and the newest techniques involved with them. A really cool technique that I use quite often is the CSS3 Box Shadow. This is kind of like doing a drop shadow in Photoshop except it is done with CSS. Why should you do [...]]]></description>
			<content:encoded><![CDATA[<p>It seems like more and more website want to have the newest look and the newest techniques involved with them.  A really cool technique that I use quite often is the CSS3 Box Shadow.  This is kind of like doing a drop shadow in Photoshop except it is done with CSS.  Why should you do a drop shadow this way?  Well there are a couple reasons.  One really simple because you can.  A drop shadow is something that has been used in Photoshop for some time now but there has really never been a way to create a drop shadow in web.  Two and the most important because it is created in CSS you do not have to save a gigantic image that has the drop shadow.</p>
<h3>What are the down falls to using Box Shadows</h3>
<p>Well unfortunately like most of the new techniques that are created everyday some browsers don&#8217;t support this.  Well what browser do support this.  Pretty much all of the popular browsers new versions.  The Box Shadow is supported with IE9+, Firefox 4, Chrome, Opera, and Safari 5.1.1.  As most people know Safari uses a little bit different coding style you will have to create this with the -webkit.  You can also use the -moz setting for Mozilla but you don&#8217;t have to.</p>
<h3>How to implement Box Shadows</h3>
<p>Like all other CSS you first have to determine the container that you want to place this on.  Whether it is a div, class, id, or any other element.  This property has 6 parts.  The first part is the h-shadow or horizontal shadow.  The next part is the v-shadow or vertical shadow.  The third part is the blur, which is optional.  The fourth is the spread and this is also optional.  The fifth is the color and this can handle all the types whether it is hex or rgb.  Now the sixth part I am going to save for a little later.</p>
<h3>What Box Shadow should look like.</h3>
<p>So as stated above you have 6 parts to this that you can fill out.  There are 3 that are optional.  So lets see what this looks like.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.yourclass</span> <span style="color: #00AA00;">&#123;</span>
   -moz-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">;</span>
   -webkit-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">;</span>
   box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>OK so now you can see what it looks like.  As you can see the first value is the h-shadow, the second is the v-shadow, the third is the blur (optional), the fourth is the spread (optional), and the fifth is the color.  Now what about this fifth part.</p>
<h3>The fifth part</h3>
<p>The fifth part is one that you may never use and it is one that you could find yourself using a lot.  The fifth element is a inset.  What this does is exactly as it sounds it puts the shadow inwards.  Now below is how you add this to the property.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.yourclass</span> <span style="color: #00AA00;">&#123;</span>
   -moz-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #cc00cc;">#000000</span> <span style="color: #993333;">inset</span><span style="color: #00AA00;">;</span>
   -webkit-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #cc00cc;">#000000</span> <span style="color: #993333;">inset</span><span style="color: #00AA00;">;</span>
   box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #cc00cc;">#000000</span> <span style="color: #993333;">inset</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>If you would like to see examples and learn more about this I would recommend going over to <a target="_blank" href="http://css-tricks.com/snippets/css/css-box-shadow/">CSS Tricks</a>.</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=CSS3%20Box-Shadow%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow%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%2Fcss%2Fcss3-box-shadow&amp;t=CSS3%20Box-Shadow"></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%2Fcss%2Fcss3-box-shadow&title=CSS3%20Box-Shadow"></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%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></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%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow&amp;notes=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></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%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow&amp;annotation=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></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%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow&amp;bodytext=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></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%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1958'), event, 'post-1958')" onMouseOver="more(this,'post-1958')"><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-1958')" id="sociable-post-1958" 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%2Fcss%2Fcss3-box-shadow&amp;t=CSS3%20Box-Shadow"></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%2Fcss%2Fcss3-box-shadow&amp;t=CSS3%20Box-Shadow"></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=CSS3%20Box-Shadow&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;cat_id=6&amp;tag_id=31&amp;Remark=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></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%2Fcss%2Fcss3-box-shadow&amp;Title=CSS3%20Box-Shadow"></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%2Fcss%2Fcss3-box-shadow"></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%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow&amp;selection=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></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%2Fcss%2Fcss3-box-shadow&amp;t=CSS3%20Box-Shadow&amp;s=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></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=CSS3%20Box-Shadow&body=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&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%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&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-1958',true)" class="close">























		  <img onclick="hide_sociable('post-1958',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="CSS3 Box-Shadow - http://www.shanestrong.com/css/css3-box-shadow (via #sociablesite)" data-url="http://www.shanestrong.com/css/css3-box-shadow" 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/css/css3-box-shadow&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%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/css/css3-box-shadow"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/css/css3-box-shadow" 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/css/css3-box-shadow" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1958&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/css/css3-box-shadow/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Popup</title>
		<link>http://www.shanestrong.com/web-development/jquery-popup</link>
		<comments>http://www.shanestrong.com/web-development/jquery-popup#comments</comments>
		<pubDate>Thu, 19 Jan 2012 06:03:52 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Popup]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1371</guid>
		<description><![CDATA[jQuery is not a new technology anymore but it is not an old one either. Most new website are using some form of jQuery. There are some things that you can do with jQuery that are simple but can make your website stand out. One of the ways that you can spread news or try [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery is not a new technology anymore but it is not an old one either.  Most new website are using some form of jQuery.  There are some things that you can do with jQuery that are simple but can make your website stand out.  One of the ways that you can spread news or try to get people to interact on your site more is with a popup.  Now some people might think these are annoying but can really help build more interaction.  Popups don&#8217;t have to be annoying, they can be helpfully and creative.  The thing that made popups annoying when they first came out was that people played music with them and they popped up automatically.  Well that is annoying but what if you use it for a contact form or something for people to signup for feeds.  There are a ton of things that you can use a popup for and with jQuery you will get something that is for the most part cross browser compliant.  For this tutorial you will need to know html, jQuery, and css.  So lets get started.</p>
<h3>Step One &#8211; Create You HTML Template</h3>
<p>One of the first things you will need for your html template is the jquery library script or an equivalent script.  The <a target="_blank" href="http://code.google.com/apis/libraries/devguide.html#jquery">google hosted jquery script</a> or the jquery hosted latest script would work.  I prefer to use the latest jquery script.  The next thing that you will need to add is the css popup file and the js popup file.  These will look like this in your head area.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">   &lt;link rel=&quot;stylesheet&quot; href=&quot;PathToFile/popup.css&quot; type=&quot;text/css&quot; /&gt;
   &lt;script src=&quot;http://code.jquery.com/jquery-latest.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
   &lt;script type=&quot;text/javascript&quot; src=&quot;PathToFile/popup.js&quot;&gt;&lt;/script&gt;</pre></div></div>

<p>After you add these all that you will have to do is add the code to create the popup.  Well you will have to first decide if you want to use a button or a link.  Both of these will work all that you have to do is add the class button to them.  Then you will have to create the popup container and the contents of the popup.  This should look something link this:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">   &lt;div class=&quot;button&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;Press This&quot; /&gt;&lt;/div&gt;
   &lt;div class=&quot;popupContent&quot;&gt;
      &lt;a class=&quot;popupClose&quot;&gt;x&lt;/a&gt;
      &lt;h1&gt;This is a title for a popup!&lt;/h1&gt;
      &lt;p&gt;What you want in the popup&lt;/p&gt;
   &lt;/div&gt;
   &lt;div class=&quot;backgroundPopup&quot;&gt;&lt;/div&gt;</pre></div></div>

<p>That is all for the html part.  Now you will have to style the popup with the popup.css file.</p>
<h3>Step Two &#8211; Design Your Popup With CSS</h3>
<p>Inside of the popup.css file there are all of the classes that you will need to have setup.  Hear is a list of the classes that you will need (popupContent, popupClose, and backgroundPopup).  These classes will have to be coded like below:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">   .backgroundPopup<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">fixed</span><span style="color: #00AA00;">;</span>
	_position<span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* hack for internet explorer 6*/</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">100%</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">100%</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;">left</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;">#000000</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;">9998</span><span style="color: #00AA00;">;</span>
   <span style="color: #00AA00;">&#125;</span>
   //You can style the <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">,</span> <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">,</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">,</span> and <span style="color: #000000; font-weight: bold;">height</span> of this how you want
   .popupContent<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">fixed</span><span style="color: #00AA00;">;</span>
	_position<span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* hack for internet explorer 6*/</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">35em</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#fff</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;">9999</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">2em</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;">1.3em</span><span style="color: #00AA00;">;</span>
   <span style="color: #00AA00;">&#125;</span>
   //Style this how you want
   .popupClose<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;">1.4em</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span><span style="color: #933;">0.5em</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span><span style="color: #933;">0.2em</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;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">700</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
   <span style="color: #00AA00;">&#125;</span>
   <span style="color: #6666ff;">.popupClose</span><span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">cursor</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></div></div>

<h3>Step Three &#8211; Build The jQuery Popup</h3>
<p>Now that you hopefully have a sweet designed look for your popup we have to add the script to control the popup.  All that you have to do for this is all the code below to your popup.js file.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">var popupStatus = 0;
&nbsp;
function loadPopup(){
   //Will only be loaded if the status is 0
   if(popupStatus==0){
      $(&quot;.backgroundPopup&quot;).css({&quot;opacity&quot;: &quot;0.8&quot;});
      $(&quot;.backgroundPopup&quot;).fadeIn(&quot;slow&quot;);
      $(&quot;.popupContent&quot;).fadeIn(&quot;slow&quot;);
      popupStatus = 1;
   }
}
&nbsp;
//This will disable the popup when needed
function disablePopup(){
   //Will only disable if status is 1
   if(popupStatus==1){
      $(&quot;.backgroundPopup&quot;).fadeOut(&quot;slow&quot;);
      $(&quot;.popupContent&quot;).fadeOut(&quot;slow&quot;);
      popupStatus = 0;
   }
}
&nbsp;
//Centers the popup to your window size 
function centerPopup(){
   var windowWidth = document.documentElement.clientWidth;
   var windowHeight = document.documentElement.clientHeight;
   var popupHeight = $(&quot;.popupContent&quot;).height();
   var popupWidth = $(&quot;.popupContent&quot;).width();
   $(&quot;.popupContent&quot;).css({
      &quot;position&quot;: &quot;absolute&quot;,
      &quot;top&quot;: windowHeight/2-popupHeight/2,
      &quot;left&quot;: windowWidth/2-popupWidth/2
   });
   //this is needed for ie6
   $(&quot;.backgroundPopup&quot;).css({ &quot;height&quot;: windowHeight });
}
&nbsp;
//Click event controller
$(document).ready(function(){
   //Open the popup and center
   $(&quot;.button&quot;).click(function(){
      centerPopup();
      loadPopup();
   });
   //Close popup by clicking the x
   $(&quot;.popupClose&quot;).click(function(){ disablePopup(); });
   //Close popup by clicking outside the box
   $(&quot;.backgroundPopup&quot;).click(function(){ disablePopup(); });
   //Close popup by clicking escape
   $(document).keypress(function(e){
      if(e.keyCode==27 &amp;&amp; popupStatus==1){
         disablePopup();
      }
   });
});</pre></div></div>

<p>Now if you copy that code and add it to your popup.js file everything will work.  This script declares the width of your browser and determines where to put the popup automatically.  It also declares the closing abilities.  There are three of these you can click the x, push escape, or click outside the popup.  There is nothing left your popup should be working great.  Now this is a really simple jQuery popup.  There are tons of popups out there and tons of ways to do these but most aren&#8217;t this easy and light weight on your browser.  If you would like to see a demo of this in action you can <a href="http://www.shanestrong.com/jquery/popup/popup.htm" title="Demo jQuery Popup">click here</a> or you can download this demo and mess around with this your self.</p>
<a class="downloadlink" href="http://www.shanestrong.com/downloads80" title="Version1.0 downloaded 22 times" >jQuery Popup (22)</a>
<p>Anyone that might use this and find some changes that make it better I would love to see these changes and put them up on the site with you getting credit.  Please contact us.</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%20Popup%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fjquery-popup%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-development%2Fjquery-popup&amp;t=jQuery%20Popup"></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-development%2Fjquery-popup&title=jQuery%20Popup"></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-development%2Fjquery-popup&amp;title=jQuery%20Popup&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=jQuery%20is%20not%20a%20new%20technology%20anymore%20but%20it%20is%20not%20an%20old%20one%20either.%20%20Most%20new%20website%20are%20using%20some%20form%20of%20jQuery.%20%20There%20are%20some%20things%20that%20you%20can%20do%20with%20jQuery%20that%20are%20simple%20but%20can%20make%20your%20website%20stand%20out.%20%20One%20of%20the%20ways%20that%20you"></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-development%2Fjquery-popup&amp;title=jQuery%20Popup&amp;notes=jQuery%20is%20not%20a%20new%20technology%20anymore%20but%20it%20is%20not%20an%20old%20one%20either.%20%20Most%20new%20website%20are%20using%20some%20form%20of%20jQuery.%20%20There%20are%20some%20things%20that%20you%20can%20do%20with%20jQuery%20that%20are%20simple%20but%20can%20make%20your%20website%20stand%20out.%20%20One%20of%20the%20ways%20that%20you"></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-development%2Fjquery-popup&amp;title=jQuery%20Popup&amp;annotation=jQuery%20is%20not%20a%20new%20technology%20anymore%20but%20it%20is%20not%20an%20old%20one%20either.%20%20Most%20new%20website%20are%20using%20some%20form%20of%20jQuery.%20%20There%20are%20some%20things%20that%20you%20can%20do%20with%20jQuery%20that%20are%20simple%20but%20can%20make%20your%20website%20stand%20out.%20%20One%20of%20the%20ways%20that%20you"></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-development%2Fjquery-popup&amp;title=jQuery%20Popup&amp;bodytext=jQuery%20is%20not%20a%20new%20technology%20anymore%20but%20it%20is%20not%20an%20old%20one%20either.%20%20Most%20new%20website%20are%20using%20some%20form%20of%20jQuery.%20%20There%20are%20some%20things%20that%20you%20can%20do%20with%20jQuery%20that%20are%20simple%20but%20can%20make%20your%20website%20stand%20out.%20%20One%20of%20the%20ways%20that%20you"></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-development%2Fjquery-popup&amp;title=jQuery%20Popup"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1371'), event, 'post-1371')" onMouseOver="more(this,'post-1371')"><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-1371')" id="sociable-post-1371" 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-development%2Fjquery-popup&amp;t=jQuery%20Popup"></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-development%2Fjquery-popup&amp;t=jQuery%20Popup"></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%20Popup&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fjquery-popup&amp;cat_id=6&amp;tag_id=31&amp;Remark=jQuery%20is%20not%20a%20new%20technology%20anymore%20but%20it%20is%20not%20an%20old%20one%20either.%20%20Most%20new%20website%20are%20using%20some%20form%20of%20jQuery.%20%20There%20are%20some%20things%20that%20you%20can%20do%20with%20jQuery%20that%20are%20simple%20but%20can%20make%20your%20website%20stand%20out.%20%20One%20of%20the%20ways%20that%20you"></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-development%2Fjquery-popup&amp;Title=jQuery%20Popup"></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-development%2Fjquery-popup"></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-development%2Fjquery-popup&amp;title=jQuery%20Popup&amp;selection=jQuery%20is%20not%20a%20new%20technology%20anymore%20but%20it%20is%20not%20an%20old%20one%20either.%20%20Most%20new%20website%20are%20using%20some%20form%20of%20jQuery.%20%20There%20are%20some%20things%20that%20you%20can%20do%20with%20jQuery%20that%20are%20simple%20but%20can%20make%20your%20website%20stand%20out.%20%20One%20of%20the%20ways%20that%20you"></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-development%2Fjquery-popup&amp;t=jQuery%20Popup&amp;s=jQuery%20is%20not%20a%20new%20technology%20anymore%20but%20it%20is%20not%20an%20old%20one%20either.%20%20Most%20new%20website%20are%20using%20some%20form%20of%20jQuery.%20%20There%20are%20some%20things%20that%20you%20can%20do%20with%20jQuery%20that%20are%20simple%20but%20can%20make%20your%20website%20stand%20out.%20%20One%20of%20the%20ways%20that%20you"></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%20Popup&body=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fjquery-popup&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-development%2Fjquery-popup&amp;title=jQuery%20Popup&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fjquery-popup&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-1371',true)" class="close">























		  <img onclick="hide_sociable('post-1371',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 Popup - http://www.shanestrong.com/web-development/jquery-popup (via #sociablesite)" data-url="http://www.shanestrong.com/web-development/jquery-popup" 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-development/jquery-popup&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-development%2Fjquery-popup&amp;title=jQuery%20Popup'  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-development/jquery-popup"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/web-development/jquery-popup" 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-development/jquery-popup" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1371&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/web-development/jquery-popup/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Positioning</title>
		<link>http://www.shanestrong.com/html/css-positioning</link>
		<comments>http://www.shanestrong.com/html/css-positioning#comments</comments>
		<pubDate>Wed, 11 Jan 2012 06:04:09 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1908</guid>
		<description><![CDATA[Positioning in CSS is extremely simple and for most sites not needed but can be used to create a neat overlapping image effect or maybe an advertisement that scrolls with your browser. There are a lot of developers that use positions way to much in there development. You do not need a position on everything. [...]]]></description>
			<content:encoded><![CDATA[<p>Positioning in CSS is extremely simple and for most sites not needed but can be used to create a neat overlapping image effect or maybe an advertisement that scrolls with your browser.  There are a lot of developers that use positions way to much in there development.  You do not need a position on everything.  In fact everything has a position already, everything gets positioned static by default.  There are 3 other positions that you can use absolute, relative, and fixed.  Well lets start talking about each of these and how they work.</p>
<h3>Position Static</h3>
<p>This type of position as said before is set by default.  This is the most basic positioning and the simplest to explain.  Position static is simply all that it does is follows the flow of the page.  Now this might sound weird and you might wonder why it is even a position.  This is because it does not get affected by the top, bottom, right, and left properties.  This is written like this:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.yourclass</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;">static</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<h3>Position Fixed</h3>
<p>This position is the next easiest and not really used much anymore.  This position doesn&#8217;t take anything from the normal flow of the website but conforms to the browser window.  All other elements on the page act like the fixed element doesn&#8217;t exist.  This is written like this:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.yourclass</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;">fixed</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<h3>Position Relative</h3>
<p>Relative positioning is positioned relative to its normal position.  These elements still hold the same normal flow but are able to be moved and can be overlapped.  These elements use the space that they are given.  These are written like this:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.yourclass</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></pre></div></div>

<h3>Position Absolute</h3>
<p>The positioned absolute element is position relative to the parent containing element.  All other elements act like the this positioned element doesn&#8217;t exist.  If you do not have any parent container elements with positions then the position is absolute with the parent container as the html tag.  Absolute positioned elements can overlap other elements.  This is written like this:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.yourclass</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;">absolute</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<h3>Understanding Positions</h3>
<p>There are a few things that a lot of people have troubles with when trying to understand positions.  The hardest thing to learn is how to control position absolute elements.  Say you have a set of code like this:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;container-1&quot;&gt;
    &lt;div class=&quot;container-2&quot;&gt;
        &lt;div class=&quot;container-3&quot;&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;</pre></div></div>

<p>Now lets say you would like to see the container-2 and the container-3 to be in different areas.  Well all that you would have to do is put a position absolute on them and you can move them where ever you would like.  The only issue would be that they will use the html element as their container.  So what we would want to do is limit them to only be able to more inside the container-1 element.  So we would have to add a position relative to container-1.  This means that everything inside container-1 will adopt the container-1&#8242;s layout or flow.  So say container-1 has a width of 500px and a height of 500px, container-2 and container-3 will work inside of the 500&#215;500 box.  Also because container-3 is inside of container-2 it will become the dominant element.  Meaning it will be on top.</p>
<p>That brings me to the next part overlapping.  How to control what overlaps what.  This is done by using a css function called z-index.  z-index is like a filing system.  Whatever element has the higher z-index ends up being on top of everything else.  So lets say that we have a page that looks like this:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;container-1&quot;&gt;
    &lt;div class=&quot;container-2&quot;&gt;
    &lt;/div&gt;
    &lt;div class=&quot;container-3&quot;&gt;
    &lt;/div&gt;
&lt;/div&gt;</pre></div></div>

<p>Now with this setup we would like to see container-2 on top of container-3 and in the middle of it.  We would first have to give container-1 a position relative.  Then give container-2 a z-index of say 2 and container-3 would get a z-index of 1.  Now with z-index you can use negative numbers and go as high as 	2147483647 in most browsers.  Now you won&#8217;t find anyone using that high of a z-index.  Most people stick with a 9999.  Meaning that 9999 is the highest that they will go.  That give you the ability to have 9999 elements that are on different levels and you can go negatively also.  I try to stick to something like 50.  Most website are not going to see 50 elements that need to be positioned on top of everything else.  Back to our containers.  With giving container-2 and 3 a z-index that means that they start creating a pile/stack/order whatever you would like to call it.  Because container 2 has a higher z-index it will be on top.  So say you want to put a image on top of another image, this would work.</p>
<p>Using positions can get tricky but as I said in the beginning if you don&#8217;t need them I wouldn&#8217;t use them.  They are however a great thing to learn and mess around with.  If you would like to try out each kind of position you can go over to <a target="_blank" href="http://www.w3schools.com/css/css_positioning.asp">W3Schools</a>, they have a Positioning page that you can try out all the types and change the code.</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=CSS%20Positioning%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fhtml%2Fcss-positioning%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%2Fhtml%2Fcss-positioning&amp;t=CSS%20Positioning"></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%2Fhtml%2Fcss-positioning&title=CSS%20Positioning"></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%2Fhtml%2Fcss-positioning&amp;title=CSS%20Positioning&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=Positioning%20in%20CSS%20is%20extremely%20simple%20and%20for%20most%20sites%20not%20needed%20but%20can%20be%20used%20to%20create%20a%20neat%20overlapping%20image%20effect%20or%20maybe%20an%20advertisement%20that%20scrolls%20with%20your%20browser.%20%20There%20are%20a%20lot%20of%20developers%20that%20use%20positions%20way%20to%20much%20in%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%2Fhtml%2Fcss-positioning&amp;title=CSS%20Positioning&amp;notes=Positioning%20in%20CSS%20is%20extremely%20simple%20and%20for%20most%20sites%20not%20needed%20but%20can%20be%20used%20to%20create%20a%20neat%20overlapping%20image%20effect%20or%20maybe%20an%20advertisement%20that%20scrolls%20with%20your%20browser.%20%20There%20are%20a%20lot%20of%20developers%20that%20use%20positions%20way%20to%20much%20in%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%2Fhtml%2Fcss-positioning&amp;title=CSS%20Positioning&amp;annotation=Positioning%20in%20CSS%20is%20extremely%20simple%20and%20for%20most%20sites%20not%20needed%20but%20can%20be%20used%20to%20create%20a%20neat%20overlapping%20image%20effect%20or%20maybe%20an%20advertisement%20that%20scrolls%20with%20your%20browser.%20%20There%20are%20a%20lot%20of%20developers%20that%20use%20positions%20way%20to%20much%20in%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%2Fhtml%2Fcss-positioning&amp;title=CSS%20Positioning&amp;bodytext=Positioning%20in%20CSS%20is%20extremely%20simple%20and%20for%20most%20sites%20not%20needed%20but%20can%20be%20used%20to%20create%20a%20neat%20overlapping%20image%20effect%20or%20maybe%20an%20advertisement%20that%20scrolls%20with%20your%20browser.%20%20There%20are%20a%20lot%20of%20developers%20that%20use%20positions%20way%20to%20much%20in%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%2Fhtml%2Fcss-positioning&amp;title=CSS%20Positioning"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1908'), event, 'post-1908')" onMouseOver="more(this,'post-1908')"><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-1908')" id="sociable-post-1908" 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%2Fhtml%2Fcss-positioning&amp;t=CSS%20Positioning"></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%2Fhtml%2Fcss-positioning&amp;t=CSS%20Positioning"></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=CSS%20Positioning&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fhtml%2Fcss-positioning&amp;cat_id=6&amp;tag_id=31&amp;Remark=Positioning%20in%20CSS%20is%20extremely%20simple%20and%20for%20most%20sites%20not%20needed%20but%20can%20be%20used%20to%20create%20a%20neat%20overlapping%20image%20effect%20or%20maybe%20an%20advertisement%20that%20scrolls%20with%20your%20browser.%20%20There%20are%20a%20lot%20of%20developers%20that%20use%20positions%20way%20to%20much%20in%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%2Fhtml%2Fcss-positioning&amp;Title=CSS%20Positioning"></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%2Fhtml%2Fcss-positioning"></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%2Fhtml%2Fcss-positioning&amp;title=CSS%20Positioning&amp;selection=Positioning%20in%20CSS%20is%20extremely%20simple%20and%20for%20most%20sites%20not%20needed%20but%20can%20be%20used%20to%20create%20a%20neat%20overlapping%20image%20effect%20or%20maybe%20an%20advertisement%20that%20scrolls%20with%20your%20browser.%20%20There%20are%20a%20lot%20of%20developers%20that%20use%20positions%20way%20to%20much%20in%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%2Fhtml%2Fcss-positioning&amp;t=CSS%20Positioning&amp;s=Positioning%20in%20CSS%20is%20extremely%20simple%20and%20for%20most%20sites%20not%20needed%20but%20can%20be%20used%20to%20create%20a%20neat%20overlapping%20image%20effect%20or%20maybe%20an%20advertisement%20that%20scrolls%20with%20your%20browser.%20%20There%20are%20a%20lot%20of%20developers%20that%20use%20positions%20way%20to%20much%20in%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=CSS%20Positioning&body=http%3A%2F%2Fwww.shanestrong.com%2Fhtml%2Fcss-positioning&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%2Fhtml%2Fcss-positioning&amp;title=CSS%20Positioning&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fhtml%2Fcss-positioning&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-1908',true)" class="close">























		  <img onclick="hide_sociable('post-1908',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="CSS Positioning - http://www.shanestrong.com/html/css-positioning (via #sociablesite)" data-url="http://www.shanestrong.com/html/css-positioning" 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/html/css-positioning&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%2Fhtml%2Fcss-positioning&amp;title=CSS%20Positioning'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/html/css-positioning"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/html/css-positioning" 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/html/css-positioning" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1908&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/html/css-positioning/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building Websites and Conversions</title>
		<link>http://www.shanestrong.com/web-design/building-websites-and-conversions</link>
		<comments>http://www.shanestrong.com/web-design/building-websites-and-conversions#comments</comments>
		<pubDate>Thu, 14 Apr 2011 19:50:05 +0000</pubDate>
		<dc:creator>WebDesignWomen</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Conversions]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1666</guid>
		<description><![CDATA[When people think about building websites and web design, thoughts of fancy, graphic-heavy or flash-driven websites come to mind. However, in reality, what a business should look into with their website is conversions. Sometimes the ugliest websites online convert a high percentage of visitors into paid customers. That is why it is important for web [...]]]></description>
			<content:encoded><![CDATA[<p>When people think about building websites and web design, thoughts of fancy, graphic-heavy or flash-driven websites come to mind. However, in reality, what a business should look into with their website is conversions. Sometimes the ugliest websites online convert a high percentage of visitors into paid customers. That is why it is important for web designers to split test their designs to see which layouts, colors, and other variations lead to the best conversion rates for the business. The following are some aspects of a site&#8217;s design that can make it convert better along with example sites.</p>
<h3>A Simple and Clean Overall Look</h3>
<p>Rather than bombard a website with many flashy animations or over-the-top artistry, sometimes sticking to the basics just works. You want your customers to understand what your business is all about along with the products and services you business provides. If you make the design too complicated, website visitors will get all distracted by those factors and might totally miss the point or message you&#8217;re trying to get across.</p>
<p>Take this simple site <a target="_blank" href="http://www.gopromotional.com">http://www.gopromotional.com</a> , on promotional gifts for example. It has a nice, clean look and feel to it that is simple and straightforward. With just a quick glance, you can tell what this company is all about. The navigation bar is well laid out, so this is a smooth and easy browsing experience for the user.</p>
<h3>Large, Easy to Find Calls to Action</h3>
<p>With your business&#8217; website, you want visitors to take action, whether it&#8217;s to contact you for your services or to make a purchase through your store. This can be a lot easier if there&#8217;s a bit button or image that acts as a call to action. People love images and are easily drawn to these kinds of things as long as they are designed properly. This is where the split testing comes into play.</p>
<p>One great example is this site <a target="_blank" href="http://www.privatejetscharter.net">http://www.privatejetscharter.net</a> ,on private jets. At the top, the navigation bar allows users to go through different topics on private jets, and at the end of each mini description is a call to action to read more on the subject. In addition to that, below the navigation bar to the right is a call to action for a quote on a private jet trip. The button for this is easily visible, and your eyes are naturally drawn to it.</p>
<h3>Split Test and Convert</h3>
<p>The above examples clearly show how important it is to split test website designs in order to determine which ones have the best conversion rates. This way, you can take your business to another level.</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=Building%20Websites%20and%20Conversions%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fbuilding-websites-and-conversions%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%2Fbuilding-websites-and-conversions&amp;t=Building%20Websites%20and%20Conversions"></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%2Fbuilding-websites-and-conversions&title=Building%20Websites%20and%20Conversions"></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%2Fbuilding-websites-and-conversions&amp;title=Building%20Websites%20and%20Conversions&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=When%20people%20think%20about%20building%20websites%20and%20web%20design%2C%20thoughts%20of%20fancy%2C%20graphic-heavy%20or%20flash-driven%20websites%20come%20to%20mind.%20However%2C%20in%20reality%2C%20what%20a%20business%20should%20look%20into%20with%20their%20website%20is%20conversions.%20Sometimes%20the%20ugliest%20websites%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%2Fweb-design%2Fbuilding-websites-and-conversions&amp;title=Building%20Websites%20and%20Conversions&amp;notes=When%20people%20think%20about%20building%20websites%20and%20web%20design%2C%20thoughts%20of%20fancy%2C%20graphic-heavy%20or%20flash-driven%20websites%20come%20to%20mind.%20However%2C%20in%20reality%2C%20what%20a%20business%20should%20look%20into%20with%20their%20website%20is%20conversions.%20Sometimes%20the%20ugliest%20websites%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%2Fweb-design%2Fbuilding-websites-and-conversions&amp;title=Building%20Websites%20and%20Conversions&amp;annotation=When%20people%20think%20about%20building%20websites%20and%20web%20design%2C%20thoughts%20of%20fancy%2C%20graphic-heavy%20or%20flash-driven%20websites%20come%20to%20mind.%20However%2C%20in%20reality%2C%20what%20a%20business%20should%20look%20into%20with%20their%20website%20is%20conversions.%20Sometimes%20the%20ugliest%20websites%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%2Fweb-design%2Fbuilding-websites-and-conversions&amp;title=Building%20Websites%20and%20Conversions&amp;bodytext=When%20people%20think%20about%20building%20websites%20and%20web%20design%2C%20thoughts%20of%20fancy%2C%20graphic-heavy%20or%20flash-driven%20websites%20come%20to%20mind.%20However%2C%20in%20reality%2C%20what%20a%20business%20should%20look%20into%20with%20their%20website%20is%20conversions.%20Sometimes%20the%20ugliest%20websites%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%2Fweb-design%2Fbuilding-websites-and-conversions&amp;title=Building%20Websites%20and%20Conversions"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1666'), event, 'post-1666')" onMouseOver="more(this,'post-1666')"><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-1666')" id="sociable-post-1666" 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%2Fbuilding-websites-and-conversions&amp;t=Building%20Websites%20and%20Conversions"></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%2Fbuilding-websites-and-conversions&amp;t=Building%20Websites%20and%20Conversions"></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=Building%20Websites%20and%20Conversions&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fbuilding-websites-and-conversions&amp;cat_id=6&amp;tag_id=31&amp;Remark=When%20people%20think%20about%20building%20websites%20and%20web%20design%2C%20thoughts%20of%20fancy%2C%20graphic-heavy%20or%20flash-driven%20websites%20come%20to%20mind.%20However%2C%20in%20reality%2C%20what%20a%20business%20should%20look%20into%20with%20their%20website%20is%20conversions.%20Sometimes%20the%20ugliest%20websites%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%2Fweb-design%2Fbuilding-websites-and-conversions&amp;Title=Building%20Websites%20and%20Conversions"></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%2Fbuilding-websites-and-conversions"></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%2Fbuilding-websites-and-conversions&amp;title=Building%20Websites%20and%20Conversions&amp;selection=When%20people%20think%20about%20building%20websites%20and%20web%20design%2C%20thoughts%20of%20fancy%2C%20graphic-heavy%20or%20flash-driven%20websites%20come%20to%20mind.%20However%2C%20in%20reality%2C%20what%20a%20business%20should%20look%20into%20with%20their%20website%20is%20conversions.%20Sometimes%20the%20ugliest%20websites%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%2Fweb-design%2Fbuilding-websites-and-conversions&amp;t=Building%20Websites%20and%20Conversions&amp;s=When%20people%20think%20about%20building%20websites%20and%20web%20design%2C%20thoughts%20of%20fancy%2C%20graphic-heavy%20or%20flash-driven%20websites%20come%20to%20mind.%20However%2C%20in%20reality%2C%20what%20a%20business%20should%20look%20into%20with%20their%20website%20is%20conversions.%20Sometimes%20the%20ugliest%20websites%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=Building%20Websites%20and%20Conversions&body=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fbuilding-websites-and-conversions&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%2Fbuilding-websites-and-conversions&amp;title=Building%20Websites%20and%20Conversions&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fbuilding-websites-and-conversions&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-1666',true)" class="close">























		  <img onclick="hide_sociable('post-1666',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="Building Websites and Conversions - http://www.shanestrong.com/web-design/building-websites-and-conversions (via #sociablesite)" data-url="http://www.shanestrong.com/web-design/building-websites-and-conversions" 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/building-websites-and-conversions&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%2Fbuilding-websites-and-conversions&amp;title=Building%20Websites%20and%20Conversions'  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/building-websites-and-conversions"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/web-design/building-websites-and-conversions" 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/building-websites-and-conversions" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1666&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/web-design/building-websites-and-conversions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Cool Corners</title>
		<link>http://www.shanestrong.com/web-development/jquery-cool-corners</link>
		<comments>http://www.shanestrong.com/web-development/jquery-cool-corners#comments</comments>
		<pubDate>Wed, 09 Feb 2011 09:45:30 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery Cool Corners]]></category>
		<category><![CDATA[jQuery Corners]]></category>
		<category><![CDATA[jQuery Rounded Corners]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1355</guid>
		<description><![CDATA[With the advancements in the web industry designers are getting more creative and CSS is having a hard time keeping up with some stuff. Well almost anything that you would like to do can be done with jQuery. For instance one of my favorite thing to do is create some great looking corners. Well CSS [...]]]></description>
			<content:encoded><![CDATA[<p>With the advancements in the web industry designers are getting more creative and CSS is having a hard time keeping up with some stuff.  Well almost anything that you would like to do can be done with jQuery.  For instance one of my favorite thing to do is create some great looking corners.  Well CSS has some different things that you can do with corners but a lot of these are limited to certain browsers.  Well Dave Methvin created a great jQuery script that handles many different kinds of cool corners.  With these corners being rendered in jQuery it makes them browser complaint across every major browser and most all up-to-date browsers.</p>
<h3>How To Implement Cool Corners</h3>
<p>First of all you must pull in jQuery into your website.  The best way of doing this is by linking to http://code.jquery.com/jquery-svn.js in your header or footer link this:</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">//jQuery SVN Updated Version
&lt;script src=&quot;http://code.jquery.com/jquery-svn.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre></div></div>

<p>The next thing that you have to do is pull in Dave Methvin corners script.  This can be done by downloading the script from <a target="_blank" href="http://methvin.com/corner/jquery.corner.js">Here</a>.  This also needs to be added to the header or the footer like this.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">//Dave Methvin's
&lt;script src=&quot;Location Of File On Your Server&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre></div></div>

<h3>Adding Final Code</h3>
<p>In order to get these amazing different corners to work on your web page all you need to do is call out the classes of the spots you want to activate the corners.  Also you need to decide which of the many types of corners you would like to use.  Yes I said MANY TYPES.  Dave Methvin created this script with many different kinds of corners you can choose from.  For Instance Rounded, Beveled, Notched, Bite, Dog-ear, Sculpt, Sharp and many more.  You can find all of the corner types at <a target="_blank" href="http://methvin.com/corner/jq-corner-demo.html">jQuery Corner Demo</a>.  Now back to the code, once you have decide on the type you need to add this after the Methvin&#8217;s script.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">//Some Different Examples
&lt;script type=&quot;text/javascript&quot;&gt;
	jQuery(document).ready(function($) {
		$(&quot;.YOUR CLASS&quot;).corner(&quot;10px&quot;);
		$(&quot;.YOUR CLASS&quot;).corner(&quot;bevel 10px&quot;);
		$(&quot;.YOUR CLASS&quot;).corner(&quot;notch 10px&quot;);
		$(&quot;.YOUR CLASS&quot;).corner(&quot;cool 10px&quot;);
		$(&quot;.YOUR CLASS&quot;).corner(&quot;curl 10px&quot;);
		$(&quot;.YOUR CLASS&quot;).corner(&quot;sculpt 10px&quot;);
	});
&lt;/script&gt;</pre></div></div>

<p>Here is a download able and viewable demo of the script in action that I have created.  This demo involves all of the above examples.</p>
<p>jQuery Cool Corners: <a href="http://www.shanestrong.com/jquery/cool-corners/coolcorners.htm" title="jQuery Cool Corners Demo">Cool Corners Demo</a></p>
<p>Download: <a class="downloadlink" href="http://www.shanestrong.com/downloads79" title="Version1.0 downloaded 12 times" >jQuery Cool Corners (12)</a></p>
<p>For even more about this great script I would read up on <a target="_blank" href="http://methvin.com/corner/">Methvin&#8217;s Gallery</a> and also on <a target="_blank" href="http://methvin.com/corner/jq-corner-demo.html">Methvin&#8217;s Demo</a>.</p>
<h3>Development And Consulting</h3>
<p>Contact Shane Strong for any of your web development, WordPress theme development, Magento development, PHP, and jQuery needs.  You can view my <a href="http://www.shanestrong.com/portfolio">portfolio</a> for some of my work.</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%20Cool%20Corners%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fjquery-cool-corners%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-development%2Fjquery-cool-corners&amp;t=jQuery%20Cool%20Corners"></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-development%2Fjquery-cool-corners&title=jQuery%20Cool%20Corners"></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-development%2Fjquery-cool-corners&amp;title=jQuery%20Cool%20Corners&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=With%20the%20advancements%20in%20the%20web%20industry%20designers%20are%20getting%20more%20creative%20and%20CSS%20is%20having%20a%20hard%20time%20keeping%20up%20with%20some%20stuff.%20%20Well%20almost%20anything%20that%20you%20would%20like%20to%20do%20can%20be%20done%20with%20jQuery.%20%20For%20instance%20one%20of%20my%20favorite%20thing%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%2Fweb-development%2Fjquery-cool-corners&amp;title=jQuery%20Cool%20Corners&amp;notes=With%20the%20advancements%20in%20the%20web%20industry%20designers%20are%20getting%20more%20creative%20and%20CSS%20is%20having%20a%20hard%20time%20keeping%20up%20with%20some%20stuff.%20%20Well%20almost%20anything%20that%20you%20would%20like%20to%20do%20can%20be%20done%20with%20jQuery.%20%20For%20instance%20one%20of%20my%20favorite%20thing%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%2Fweb-development%2Fjquery-cool-corners&amp;title=jQuery%20Cool%20Corners&amp;annotation=With%20the%20advancements%20in%20the%20web%20industry%20designers%20are%20getting%20more%20creative%20and%20CSS%20is%20having%20a%20hard%20time%20keeping%20up%20with%20some%20stuff.%20%20Well%20almost%20anything%20that%20you%20would%20like%20to%20do%20can%20be%20done%20with%20jQuery.%20%20For%20instance%20one%20of%20my%20favorite%20thing%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%2Fweb-development%2Fjquery-cool-corners&amp;title=jQuery%20Cool%20Corners&amp;bodytext=With%20the%20advancements%20in%20the%20web%20industry%20designers%20are%20getting%20more%20creative%20and%20CSS%20is%20having%20a%20hard%20time%20keeping%20up%20with%20some%20stuff.%20%20Well%20almost%20anything%20that%20you%20would%20like%20to%20do%20can%20be%20done%20with%20jQuery.%20%20For%20instance%20one%20of%20my%20favorite%20thing%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%2Fweb-development%2Fjquery-cool-corners&amp;title=jQuery%20Cool%20Corners"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1355'), event, 'post-1355')" onMouseOver="more(this,'post-1355')"><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-1355')" id="sociable-post-1355" 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-development%2Fjquery-cool-corners&amp;t=jQuery%20Cool%20Corners"></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-development%2Fjquery-cool-corners&amp;t=jQuery%20Cool%20Corners"></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%20Cool%20Corners&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fjquery-cool-corners&amp;cat_id=6&amp;tag_id=31&amp;Remark=With%20the%20advancements%20in%20the%20web%20industry%20designers%20are%20getting%20more%20creative%20and%20CSS%20is%20having%20a%20hard%20time%20keeping%20up%20with%20some%20stuff.%20%20Well%20almost%20anything%20that%20you%20would%20like%20to%20do%20can%20be%20done%20with%20jQuery.%20%20For%20instance%20one%20of%20my%20favorite%20thing%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%2Fweb-development%2Fjquery-cool-corners&amp;Title=jQuery%20Cool%20Corners"></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-development%2Fjquery-cool-corners"></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-development%2Fjquery-cool-corners&amp;title=jQuery%20Cool%20Corners&amp;selection=With%20the%20advancements%20in%20the%20web%20industry%20designers%20are%20getting%20more%20creative%20and%20CSS%20is%20having%20a%20hard%20time%20keeping%20up%20with%20some%20stuff.%20%20Well%20almost%20anything%20that%20you%20would%20like%20to%20do%20can%20be%20done%20with%20jQuery.%20%20For%20instance%20one%20of%20my%20favorite%20thing%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%2Fweb-development%2Fjquery-cool-corners&amp;t=jQuery%20Cool%20Corners&amp;s=With%20the%20advancements%20in%20the%20web%20industry%20designers%20are%20getting%20more%20creative%20and%20CSS%20is%20having%20a%20hard%20time%20keeping%20up%20with%20some%20stuff.%20%20Well%20almost%20anything%20that%20you%20would%20like%20to%20do%20can%20be%20done%20with%20jQuery.%20%20For%20instance%20one%20of%20my%20favorite%20thing%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=jQuery%20Cool%20Corners&body=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fjquery-cool-corners&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-development%2Fjquery-cool-corners&amp;title=jQuery%20Cool%20Corners&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fjquery-cool-corners&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-1355',true)" class="close">























		  <img onclick="hide_sociable('post-1355',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 Cool Corners - http://www.shanestrong.com/web-development/jquery-cool-corners (via #sociablesite)" data-url="http://www.shanestrong.com/web-development/jquery-cool-corners" 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-development/jquery-cool-corners&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-development%2Fjquery-cool-corners&amp;title=jQuery%20Cool%20Corners'  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-development/jquery-cool-corners"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/web-development/jquery-cool-corners" 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-development/jquery-cool-corners" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1355&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/web-development/jquery-cool-corners/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Page Layouts</title>
		<link>http://www.shanestrong.com/web-development/magento-page-layouts</link>
		<comments>http://www.shanestrong.com/web-development/magento-page-layouts#comments</comments>
		<pubDate>Sat, 12 Jun 2010 14:29:18 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Magento Development]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1403</guid>
		<description><![CDATA[Making a new page layout or template with Magento is kind of a tricky task. Magento comes standard with a 3column, 2column-right, 2coulmn-left, 1coulmn, and a empty layout but what if you wanted to create a 4column or maybe just create a custom template for your pages or even just certain pages. Well in order [...]]]></description>
			<content:encoded><![CDATA[<p>Making a new page layout or template with Magento is kind of a tricky task.  Magento comes standard with a 3column, 2column-right, 2coulmn-left, 1coulmn, and a empty layout but what if you wanted to create a 4column or maybe just create a custom template for your pages or even just certain pages.  Well in order to do this you first need to understand how Magento works.  First you have your .phtml files.  These are basically your template files but to make these file do anything you have to get into the .xml files and tell them where to go.  This is something that really no one can just tell you how to do it you actually have to either get into the filing system and experiment or buy a book.  A good book to start with would be <a target="_blank" href="http://www.magentocommerce.com/support/magento-user-guide-book">Magento User Guide</a>.</p>
<h3>Creating The Template File</h3>
<p>In you are new to Magento then this will be kind of fun for you.  First you need to create your .phtml file.  In order to do that you need to navigate to your themes template pages folder.  How to find that?  Well if you are using the default Magento theme then you would first go to app -> frontend -> default -> default -> template -> page inside of there you will need to create you template file.  So let say we want to create a 4coulmn template.  You would just add a 4columns.phtml or whatever you would like to call it.  Now you may be thinking you are all done.  Nope if you go into your Magento Admin Panel or Dashboard and go under cms pages.  You will see that you can not select your new template as a layout.  Well this is because you need to first tell the Magento xml file to use the template.</p>
<h3>Editing The XML</h3>
<p>Lets locate those xml files.  If you are still in the template -> page directory then all you have to do is go out one directory to layout.  If you are not in the directory anymore you will have to navigate to app -> frountend -> default -> default -> layout.  Inside this directory you are going to be looking for the page.xml file.  Open it and navigate to the bottom.  You should find some code like this</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">    <span style="color: #808080; font-style: italic;">&lt;!-- Custom page layout handles --&gt;</span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;page_empty</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>All Empty Layout Pages<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;root&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setTemplate&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>page/empty.phtml<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- Mark root page block that template is applied --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setIsHandle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;applied<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/applied<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/page_empty<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;page_one_column</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>All One-Column Layout Pages<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;root&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setTemplate&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>page/1column.phtml<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- Mark root page block that template is applied --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setIsHandle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;applied<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/applied<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/page_one_column<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;page_two_columns_left</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>All Two-Column Layout Pages (Left Column)<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;root&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setTemplate&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>page/2columns-left.phtml<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- Mark root page block that template is applied --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setIsHandle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;applied<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/applied<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/page_two_columns_left<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;page_two_columns_right</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>All Two-Column Layout Pages (Right Column)<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;root&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setTemplate&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>page/2columns-right.phtml<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- Mark root page block that template is applied --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setIsHandle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;applied<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/applied<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/page_two_columns_right<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;page_three_columns</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>All Three-Column Layout Pages<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;root&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setTemplate&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>page/3columns.phtml<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- Mark root page block that template is applied --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setIsHandle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;applied<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/applied<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/page_three_columns<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Now you need to add your page template to the end of the page.xml file.  So you would do something like this.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;page_four_column</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Four Column Page Layout<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;root&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setTemplate&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>page/4columns.phtml<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #808080; font-style: italic;">&lt;!-- Mark root page block that template is applied --&gt;</span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;setIsHandle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;applied<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/applied<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/page_four_column<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Once you have added that you should be good to go.  If you do not see the layout in the drop down in the cms page area, you may need to refresh your Magento cache.  To do this go the Magento Admin Panel or Dashboard and go to System->Cache Management.  Refresh all the cache.  If that does not work then you need to go back and make sure you have named everything correct.</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 the biggest web companies in the Lansing Area and some all the way out to California.  We would love to hear from you. </p>
<h3>Sponsors</h3>
<p>Looking for rental properties try <a target="_blank" href="http://www.homeinbayarea.com" title="Alameda real estate agent">Alameda real estate agent</a>.</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=Magento%20Page%20Layouts%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fmagento-page-layouts%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-development%2Fmagento-page-layouts&amp;t=Magento%20Page%20Layouts"></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-development%2Fmagento-page-layouts&title=Magento%20Page%20Layouts"></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-development%2Fmagento-page-layouts&amp;title=Magento%20Page%20Layouts&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=Making%20a%20new%20page%20layout%20or%20template%20with%20Magento%20is%20kind%20of%20a%20tricky%20task.%20%20Magento%20comes%20standard%20with%20a%203column%2C%202column-right%2C%202coulmn-left%2C%201coulmn%2C%20and%20a%20empty%20layout%20but%20what%20if%20you%20wanted%20to%20create%20a%204column%20or%20maybe%20just%20create%20a%20custom%20temp"></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-development%2Fmagento-page-layouts&amp;title=Magento%20Page%20Layouts&amp;notes=Making%20a%20new%20page%20layout%20or%20template%20with%20Magento%20is%20kind%20of%20a%20tricky%20task.%20%20Magento%20comes%20standard%20with%20a%203column%2C%202column-right%2C%202coulmn-left%2C%201coulmn%2C%20and%20a%20empty%20layout%20but%20what%20if%20you%20wanted%20to%20create%20a%204column%20or%20maybe%20just%20create%20a%20custom%20temp"></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-development%2Fmagento-page-layouts&amp;title=Magento%20Page%20Layouts&amp;annotation=Making%20a%20new%20page%20layout%20or%20template%20with%20Magento%20is%20kind%20of%20a%20tricky%20task.%20%20Magento%20comes%20standard%20with%20a%203column%2C%202column-right%2C%202coulmn-left%2C%201coulmn%2C%20and%20a%20empty%20layout%20but%20what%20if%20you%20wanted%20to%20create%20a%204column%20or%20maybe%20just%20create%20a%20custom%20temp"></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-development%2Fmagento-page-layouts&amp;title=Magento%20Page%20Layouts&amp;bodytext=Making%20a%20new%20page%20layout%20or%20template%20with%20Magento%20is%20kind%20of%20a%20tricky%20task.%20%20Magento%20comes%20standard%20with%20a%203column%2C%202column-right%2C%202coulmn-left%2C%201coulmn%2C%20and%20a%20empty%20layout%20but%20what%20if%20you%20wanted%20to%20create%20a%204column%20or%20maybe%20just%20create%20a%20custom%20temp"></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-development%2Fmagento-page-layouts&amp;title=Magento%20Page%20Layouts"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1403'), event, 'post-1403')" onMouseOver="more(this,'post-1403')"><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-1403')" id="sociable-post-1403" 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-development%2Fmagento-page-layouts&amp;t=Magento%20Page%20Layouts"></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-development%2Fmagento-page-layouts&amp;t=Magento%20Page%20Layouts"></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=Magento%20Page%20Layouts&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fmagento-page-layouts&amp;cat_id=6&amp;tag_id=31&amp;Remark=Making%20a%20new%20page%20layout%20or%20template%20with%20Magento%20is%20kind%20of%20a%20tricky%20task.%20%20Magento%20comes%20standard%20with%20a%203column%2C%202column-right%2C%202coulmn-left%2C%201coulmn%2C%20and%20a%20empty%20layout%20but%20what%20if%20you%20wanted%20to%20create%20a%204column%20or%20maybe%20just%20create%20a%20custom%20temp"></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-development%2Fmagento-page-layouts&amp;Title=Magento%20Page%20Layouts"></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-development%2Fmagento-page-layouts"></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-development%2Fmagento-page-layouts&amp;title=Magento%20Page%20Layouts&amp;selection=Making%20a%20new%20page%20layout%20or%20template%20with%20Magento%20is%20kind%20of%20a%20tricky%20task.%20%20Magento%20comes%20standard%20with%20a%203column%2C%202column-right%2C%202coulmn-left%2C%201coulmn%2C%20and%20a%20empty%20layout%20but%20what%20if%20you%20wanted%20to%20create%20a%204column%20or%20maybe%20just%20create%20a%20custom%20temp"></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-development%2Fmagento-page-layouts&amp;t=Magento%20Page%20Layouts&amp;s=Making%20a%20new%20page%20layout%20or%20template%20with%20Magento%20is%20kind%20of%20a%20tricky%20task.%20%20Magento%20comes%20standard%20with%20a%203column%2C%202column-right%2C%202coulmn-left%2C%201coulmn%2C%20and%20a%20empty%20layout%20but%20what%20if%20you%20wanted%20to%20create%20a%204column%20or%20maybe%20just%20create%20a%20custom%20temp"></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=Magento%20Page%20Layouts&body=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fmagento-page-layouts&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-development%2Fmagento-page-layouts&amp;title=Magento%20Page%20Layouts&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fmagento-page-layouts&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-1403',true)" class="close">























		  <img onclick="hide_sociable('post-1403',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="Magento Page Layouts - http://www.shanestrong.com/web-development/magento-page-layouts (via #sociablesite)" data-url="http://www.shanestrong.com/web-development/magento-page-layouts" 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-development/magento-page-layouts&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-development%2Fmagento-page-layouts&amp;title=Magento%20Page%20Layouts'  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-development/magento-page-layouts"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/web-development/magento-page-layouts" 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-development/magento-page-layouts" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1403&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/web-development/magento-page-layouts/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<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>jQuery Accordion</title>
		<link>http://www.shanestrong.com/web-design/jquery-accordion</link>
		<comments>http://www.shanestrong.com/web-design/jquery-accordion#comments</comments>
		<pubDate>Fri, 29 Jan 2010 05:40:20 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[jQuery Accordion]]></category>
		<category><![CDATA[jQuery Accordion Widget]]></category>
		<category><![CDATA[jQuery Widget]]></category>
		<category><![CDATA[jQuery WordPress]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1298</guid>
		<description><![CDATA[jQuery comes with a ton of different pre-made widgets. Some of which are really sweet and simple to implement into your website. One of the most notable of the widgets is the jQuery Accordion. This is a really easy way to squeeze a bunch of text, images, buttons, or whatever you are using in to [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery comes with a ton of different pre-made widgets.  Some of which are really sweet and simple to implement into your website.  One of the most notable of the widgets is the jQuery Accordion.  This is a really easy way to squeeze a bunch of text, images, buttons, or whatever you are using in to a smaller area.  why would you need this?  Well if you have a website that has a bunch of stuff on it and need more space.  This is a great way to make more space.  For instance using a WordPress theme.  You may want to have somewhere in the numbers of 10-20 posts on your home page.  Now most WordPress themes do have 10 posts on the home page but I don&#8217;t know about you but that makes the site look really bloated.  That is where you bring in the jQuery Accordion widget.  That way you can maybe have one main post or featured post and all the rest of the 10 or how many ever can be squeezed into just the titles maybe.  Then when you click on the title in will open that post and if you have another post open it will close the open one.  </p>
<h3>How to use jQuery Accordion</h3>
<p>You do not have to use this for WordPress, you can use this on almost anything to make more space.  Here is how you would go about using the Accordion widget.</p>
<h4>Include your scripts</h4>
<p>These should go into your head section of your web page.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">&lt;head&gt;
//Default jQuery Style Sheet
&lt;link type=&quot;text/css&quot; href=&quot;http://jqueryui.com/latest/themes/base/ui.all.css&quot; rel=&quot;stylesheet&quot; /&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;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://jqueryui.com/ui/ui.accordion.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;</pre></div></div>

<h4>What happens next?</h4>
<p>Now you have to create your accordion script.  This is going to be hard for anyone who has never worked with jQuery so get ready.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">//Your accordion script
&lt;script type=&quot;text/javascript&quot;&gt;
$(function() {
    $(&quot;your_id or your_class&quot;).accordion();
});
&lt;/script&gt;</pre></div></div>

<p>That code can either go in your head section or your footer.  Ok so I kind of lied about that part being hard to do.  But this next part is going to be even harder yet.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">//This is where you create you info
&lt;div id=&quot;your_id&quot; class=&quot;your_class&quot;&gt;
//You only need either a class or a id.
//What ever you want to use the Accordion widget
//should have the same HTML element after your class
//or ID.
    &lt;h3&gt;&lt;a href=&quot;#&quot;&gt;This will be the first area's heading&lt;/a&gt;&lt;/h3&gt;
        &lt;div&gt;
            &lt;p&gt;This is your content in area 1&lt;/p&gt;
        &lt;/div&gt;
    &lt;h3&gt;&lt;a href=&quot;#&quot;&gt;This will be the second area's heading&lt;/a&gt;&lt;/h3&gt;       
        &lt;div&gt;
            &lt;p&gt;This is your content in area 2&lt;/p&gt;
            &lt;img src=&quot;http://www.shanestrong.com/wp-content/uploads/2009/07/jQuery-hover.jpg&quot; /&gt;
        &lt;/div&gt;
    &lt;h3&gt;&lt;a href=&quot;#&quot;&gt;This will be the third area's heading&lt;/a&gt;&lt;/h3&gt;
        &lt;div&gt;
            &lt;p&gt;This is your content in area 3&lt;/p&gt;
            &lt;p&gt;Another paragraph&lt;/p&gt;
        &lt;/div&gt;
    &lt;h3&gt;&lt;a href=&quot;#&quot;&gt;This will be the fourth area's heading&lt;/a&gt;&lt;/h3&gt;
        &lt;div&gt;
            &lt;p&gt;This is your content in area 4&lt;/p&gt;
            &lt;ul&gt;
                &lt;li&gt;List Item One&lt;/li&gt;
                &lt;li&gt;List Item Two&lt;/li&gt;
                &lt;li&gt;List Item Three&lt;/li&gt;
            &lt;/ul&gt;
        &lt;/div&gt;
&lt;/div&gt;</pre></div></div>

<h3>That is all there is to jQuery Accordion</h3>
<p>The only thing left to do is check it out for yourself I have created a page that has all the code.  If you would like to just see jQuery Accordion in action you can go to the link below.  If you would like to save the page you can just go to it and (Right Click and go to Save Page As).</p>
<p>jQuery Accordion: <a target="_blank" href="/jquery/accordion/accordion.htm" title="jQuery Accordion Tutorial">jQuery Accordion Trial</a></p>
<p>Download: <a class="downloadlink" href="http://www.shanestrong.com/downloads73" title="Version1.0 downloaded 13 times" >jQuery Accordion (13)</a></p>
<h3>jQuery Accordion Extras</h3>
<p>If you would like to learn more about this great jQuery widget just go to <a target="_blank" href="http://jqueryui.com/demos/accordion/">Here</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>
<!-- 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%20Accordion%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-accordion%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-accordion&amp;t=jQuery%20Accordion"></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-accordion&title=jQuery%20Accordion"></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-accordion&amp;title=jQuery%20Accordion&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=jQuery%20comes%20with%20a%20ton%20of%20different%20pre-made%20widgets.%20%20Some%20of%20which%20are%20really%20sweet%20and%20simple%20to%20implement%20into%20your%20website.%20%20One%20of%20the%20most%20notable%20of%20the%20widgets%20is%20the%20jQuery%20Accordion.%20%20This%20is%20a%20really%20easy%20way%20to%20squeeze%20a%20bunch%20of%20text%2C%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%2Fweb-design%2Fjquery-accordion&amp;title=jQuery%20Accordion&amp;notes=jQuery%20comes%20with%20a%20ton%20of%20different%20pre-made%20widgets.%20%20Some%20of%20which%20are%20really%20sweet%20and%20simple%20to%20implement%20into%20your%20website.%20%20One%20of%20the%20most%20notable%20of%20the%20widgets%20is%20the%20jQuery%20Accordion.%20%20This%20is%20a%20really%20easy%20way%20to%20squeeze%20a%20bunch%20of%20text%2C%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%2Fweb-design%2Fjquery-accordion&amp;title=jQuery%20Accordion&amp;annotation=jQuery%20comes%20with%20a%20ton%20of%20different%20pre-made%20widgets.%20%20Some%20of%20which%20are%20really%20sweet%20and%20simple%20to%20implement%20into%20your%20website.%20%20One%20of%20the%20most%20notable%20of%20the%20widgets%20is%20the%20jQuery%20Accordion.%20%20This%20is%20a%20really%20easy%20way%20to%20squeeze%20a%20bunch%20of%20text%2C%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%2Fweb-design%2Fjquery-accordion&amp;title=jQuery%20Accordion&amp;bodytext=jQuery%20comes%20with%20a%20ton%20of%20different%20pre-made%20widgets.%20%20Some%20of%20which%20are%20really%20sweet%20and%20simple%20to%20implement%20into%20your%20website.%20%20One%20of%20the%20most%20notable%20of%20the%20widgets%20is%20the%20jQuery%20Accordion.%20%20This%20is%20a%20really%20easy%20way%20to%20squeeze%20a%20bunch%20of%20text%2C%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%2Fweb-design%2Fjquery-accordion&amp;title=jQuery%20Accordion"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1298'), event, 'post-1298')" onMouseOver="more(this,'post-1298')"><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-1298')" id="sociable-post-1298" 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-accordion&amp;t=jQuery%20Accordion"></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-accordion&amp;t=jQuery%20Accordion"></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%20Accordion&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-accordion&amp;cat_id=6&amp;tag_id=31&amp;Remark=jQuery%20comes%20with%20a%20ton%20of%20different%20pre-made%20widgets.%20%20Some%20of%20which%20are%20really%20sweet%20and%20simple%20to%20implement%20into%20your%20website.%20%20One%20of%20the%20most%20notable%20of%20the%20widgets%20is%20the%20jQuery%20Accordion.%20%20This%20is%20a%20really%20easy%20way%20to%20squeeze%20a%20bunch%20of%20text%2C%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%2Fweb-design%2Fjquery-accordion&amp;Title=jQuery%20Accordion"></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-accordion"></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-accordion&amp;title=jQuery%20Accordion&amp;selection=jQuery%20comes%20with%20a%20ton%20of%20different%20pre-made%20widgets.%20%20Some%20of%20which%20are%20really%20sweet%20and%20simple%20to%20implement%20into%20your%20website.%20%20One%20of%20the%20most%20notable%20of%20the%20widgets%20is%20the%20jQuery%20Accordion.%20%20This%20is%20a%20really%20easy%20way%20to%20squeeze%20a%20bunch%20of%20text%2C%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%2Fweb-design%2Fjquery-accordion&amp;t=jQuery%20Accordion&amp;s=jQuery%20comes%20with%20a%20ton%20of%20different%20pre-made%20widgets.%20%20Some%20of%20which%20are%20really%20sweet%20and%20simple%20to%20implement%20into%20your%20website.%20%20One%20of%20the%20most%20notable%20of%20the%20widgets%20is%20the%20jQuery%20Accordion.%20%20This%20is%20a%20really%20easy%20way%20to%20squeeze%20a%20bunch%20of%20text%2C%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%20Accordion&body=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-accordion&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-accordion&amp;title=jQuery%20Accordion&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-design%2Fjquery-accordion&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-1298',true)" class="close">























		  <img onclick="hide_sociable('post-1298',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 Accordion - http://www.shanestrong.com/web-design/jquery-accordion (via #sociablesite)" data-url="http://www.shanestrong.com/web-design/jquery-accordion" 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-accordion&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-accordion&amp;title=jQuery%20Accordion'  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-accordion"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/web-design/jquery-accordion" 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-accordion" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1298&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/web-design/jquery-accordion/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Shane&#8217;s New Site Launches</title>
		<link>http://www.shanestrong.com/web-development/shanes-new-site-launches</link>
		<comments>http://www.shanestrong.com/web-development/shanes-new-site-launches#comments</comments>
		<pubDate>Wed, 28 Oct 2009 03:07:51 +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[Chosen]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[WordPress Theme Developer]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1190</guid>
		<description><![CDATA[This week Shane Strong launched a few different sites. One was launched by Shane and Alex Tourtillott. Two more were launched by Shane and Chosen Development. Our first site is a small site using the Chosen CMS. This site was designed by Alex Tourtillott and Developed by Shane. This site is called www.neighborhoodres.org. They are [...]]]></description>
			<content:encoded><![CDATA[<p>This week Shane Strong launched a few different sites.  One was launched by Shane and Alex Tourtillott.  Two more were launched by Shane and Chosen Development.  Our first site is a small site using the Chosen CMS.  This site was designed by Alex Tourtillott and Developed by Shane.  This site is called www.neighborhoodres.org.  They are a small adult and elder care service.  You can view them in my portfolio.  The next site was designed by Clayton McIlrath from Chosen Development and Developed by Shane Strong also from Chosen Development.  This site is for a small branch of a bigger Church based out of Lansing, MI called Mount Hope.  The small branch is from Saint Johns Michigan and it is called Saint Johns Mount Hope.  You can go to my portfolio and see the church site or you can go to www.mthopestjohns.com.  The last and final site that I finished this week was Calvary International Fellowship Ministries.  This is a start up church based out of East Lansing, MI.  This site was designed and developed by Shane Strong.  You can see this site in my portfolio or you can go to www.cifministries.com.  The last was a theme Shane developed for a WordPress site at brog.brandinginc.net.  You can also see that in my portfolio.  That is it for sites this week.   I am hoping to have updates to most of my themes by the end of next week, with some new customized functions for most of them. I also hope to share some new themes that will have the customizations.</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=Shane%27s%20New%20Site%20Launches%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fshanes-new-site-launches%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-development%2Fshanes-new-site-launches&amp;t=Shane%27s%20New%20Site%20Launches"></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-development%2Fshanes-new-site-launches&title=Shane%27s%20New%20Site%20Launches"></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-development%2Fshanes-new-site-launches&amp;title=Shane%27s%20New%20Site%20Launches&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=This%20week%20Shane%20Strong%20launched%20a%20few%20different%20sites.%20%20One%20was%20launched%20by%20Shane%20and%20Alex%20Tourtillott.%20%20Two%20more%20were%20launched%20by%20Shane%20and%20Chosen%20Development.%20%20Our%20first%20site%20is%20a%20small%20site%20using%20the%20Chosen%20CMS.%20%20This%20site%20was%20designed%20by%20Alex%20Tou"></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-development%2Fshanes-new-site-launches&amp;title=Shane%27s%20New%20Site%20Launches&amp;notes=This%20week%20Shane%20Strong%20launched%20a%20few%20different%20sites.%20%20One%20was%20launched%20by%20Shane%20and%20Alex%20Tourtillott.%20%20Two%20more%20were%20launched%20by%20Shane%20and%20Chosen%20Development.%20%20Our%20first%20site%20is%20a%20small%20site%20using%20the%20Chosen%20CMS.%20%20This%20site%20was%20designed%20by%20Alex%20Tou"></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-development%2Fshanes-new-site-launches&amp;title=Shane%27s%20New%20Site%20Launches&amp;annotation=This%20week%20Shane%20Strong%20launched%20a%20few%20different%20sites.%20%20One%20was%20launched%20by%20Shane%20and%20Alex%20Tourtillott.%20%20Two%20more%20were%20launched%20by%20Shane%20and%20Chosen%20Development.%20%20Our%20first%20site%20is%20a%20small%20site%20using%20the%20Chosen%20CMS.%20%20This%20site%20was%20designed%20by%20Alex%20Tou"></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-development%2Fshanes-new-site-launches&amp;title=Shane%27s%20New%20Site%20Launches&amp;bodytext=This%20week%20Shane%20Strong%20launched%20a%20few%20different%20sites.%20%20One%20was%20launched%20by%20Shane%20and%20Alex%20Tourtillott.%20%20Two%20more%20were%20launched%20by%20Shane%20and%20Chosen%20Development.%20%20Our%20first%20site%20is%20a%20small%20site%20using%20the%20Chosen%20CMS.%20%20This%20site%20was%20designed%20by%20Alex%20Tou"></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-development%2Fshanes-new-site-launches&amp;title=Shane%27s%20New%20Site%20Launches"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1190'), event, 'post-1190')" onMouseOver="more(this,'post-1190')"><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-1190')" id="sociable-post-1190" 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-development%2Fshanes-new-site-launches&amp;t=Shane%27s%20New%20Site%20Launches"></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-development%2Fshanes-new-site-launches&amp;t=Shane%27s%20New%20Site%20Launches"></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=Shane%27s%20New%20Site%20Launches&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fshanes-new-site-launches&amp;cat_id=6&amp;tag_id=31&amp;Remark=This%20week%20Shane%20Strong%20launched%20a%20few%20different%20sites.%20%20One%20was%20launched%20by%20Shane%20and%20Alex%20Tourtillott.%20%20Two%20more%20were%20launched%20by%20Shane%20and%20Chosen%20Development.%20%20Our%20first%20site%20is%20a%20small%20site%20using%20the%20Chosen%20CMS.%20%20This%20site%20was%20designed%20by%20Alex%20Tou"></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-development%2Fshanes-new-site-launches&amp;Title=Shane%27s%20New%20Site%20Launches"></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-development%2Fshanes-new-site-launches"></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-development%2Fshanes-new-site-launches&amp;title=Shane%27s%20New%20Site%20Launches&amp;selection=This%20week%20Shane%20Strong%20launched%20a%20few%20different%20sites.%20%20One%20was%20launched%20by%20Shane%20and%20Alex%20Tourtillott.%20%20Two%20more%20were%20launched%20by%20Shane%20and%20Chosen%20Development.%20%20Our%20first%20site%20is%20a%20small%20site%20using%20the%20Chosen%20CMS.%20%20This%20site%20was%20designed%20by%20Alex%20Tou"></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-development%2Fshanes-new-site-launches&amp;t=Shane%27s%20New%20Site%20Launches&amp;s=This%20week%20Shane%20Strong%20launched%20a%20few%20different%20sites.%20%20One%20was%20launched%20by%20Shane%20and%20Alex%20Tourtillott.%20%20Two%20more%20were%20launched%20by%20Shane%20and%20Chosen%20Development.%20%20Our%20first%20site%20is%20a%20small%20site%20using%20the%20Chosen%20CMS.%20%20This%20site%20was%20designed%20by%20Alex%20Tou"></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=Shane%27s%20New%20Site%20Launches&body=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fshanes-new-site-launches&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-development%2Fshanes-new-site-launches&amp;title=Shane%27s%20New%20Site%20Launches&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fshanes-new-site-launches&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-1190',true)" class="close">























		  <img onclick="hide_sociable('post-1190',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="Shane's New Site Launches - http://www.shanestrong.com/web-development/shanes-new-site-launches (via #sociablesite)" data-url="http://www.shanestrong.com/web-development/shanes-new-site-launches" 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-development/shanes-new-site-launches&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-development%2Fshanes-new-site-launches&amp;title=Shane%27s%20New%20Site%20Launches'  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-development/shanes-new-site-launches"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/web-development/shanes-new-site-launches" 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-development/shanes-new-site-launches" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1190&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/web-development/shanes-new-site-launches/feed</wfw:commentRss>
		<slash:comments>0</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>
	</channel>
</rss>

