<?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>Endigo Design</title>
	<atom:link href="http://www.endigodesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.endigodesign.com</link>
	<description>Modern Web Design by &#60;em&#62;Chris Simmons&#60;/em&#62;.</description>
	<lastBuildDate>Tue, 20 Jul 2010 21:54:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>HTML5 Sticky Footer</title>
		<link>http://www.endigodesign.com/2010/07/html5-sticky-footer/</link>
		<comments>http://www.endigodesign.com/2010/07/html5-sticky-footer/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 20:55:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.endigodesign.com/?p=356</guid>
		<description><![CDATA[You may or may not be familiar with this technique but you have most likely seen it in action at some point or another. The sticky footer allows you to create a CSS footer that attaches itself to the bottom of your screen...]]></description>
			<content:encoded><![CDATA[<h3>Introduction</h3>
<p>You may or may not be familiar with this technique but you have most likely seen it in action at some point or another. The sticky footer allows you to create a CSS footer that attaches itself to the bottom of your screen yet is smart enough not to overlap your page content.</p>
<p><a title="View Ryan's Website" href="http://ryanfait.com/resources/footer-stick-to-bottom-of-page/" target="_blank">Ryan Fait</a> provides a great tutorial for using this method but has unfortunately not updated his tutorial with an HTML5 version. I was planning on updating this for my own personal use but decided to share it on here as well. So here&#8217;s the effect in action:</p>
<p><a class="button" href="http://www.endigodesign.com/wp-content/themes/endigo/demos/demo_html5stickyborder.html" target="_blank">View The Demo</a></p>
<h3>Getting Started</h3>
<p>Let&#8217;s start off by taking a look at the code.</p>
<p><strong>CSS</strong></p>
<pre class="brush: css;">
&lt;style type=&quot;text/css&quot;&gt;
	* {margin: 0;}
	html, body {height: 100%;}
	#wrap {
		min-height: 100%;
		height: auto !important;
		height: 100%;
		margin: 0 auto -100px; /* Set footer height. */
	}
	footer, .push {
		height: 100px; /* Set footer height. */
		/* clear: both; */ /* Muti-column fix.*/
	}
	footer {background: blue;}
&lt;/style&gt;
</pre>
<p><strong>HTML5</strong></p>
<pre class="brush: xml;">
&lt;!DOCTYPE HTML&gt;
&lt;html lang=&quot;en-US&quot;&gt;
&lt;head&gt;
	&lt;title&gt;HTML 5 Sticky Footer&lt;/title&gt;
	&lt;meta charset=&quot;UTF-8&quot;&gt;
&lt;/head&gt;
&lt;body&gt;

    &lt;div id=&quot;wrap&quot;&gt;
        &lt;!--Page content here...--&gt;
        &lt;div class=&quot;push&quot;&gt;&lt;!--Sticky Footer Push--&gt;&lt;/div&gt;
    &lt;/div&gt;
    &lt;footer&gt;
        &lt;!--Footer content here...--&gt;
    &lt;/footer&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<h3>How it Works</h3>
<p>So what is happening here? We have created some basic markup that is split into two main sections, the <strong>wrap</strong> and the <strong>footer</strong>. Inside the wrap we have a div with the class of <strong>push</strong>. Simple enough so far. The magic really happens in the CSS where we set a negative bottom margin that matches  the values of our push and footer heights (note: this must include border and padding height as well!).</p>
<h3>Final Thoughts</h3>
<p>I will warn you to avoid setting a top margin on your footer, instead set the padding using your wrap tag instead. You may also notice that footer works fine without  <code><strong>height:auto !important;</strong></code><strong> </strong>and<strong> </strong><code><strong>height: 100%;</strong> As Ryan notes these are added simply as a min-height fix for IE6. If you are not targeting that browser you are free to remove those lines.</code></p>
<p><a class="button" href="http://www.endigodesign.com/wp-content/themes/endigo/demos/demo_html5stickyborder.html" target="_blank">View The Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.endigodesign.com/2010/07/html5-sticky-footer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Three Great New Projects</title>
		<link>http://www.endigodesign.com/2010/07/three-new-projects/</link>
		<comments>http://www.endigodesign.com/2010/07/three-new-projects/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 02:19:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.endigodesign.com/?p=346</guid>
		<description><![CDATA[Three new projects have been added to my portfolio. Two currently in-production projects and one that will be launched early next week. ]]></description>
			<content:encoded><![CDATA[<p>Three new projects have been added to my portfolio. Two currently in-production projects and one of which that will be launched early next week.</p>
<p><a title="View This Site" href="http://www.endigodesign.com/project/flowers-by-ramon/">Flower&#8217;s By Ramon<br />
</a>This is an E-Commerce website that is being built using the Shopify E-Commerce system. It is shaping up to be a really great online store.</p>
<p><a title="View This Project" href="http://www.endigodesign.com/project/el-kouri-fishing/">El Kouri Fishing<br />
</a>This will be an online portfolio website for Joe Dan El Kouri, a professional fisherman out of Lawton, Oklahoma.</p>
<p><a title="View This Project" href="http://www.endigodesign.com/project/vic-james/">Vic &amp; James Paint Center<br />
</a>This site is just about ready to launch. This is a local paint store business but the site has came together really well and I was able to use some new (for me) CSS3 styles. Specifically nth-child.</p>
<p>Since these sites are all pre-launch there may still be some on going changes made between now and launch. I will update all three projects to a final status and update all thumbnails as soon as they are finalized. For now enjoy an early sneak peak!</p>
<p>Also a quick status update, I currently have a few big updates planned for this blog in the upcoming weeks. Be sure and check back soon. Until then.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.endigodesign.com/2010/07/three-new-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn how to use CSS3 Keyframe Animation</title>
		<link>http://www.endigodesign.com/2010/06/learn-how-to-use-css3-keyframe-animation/</link>
		<comments>http://www.endigodesign.com/2010/06/learn-how-to-use-css3-keyframe-animation/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 01:18:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.endigodesign.com/?p=240</guid>
		<description><![CDATA[If your viewing my site using a Webkit based browser such as Google Chrome or Apple Safari you may have noticed the subtle animated glow effect I use on the borders image links when you hover over them...]]></description>
			<content:encoded><![CDATA[<h3><span style="font-weight: normal;">Introduction</span></h3>
<p>If your viewing my site using a Webkit based browser such as Google Chrome or Apple Safari you may have noticed the subtle animated glow effect I use on the borders image links when you hover over them. Here&#8217;s a couple screenshots showing the effect:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.endigodesign.com/wp-content/uploads/2010/06/css3_keyframe001.jpg" alt="" /></p>
<p>I have accomplished this using the awesome <strong>@-webkit-keyframes</strong> tag being introduced in the CSS3 spec. Anyone that has ever created an animated gif or used programs like Adobe Flash will immediately understand the advantage keyframes bring to animation by allowing multiple stages of changes within a set amount of time.</p>
<h3><span style="font-weight: normal;">Getting Started</span></h3>
<p>Here is what it looks like in practice, please note the comments.</p>
<pre class="brush: css;">.gallery li div:hover {
	/* Give your animation a custom name */
	-webkit-animation-name: border-animation;

	/* Set the duration, s = seconds */
	-webkit-animation-duration: 2s;

	/* How many times the animation to repeat */
	-webkit-animation-iteration-count: infinite;

	/* Several options available, use linear for this example */
	-webkit-animation-timing-function: linear;
}
/* This is the keyframe tag + custom animation name (assigned above) */
@-webkit-keyframes border-animation {
	/* Below are when each frame takes place, 50% of a 2 second duration would be 1 second or half way through the animation. */
	0% {border: 5px solid #e7eeed;}
	50% {
		border: 5px dashed #fff9b2;
		-webkit-box-shadow: 0px 0px 12px #fff9b2;
		-moz-box-shadow: 0px 0px 12px #fff9b2;
		box-shadow: 0px 0px 12px #fff9b2;
 	}
	100% {border: 5px solid #e7eeed;}
} /* &lt;--- Small syntax highlighting error here */</pre>
<p>So here&#8217;s what my custom border-animation effect does: It has the typical 5px sized light blue border, then when moused over for 1 second (50% of a 2 second duration) fades to a light yellow border with a slight CSS3 box shadow which appears as a glow effect, finally one second later returns to it&#8217;s original state. As long as you hover over the selected elements the effect will repeat forever.</p>
<h3><span style="font-weight: normal;">Final Thoughts</span></h3>
<p>One final note I might point out you will notice from my code above. Most IDE&#8217;s with syntax highlighting do not yet recognize the extra curly brackets needed for the @-webkit-keyframes tag when specifying your keyframes. In Dreamweaver for example the last curly bracket is shown in a red color rather then the normal pink. See an example below:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.endigodesign.com/wp-content/uploads/2010/06/css3_keyframe003.jpg" alt="" /></p>
<p>For now it helps to add a comment to help remind yourself that this is intentional, I am sure this would most likely return an error if you tried to validate your code but that&#8217;s part of the game when your working with bleeding edge code specs!</p>
<p><em>Additional Notes: You can view some details about CSS3 animation with the </em><a href="http://webkit.org/blog/324/css-animation-2/" target="_blank"><em>Webkit.org CSS3 Animation Guide</em></a><em>. For the time being I am focusing on Webkit&#8217;s implementation of this effect using the proprietary -webkit- at the beginning of the tag since it is the only browser to my knowledge that can use the tag at the time of publishing this article. Opera is starting to support basic animations using -o- and Mozilla will soon start supporting animations using -moz- with their upcoming 3.7 release of Firefox. Microsoft is pushing for greater support of standards with their Internet Explorer 9 which may or may not include animation support.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.endigodesign.com/2010/06/learn-how-to-use-css3-keyframe-animation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starkers 3.0 Released</title>
		<link>http://www.endigodesign.com/2010/06/starkers-3-0-released/</link>
		<comments>http://www.endigodesign.com/2010/06/starkers-3-0-released/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 01:51:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.endigodesign.com/?p=229</guid>
		<description><![CDATA[What is Starkers? Starkers is a special Wordpress theme commonly referred to as a "naked" theme and created by the brilliant Elliot Jay Stocks. When building themes for Wordpress it can be a hassle to start completely from scratch unless you've memorized all the unique functions that are not always common in standard PHP...]]></description>
			<content:encoded><![CDATA[<p>What is Starkers? Starkers is a special WordPress theme commonly referred to as a &#8220;naked&#8221; theme and created by the brilliant <a href="http://elliotjaystocks.com/" target="_blank">Elliot Jay Stocks</a>. When building themes for WordPress it can be a hassle to start completely from scratch unless you&#8217;ve memorized all the unique functions that are not always common in standard PHP. You may also find that trying to take a completed theme and trying to strip it down to fit your needs often results in a poorly coded and designed sites.</p>
<p>This is where Starkers comes in, it provides you a theme completely stripped down to the bare essentials. Some basic html markup remains for layout as well as some extra goodies Elliot throws in such example font stack lists, basic theme structure in place, correctly sized theme thumbnail, as well as a CSS file ready to have all the template information added.</p>
<p>I have used Starkers for nearly all sites I build with a WordPress backend and hope to sometime in the near future provide my first tutorial for the site describing my work flow for creating a complete theme. For now though please check out this awesome resource and read the full details and download the theme from Elliot&#8217;s site from the links below.</p>
<p><a class="button" href="http://starkerstheme.com/demo/" target="_blank">View A Demo</a> <a class="button" href="http://elliotjaystocks.com/blog/starkers-3/" target="_blank">Starkers 3.0 Announcement</a> <a class="button" href="http://starkerstheme.com/" target="_blank">Download Starkers</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.endigodesign.com/2010/06/starkers-3-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 Now Available</title>
		<link>http://www.endigodesign.com/2010/06/wordpress-3-0-launched/</link>
		<comments>http://www.endigodesign.com/2010/06/wordpress-3-0-launched/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 05:08:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apps]]></category>

		<guid isPermaLink="false">http://www.endigodesign.com/?p=188</guid>
		<description><![CDATA[Wordpress is one of the most powerful blogging platforms on the market today. Recently they have taken a turn to expand their CMS (content management system) functions to enable really powerful backends for not only...]]></description>
			<content:encoded><![CDATA[<p>WordPress is one of the most powerful blogging platforms on the market today. Recently they have taken a turn to expand their CMS (content management system) functions to enable really powerful backends for not only bloggers but really any type of website. I personally love the application and their philosophy behind their product  and use it to power this very site as well as most of my client&#8217;s website I have built in the last year.</p>
<p>Today WordPress announced their latest version named &#8220;Theloniious&#8221; and includes such great features as a new default theme called Twenty-Ten, the now merged WordPress-MU system, a ton of bug fixes and other features that are sure to keep people like you and me busy learning for weeks to come.</p>
<p>I strongly recommend you give it a try on a local testing environment to test all the new features but having used it since the first release canidate I can safely say it is very stable and recommended to start using today! A great update to a great product.</p>
<p><a class="button" href="http://wordpress.org/" target="_blank">Download WordPress 3.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.endigodesign.com/2010/06/wordpress-3-0-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Endigo Design Launched!</title>
		<link>http://www.endigodesign.com/2010/05/new-site-launched/</link>
		<comments>http://www.endigodesign.com/2010/05/new-site-launched/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 05:30:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.endigodesign.com/?p=91</guid>
		<description><![CDATA[Welcome to the new site. While the site is still a bit rough around the edges it is up and running using all the latest tools and magic at my disposal. On Endigo you will find not only information about the owner (me!) Chris Simmons but also examples of my work.]]></description>
			<content:encoded><![CDATA[<p>Welcome to the new site. While the site is still a bit rough around the edges it is up and running using all the latest tools and magic at my disposal. On Endigo you will find not only information about the owner (me!) Chris Simmons but also examples of my work.</p>
<p>I also hope to use my blog to help publish and give back to the community some great tips and tricks I have learned to pass along knowledge and help the next guy. I have some big ideas but it will take time as anything does. I hope you will bookmark me and check back from time to time to see what&#8217;s new. Other then that please enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.endigodesign.com/2010/05/new-site-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
