<?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 Development</title>
	<atom:link href="http://www.shanestrong.com/category/web-development/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>Sat, 04 Feb 2012 17:23:44 +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 sixth part</h3>
<p>The sixth part is one that you may never use and it is one that you could find yourself using a lot.  The sixth 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>Turn Off WordPress Admin Bar</title>
		<link>http://www.shanestrong.com/wordpress-help/turn-off-wordpress-admin-bar</link>
		<comments>http://www.shanestrong.com/wordpress-help/turn-off-wordpress-admin-bar#comments</comments>
		<pubDate>Thu, 24 Feb 2011 09:58:15 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Theme Development]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress-Help]]></category>
		<category><![CDATA[WordPress Admin Bar]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1638</guid>
		<description><![CDATA[WordPress is really trying to make there cms as user friendly as possible. With the new release of version 3.1 WordPress has included a admin bar for logged in users. As a lot of people are wondering is it possible to remove this item that has been included. Well the answer is yes. There is [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is really trying to make there cms as user friendly as possible.  With the new release of version 3.1 WordPress has included a admin bar for logged in users.  As a lot of people are wondering is it possible to remove this item that has been included.  Well the answer is yes.  There is actually a couple ways to remove the admin bar.  First option would be to download a plugin that does it for you.  Not the worst option but not really the best either.  If you would like to disable this option just for your user, you can by going to your account and editing it there.  Here is a image for more help:</p>
<p><img src="http://www.shanestrong.com/wp-content/uploads/2011/02/adminbar.jpg" alt="" title="adminbar" width="300" height="204" class="clear size-full wp-image-1640" /></p>
<h3>Other Options</h3>
<p>Well I know personally I don&#8217;t want my users to have this ability.  So I want to have this not display for everyone not just myself.  This is not as easy as the other two options but is not that hard also.  What you need to do is get access to your functions.php file in your theme folder.  Now you need to edit that file and add the following lines of code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//Disables Admin Bar</span>
add_filter<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'show_admin_bar'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'__return_false'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Now this will disable the admin bar for all users but all users will still see the option if they edit there account.  So we also need to hide the option from the user and that will take adding this code to your functions.php file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//Hide Admin Bar Options</span>
add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'admin_print_scripts-profile.php'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'hide_admin_bar_prefs'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> hide_admin_bar_prefs<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #339933;">&lt;</span>style type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/css&quot;</span><span style="color: #339933;">&gt;</span>
    <span style="color: #339933;">.</span>show<span style="color: #339933;">-</span>admin<span style="color: #339933;">-</span>bar <span style="color: #009900;">&#123;</span> display<span style="color: #339933;">:</span> none<span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>style<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span> ?php
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Now this will disable the admin bar option and the admin bar for all users.  Hope this helped everyone.</pre>
<h3>Sponsors</h3>
<p>To get the best deals in <a target="_blank" href="http://www.psprint.com" title="Online Printing">online printing</a> try PsPrint Commercial Printing!</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=Turn%20Off%20WordPress%20Admin%20Bar%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;t=Turn%20Off%20WordPress%20Admin%20Bar"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&title=Turn%20Off%20WordPress%20Admin%20Bar"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;title=Turn%20Off%20WordPress%20Admin%20Bar&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=WordPress%20is%20really%20trying%20to%20make%20there%20cms%20as%20user%20friendly%20as%20possible.%20%20With%20the%20new%20release%20of%20version%203.1%20WordPress%20has%20included%20a%20admin%20bar%20for%20logged%20in%20users.%20%20As%20a%20lot%20of%20people%20are%20wondering%20is%20it%20possible%20to%20remove%20this%20item%20that%20has%20been"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;title=Turn%20Off%20WordPress%20Admin%20Bar&amp;notes=WordPress%20is%20really%20trying%20to%20make%20there%20cms%20as%20user%20friendly%20as%20possible.%20%20With%20the%20new%20release%20of%20version%203.1%20WordPress%20has%20included%20a%20admin%20bar%20for%20logged%20in%20users.%20%20As%20a%20lot%20of%20people%20are%20wondering%20is%20it%20possible%20to%20remove%20this%20item%20that%20has%20been"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;title=Turn%20Off%20WordPress%20Admin%20Bar&amp;annotation=WordPress%20is%20really%20trying%20to%20make%20there%20cms%20as%20user%20friendly%20as%20possible.%20%20With%20the%20new%20release%20of%20version%203.1%20WordPress%20has%20included%20a%20admin%20bar%20for%20logged%20in%20users.%20%20As%20a%20lot%20of%20people%20are%20wondering%20is%20it%20possible%20to%20remove%20this%20item%20that%20has%20been"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;title=Turn%20Off%20WordPress%20Admin%20Bar&amp;bodytext=WordPress%20is%20really%20trying%20to%20make%20there%20cms%20as%20user%20friendly%20as%20possible.%20%20With%20the%20new%20release%20of%20version%203.1%20WordPress%20has%20included%20a%20admin%20bar%20for%20logged%20in%20users.%20%20As%20a%20lot%20of%20people%20are%20wondering%20is%20it%20possible%20to%20remove%20this%20item%20that%20has%20been"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;title=Turn%20Off%20WordPress%20Admin%20Bar"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1638'), event, 'post-1638')" onMouseOver="more(this,'post-1638')"><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-1638')" id="sociable-post-1638" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;t=Turn%20Off%20WordPress%20Admin%20Bar"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;t=Turn%20Off%20WordPress%20Admin%20Bar"></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=Turn%20Off%20WordPress%20Admin%20Bar&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;cat_id=6&amp;tag_id=31&amp;Remark=WordPress%20is%20really%20trying%20to%20make%20there%20cms%20as%20user%20friendly%20as%20possible.%20%20With%20the%20new%20release%20of%20version%203.1%20WordPress%20has%20included%20a%20admin%20bar%20for%20logged%20in%20users.%20%20As%20a%20lot%20of%20people%20are%20wondering%20is%20it%20possible%20to%20remove%20this%20item%20that%20has%20been"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;Title=Turn%20Off%20WordPress%20Admin%20Bar"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;title=Turn%20Off%20WordPress%20Admin%20Bar&amp;selection=WordPress%20is%20really%20trying%20to%20make%20there%20cms%20as%20user%20friendly%20as%20possible.%20%20With%20the%20new%20release%20of%20version%203.1%20WordPress%20has%20included%20a%20admin%20bar%20for%20logged%20in%20users.%20%20As%20a%20lot%20of%20people%20are%20wondering%20is%20it%20possible%20to%20remove%20this%20item%20that%20has%20been"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;t=Turn%20Off%20WordPress%20Admin%20Bar&amp;s=WordPress%20is%20really%20trying%20to%20make%20there%20cms%20as%20user%20friendly%20as%20possible.%20%20With%20the%20new%20release%20of%20version%203.1%20WordPress%20has%20included%20a%20admin%20bar%20for%20logged%20in%20users.%20%20As%20a%20lot%20of%20people%20are%20wondering%20is%20it%20possible%20to%20remove%20this%20item%20that%20has%20been"></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=Turn%20Off%20WordPress%20Admin%20Bar&body=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;title=Turn%20Off%20WordPress%20Admin%20Bar&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&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-1638',true)" class="close">























		  <img onclick="hide_sociable('post-1638',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="Turn Off WordPress Admin Bar - http://www.shanestrong.com/wordpress-help/turn-off-wordpress-admin-bar (via #sociablesite)" data-url="http://www.shanestrong.com/wordpress-help/turn-off-wordpress-admin-bar" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/wordpress-help/turn-off-wordpress-admin-bar&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fturn-off-wordpress-admin-bar&amp;title=Turn%20Off%20WordPress%20Admin%20Bar'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/wordpress-help/turn-off-wordpress-admin-bar"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/wordpress-help/turn-off-wordpress-admin-bar" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/wordpress-help/turn-off-wordpress-admin-bar" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1638&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/wordpress-help/turn-off-wordpress-admin-bar/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>Can I Make My Site Faster?</title>
		<link>http://www.shanestrong.com/web-development/can-i-make-my-site-faster</link>
		<comments>http://www.shanestrong.com/web-development/can-i-make-my-site-faster#comments</comments>
		<pubDate>Wed, 23 Dec 2009 09:11:46 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Compressed CSS]]></category>
		<category><![CDATA[Compressed JavaScript]]></category>
		<category><![CDATA[Faster Sites]]></category>
		<category><![CDATA[Website Optimization]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1228</guid>
		<description><![CDATA[What can you do? There are many different things that you can do to make you site faster, but what are the main things that you should start with? Well if you have a slow site you really should have an expert such as a web developer take a look at it, as they know [...]]]></description>
			<content:encoded><![CDATA[<p>What can you do? There are many different things that you can do to make you site faster, but what are the main things that you should start with? Well if you have a slow site you really should have an expert such as a web developer take a look at it, as they know what they are doing. Why? Because, a site can be slow for many different reasons such as because of your stylesheets, your javascript, your hosting company, the amount of images you have on the site. There are many different ways to change these things up to make your site faster for the end user.</p>
<p>The first thing you have to do is find out what is making your site slow in the first place. If you have no clue on how to do this, find tools  that will tell you your issues. For instance if I was going to make my site faster for instance, I use Firefox as my main browser and it has many different tools/plugins that you can tell needs to be changed. So, open up your browser and download the Firefox plugins Firebug and YSlow. Firebug really doesn’t help with making your site faster but it is a great tool if you are trying to learn things about coding. With YSlow you can test your site and see what is making your site so slow. It grades everything involved with your site. The only problem with this is if you dont understand what it is telling you then it really won’t help you. That is why it is sometimes better to get someone else, who knows what they are doing, to make your site faster for you.</p>
<h4>What I Would Do</h4>
<p>The first thing would be to go into YSlow and see what is causing your site to be so sluggish. If you aren’t using Firefox there is a lot of different tools all over the internet that you can use. Here is a good place to start <a target="_blank" href="http://sixrevisions.com/tools/faster_web_page/">Faster Web Page</a>.</p>
<h4>How Old Is Your JavaScript Files</h4>
<p>If it was a javascript issue then I would minimize the amount of javascript that is being used and compress it so that the browser can read it faster. Having multiple javascript and/or old javascript files will make your site load much slower than having them up to date and compressed into one file or maybe two.</p>
<h4>What About My Stylesheets</h4>
<p>If it is a stylesheet issue then I would combine as many stylesheets into one as I could and compress them also. I find that the best thing to do is to have a compressed file and another copy of the file that is not compressed. That way if you need to make changes it is easy to change. Then you just make a new compressed file.</p>
<h4>How Many Images Do I Have</h4>
<p>If there is an image issue then I will take a look at what images are on the site and how large they are. Some persons don’t know that if you are making an image for the internet, and you don’t have a auto compression system in place then your image is going to be huge, most of the times. This will slow down the browser a ton. The best thing to do is to save the images ready for web. If you dont know how to do that then we can go back to YSlow and they have a great tool that will do it for you. If you go under tools at the bottom you will see All Smush.it. This compresses your images down to there compression rating and then lets you save them to your computer and all that you have to do next is upload them to your site.</p>
<h4>Who Is My Host</h4>
<p>My last and most important issue for most sites is who you have hosting your site. If your site is slow because of the company that is hosting it then you need to go somewhere else. For instance some really good companies to buy a server from are Hostmonster, Bluehost, Hostgator and many more. But some persons are getting hosted from neighbors, friends or uncles. What kind of hosting do you think that is. If you are not looking to spend the money to buy a server for your self you can find companies that can host your site for you at reasonable prices. For instance my company Chosen has different hosting packages. Our lowest is $25 a month which includes support and up to 3 emails. We have servers from Hostmonster. They are in my opinion the best hosting company out there. They have the best support and they have very little to none down time.</p>
<h4>Final Thoughts</h4>
<p>So that were a few different things that you should check into if you have a slow site. If none of these work for you 9 times out of 10 your site is too large, and, you need to think about a remake or paying someone to go through and tell you what need to be done to make the site faster. Your site should be updated about every couple of years if not every year. This doesn’t mean a new design to the site. No this means having someone go into the code of the site and optimize whatever they can to bring your site up-to-date.</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=Can%20I%20Make%20My%20Site%20Faster%3F%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fcan-i-make-my-site-faster%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%2Fcan-i-make-my-site-faster&amp;t=Can%20I%20Make%20My%20Site%20Faster%3F"></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%2Fcan-i-make-my-site-faster&title=Can%20I%20Make%20My%20Site%20Faster%3F"></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%2Fcan-i-make-my-site-faster&amp;title=Can%20I%20Make%20My%20Site%20Faster%3F&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=What%20can%20you%20do%3F%20There%20are%20many%20different%20things%20that%20you%20can%20do%20to%20make%20you%20site%20faster%2C%20but%20what%20are%20the%20main%20things%20that%20you%20should%20start%20with%3F%20Well%20if%20you%20have%20a%20slow%20site%20you%20really%20should%20have%20an%20expert%20such%20as%20a%20web%20developer%20take%20a%20look%20at%20it"></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%2Fcan-i-make-my-site-faster&amp;title=Can%20I%20Make%20My%20Site%20Faster%3F&amp;notes=What%20can%20you%20do%3F%20There%20are%20many%20different%20things%20that%20you%20can%20do%20to%20make%20you%20site%20faster%2C%20but%20what%20are%20the%20main%20things%20that%20you%20should%20start%20with%3F%20Well%20if%20you%20have%20a%20slow%20site%20you%20really%20should%20have%20an%20expert%20such%20as%20a%20web%20developer%20take%20a%20look%20at%20it"></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%2Fcan-i-make-my-site-faster&amp;title=Can%20I%20Make%20My%20Site%20Faster%3F&amp;annotation=What%20can%20you%20do%3F%20There%20are%20many%20different%20things%20that%20you%20can%20do%20to%20make%20you%20site%20faster%2C%20but%20what%20are%20the%20main%20things%20that%20you%20should%20start%20with%3F%20Well%20if%20you%20have%20a%20slow%20site%20you%20really%20should%20have%20an%20expert%20such%20as%20a%20web%20developer%20take%20a%20look%20at%20it"></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%2Fcan-i-make-my-site-faster&amp;title=Can%20I%20Make%20My%20Site%20Faster%3F&amp;bodytext=What%20can%20you%20do%3F%20There%20are%20many%20different%20things%20that%20you%20can%20do%20to%20make%20you%20site%20faster%2C%20but%20what%20are%20the%20main%20things%20that%20you%20should%20start%20with%3F%20Well%20if%20you%20have%20a%20slow%20site%20you%20really%20should%20have%20an%20expert%20such%20as%20a%20web%20developer%20take%20a%20look%20at%20it"></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%2Fcan-i-make-my-site-faster&amp;title=Can%20I%20Make%20My%20Site%20Faster%3F"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1228'), event, 'post-1228')" onMouseOver="more(this,'post-1228')"><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-1228')" id="sociable-post-1228" 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%2Fcan-i-make-my-site-faster&amp;t=Can%20I%20Make%20My%20Site%20Faster%3F"></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%2Fcan-i-make-my-site-faster&amp;t=Can%20I%20Make%20My%20Site%20Faster%3F"></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=Can%20I%20Make%20My%20Site%20Faster%3F&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fcan-i-make-my-site-faster&amp;cat_id=6&amp;tag_id=31&amp;Remark=What%20can%20you%20do%3F%20There%20are%20many%20different%20things%20that%20you%20can%20do%20to%20make%20you%20site%20faster%2C%20but%20what%20are%20the%20main%20things%20that%20you%20should%20start%20with%3F%20Well%20if%20you%20have%20a%20slow%20site%20you%20really%20should%20have%20an%20expert%20such%20as%20a%20web%20developer%20take%20a%20look%20at%20it"></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%2Fcan-i-make-my-site-faster&amp;Title=Can%20I%20Make%20My%20Site%20Faster%3F"></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%2Fcan-i-make-my-site-faster"></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%2Fcan-i-make-my-site-faster&amp;title=Can%20I%20Make%20My%20Site%20Faster%3F&amp;selection=What%20can%20you%20do%3F%20There%20are%20many%20different%20things%20that%20you%20can%20do%20to%20make%20you%20site%20faster%2C%20but%20what%20are%20the%20main%20things%20that%20you%20should%20start%20with%3F%20Well%20if%20you%20have%20a%20slow%20site%20you%20really%20should%20have%20an%20expert%20such%20as%20a%20web%20developer%20take%20a%20look%20at%20it"></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%2Fcan-i-make-my-site-faster&amp;t=Can%20I%20Make%20My%20Site%20Faster%3F&amp;s=What%20can%20you%20do%3F%20There%20are%20many%20different%20things%20that%20you%20can%20do%20to%20make%20you%20site%20faster%2C%20but%20what%20are%20the%20main%20things%20that%20you%20should%20start%20with%3F%20Well%20if%20you%20have%20a%20slow%20site%20you%20really%20should%20have%20an%20expert%20such%20as%20a%20web%20developer%20take%20a%20look%20at%20it"></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=Can%20I%20Make%20My%20Site%20Faster%3F&body=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fcan-i-make-my-site-faster&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%2Fcan-i-make-my-site-faster&amp;title=Can%20I%20Make%20My%20Site%20Faster%3F&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fweb-development%2Fcan-i-make-my-site-faster&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-1228',true)" class="close">























		  <img onclick="hide_sociable('post-1228',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="Can I Make My Site Faster? - http://www.shanestrong.com/web-development/can-i-make-my-site-faster (via #sociablesite)" data-url="http://www.shanestrong.com/web-development/can-i-make-my-site-faster" 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/can-i-make-my-site-faster&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%2Fcan-i-make-my-site-faster&amp;title=Can%20I%20Make%20My%20Site%20Faster%3F'  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/can-i-make-my-site-faster"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/web-development/can-i-make-my-site-faster" 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/can-i-make-my-site-faster" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1228&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/web-development/can-i-make-my-site-faster/feed</wfw:commentRss>
		<slash:comments>0</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>
		<item>
		<title>New WordPress Features</title>
		<link>http://www.shanestrong.com/wordpress-help/new-wordpress-features</link>
		<comments>http://www.shanestrong.com/wordpress-help/new-wordpress-features#comments</comments>
		<pubDate>Fri, 26 Jun 2009 16:12:03 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Shane]]></category>
		<category><![CDATA[Theme Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress-Help]]></category>
		<category><![CDATA[Powered by WordPress]]></category>
		<category><![CDATA[Shane Strong]]></category>
		<category><![CDATA[WordPress Theme Developer]]></category>
		<category><![CDATA[WordPress Themes]]></category>

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

