<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Shane Strong &#187; Web Design</title>
	<atom:link href="http://www.shanestrong.com/tag/web-design/feed" rel="self" type="application/rss+xml" />
	<link>http://www.shanestrong.com</link>
	<description>Lansing WordPress Web Developer Search Engine Optimization Website Consultant Theme Developer Magento Developer Lansing Michigan</description>
	<lastBuildDate>Fri, 03 Feb 2012 15:45:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>CSS3 Box-Shadow</title>
		<link>http://www.shanestrong.com/css/css3-box-shadow</link>
		<comments>http://www.shanestrong.com/css/css3-box-shadow#comments</comments>
		<pubDate>Fri, 03 Feb 2012 15:45:52 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

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

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

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

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

<p>If you would like to see examples and learn more about this I would recommend going over to <a target="_blank" href="http://css-tricks.com/snippets/css/css-box-shadow/">CSS Tricks</a>.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=CSS3%20Box-Shadow%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;t=CSS3%20Box-Shadow"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&title=CSS3%20Box-Shadow"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow&amp;notes=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow&amp;annotation=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow&amp;bodytext=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1958'), event, 'post-1958')" onMouseOver="more(this,'post-1958')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-1958')" id="sociable-post-1958" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;t=CSS3%20Box-Shadow"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;t=CSS3%20Box-Shadow"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=CSS3%20Box-Shadow&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;cat_id=6&amp;tag_id=31&amp;Remark=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;Title=CSS3%20Box-Shadow"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow&amp;selection=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;t=CSS3%20Box-Shadow&amp;s=It%20seems%20like%20more%20and%20more%20website%20want%20to%20have%20the%20newest%20look%20and%20the%20newest%20techniques%20involved%20with%20them.%20%20A%20really%20cool%20technique%20that%20I%20use%20quite%20often%20is%20the%20CSS3%20Box%20Shadow.%20%20This%20is%20kind%20of%20like%20doing%20a%20drop%20shadow%20in%20Photoshop%20except%20it%20is"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=CSS3%20Box-Shadow&body=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-1958',true)" class="close">























		  <img onclick="hide_sociable('post-1958',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="CSS3 Box-Shadow - http://www.shanestrong.com/css/css3-box-shadow (via #sociablesite)" data-url="http://www.shanestrong.com/css/css3-box-shadow" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/css/css3-box-shadow&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fcss%2Fcss3-box-shadow&amp;title=CSS3%20Box-Shadow'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/css/css3-box-shadow"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/css/css3-box-shadow" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/css/css3-box-shadow" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1958&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/css/css3-box-shadow/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Corner Page Peel</title>
		<link>http://www.shanestrong.com/web-design/jquery-corner-page-peel</link>
		<comments>http://www.shanestrong.com/web-design/jquery-corner-page-peel#comments</comments>
		<pubDate>Sat, 06 Feb 2010 08:39:50 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[jQuery Peel]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Simple jQuery]]></category>

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

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

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

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

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

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

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

