<?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>The Web Development Blog</title>
	<atom:link href="http://www.thewebdevelopmentblog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thewebdevelopmentblog.com</link>
	<description>News, tips, scripts and tutorials for web developers.</description>
	<lastBuildDate>Thu, 25 Aug 2011 11:15:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Design Competition</title>
		<link>http://www.thewebdevelopmentblog.com/2011/08/design-competition/</link>
		<comments>http://www.thewebdevelopmentblog.com/2011/08/design-competition/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 11:14:57 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thewebdevelopmentblog.com/?p=476</guid>
		<description><![CDATA[We Are Love is looking for designs to help them raise money for charity&#8230; All you have to do is design a t-shirt or tank with the words We Are Love. The best designs will be chosen, then the world will vote on which t-shirts they like the most. The most popular designs will be [...]]]></description>
			<content:encoded><![CDATA[<p>We Are Love is looking for designs to help them raise money for charity&#8230;</p>
<p>All you have to do is design a t-shirt or tank with the words We Are Love. The best designs will be chosen, then the world will vote on which t-shirts they like the most. The most popular designs will be printed as part of the 2012 summer collection.</p>
<p>Each winning designer will get their name printed on the back of their t-shirt, as well as a free copy of their t-shirt and coupon code for discounts on the We Are Love store for you and you friends.</p>
<p>Submit your design today at <a title="We Are Love - Tees For Charity" href="http://www.we-are-love.com/design/" target="_blank">we-are-love.com/​design</a> and help us make a difference.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2011/08/design-competition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 Today! Introduction to CSS3.</title>
		<link>http://www.thewebdevelopmentblog.com/2011/06/css3-today-introduction-to-css3/</link>
		<comments>http://www.thewebdevelopmentblog.com/2011/06/css3-today-introduction-to-css3/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 01:05:06 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.thewebdevelopmentblog.com/?p=469</guid>
		<description><![CDATA[Even though the CSS3 spec is not 100% complete, all the major browsers are now supporting it making it ready to use today! Due to the spec not being finish thought you generally have to use the browser prefix so it can get a little long winded&#8230; None the less, you can achieve so much [...]]]></description>
			<content:encoded><![CDATA[<p>Even though the CSS3 spec is not 100% complete, all the major browsers are now supporting it making it ready to use today! Due to the spec not being finish thought you generally have to use the browser prefix so it can get a little long winded&#8230; None the less, you can achieve so much more than with javascript alone.</p>
<p><span id="more-469"></span>With CSS3 there is a lot to learn, and instead of me trying to cover it all in one article I will be posting some tutorials and demo&#8217;s over the coming months on how to do various things. But I do want to cover a few basics before we go into those tutorials.</p>
<p>First things first, if you&#8217;re still using images for round edges, stop! All modern browsers support round edges via CSS3 and the code is really easy&#8230; (Older versions of browsers including IE will roll back to square edges, but those users deserve to miss out for not upgrading their browser haha).</p>
<pre><code>
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-o-border-radius: 15px;
-ms-border-radius: 15px;
</code></pre>
<p>&nbsp;</p>
<p>Okay&#8230; It seems like a fair bit of code&#8230; But once the full spec is complete you&#8217;ll only need the first line. For now this will cover the leading browsers (Safari, Chrome, Firefox, Opera and IE9+).</p>
<p>Secondly, fonts. Too many times I see site using cufon, sifr or other attempts at using non-standard fonts. ALL the major browsers support the font-face tag as standard and there are many website that will generate the fonts and code for you. My preference is <a title="Font 2 Web" href="http://www.font2web.com/" target="_blank">http://www.font2web.com/</a> but <a title="Font Squirrel" href="http://www.fontsquirrel.com/fontface/generator" target="_blank">http://www.fontsquirrel.com/fontface/generator</a> is also good&#8230; They will provide the CSS code which you put in your stylesheet, then you can select call the font-family in just like you would a standard font. It&#8217;s really easy to do.</p>
<p>Lastly, gradients&#8230; Relatively easy to do as well is CSS 3 gradients. These can be a bit trickier but there are some good tools to help you generate background gradients so you can stop using images. Try <a title="Create CSS 3 code" href="http://www.createcss3.com/" target="_blank">http://www.createcss3.com/</a> for basic linear gradients or <a title="Gradient Editor" href="http://www.colorzilla.com/gradient-editor/" target="_blank">http://www.colorzilla.com/gradient-editor/</a> for more advanced gradients with colour stops etc.</p>
<p>In future demos I&#8217;ll cover more but these are the 3 key ones you should be using today. In future tutorials I&#8217;ll cover transforms, transitions, animations, shadows and much much more! Stay Tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2011/06/css3-today-introduction-to-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery 1.5(.1) now released</title>
		<link>http://www.thewebdevelopmentblog.com/2011/03/jquery-1-5-1-now-released/</link>
		<comments>http://www.thewebdevelopmentblog.com/2011/03/jquery-1-5-1-now-released/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 11:39:28 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.thewebdevelopmentblog.com/2011/03/jquery-1-5-1-now-released/</guid>
		<description><![CDATA[So because I&#8217;ve been too busy with developing and trying to keep up with everything else in life I really have not been able to update my blog for a while. So if you have been silly enough to check frequently then you&#8217;ve been bored and for that I&#8217;m sorry. But&#8230; Good news is jQuery [...]]]></description>
			<content:encoded><![CDATA[<p>So because I&#8217;ve been too busy with developing and trying to keep up with everything else in life I really have not been able to update my blog for a while. So if you have been silly enough to check frequently then you&#8217;ve been bored and for that I&#8217;m sorry. But&#8230; Good news is jQuery 1.5 has been released then before I&#8217;ve even decided to write about it 1.5.1 has also been released.</p>
<p>I&#8217;ve been using it for a few weeks now and it has been so much more stable than 1.4.x &#8211; I pretty much bypassed that whole release as it was full of bugs and was a step backwards for jQuery in my opinion. 1.5.x has proven to redeem itself and proven to be faster and more stable then the previous 1.4.x release. Fingers crossed it stays that way and I don&#8217;t run into any major compatibility issues. 1.4.x was particularly unstable IE7. </p>
<p>You can get more details or download jQuery from <a href="http://www.jquery.com" target="_blank">jquery.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2011/03/jquery-1-5-1-now-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook is killing itself</title>
		<link>http://www.thewebdevelopmentblog.com/2010/11/facebook-is-killing-itself/</link>
		<comments>http://www.thewebdevelopmentblog.com/2010/11/facebook-is-killing-itself/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 13:06:33 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.thewebdevelopmentblog.com/2010/11/facebook-is-killing-itself/</guid>
		<description><![CDATA[You may remember a few years back there was a little old site called MySpace, MySpace was everywhere, anyone under the ages of 21 had it. Then came along Facebook, it was confusing at first and no-one really knew what it was. People liked it for 2 reasons, 1 it was easy to join and [...]]]></description>
			<content:encoded><![CDATA[<p>You may remember a few years back there was a little old site called MySpace, MySpace was everywhere, anyone under the ages of 21 had it. Then came along Facebook, it was confusing at first and no-one really knew what it was. People liked it for 2 reasons, 1 it was easy to join and 2 it was trendy. MySpace then became less cool as it just copied Facebook. Today MySpace is nothing less than a site that bands create profiles for no-one to look at.<br />
<span id="more-455"></span></p>
<p>So why then is some guy, that posts rarely on his blog telling you that Facebook is killing itself? Facebook&#8217;s problem is it doesn&#8217;t quite know what it is anymore and why it exists. They&#8217;re adding new features yes, but so did MySpace, and they&#8217;re features nobody except the nerdy among us care about. </p>
<p>&#8220;Jason, why are you saying this blasphemy?&#8221; you ask&#8230; Well i&#8217;m not against Facebook, I love Facebook, kinda&#8230; It stays on everyday and it still wastes my time like any good social site. It&#8217;s also not because I started <a href="http://www.brosbook.com" target="_blank">brosbook.com</a> because let&#8217;s face it, BrosBook is just a bit of fun and doesn&#8217;t have the worldwide appeal of Facebook. My reasoning to this is, I read today Facebook is announcing an email service. &#8220;Soooo?&#8221; Yeah okay doesn&#8217;t seem like something that would trigger this article but hear me out.</p>
<p>Before Facebook killed it, MySpace was adding features that already existed elsewhere, it added apps, like Facebook, it added status&#8217;s, like Facebook. &#8220;Get to the point!&#8221; Well we have email services, hundreds, possibly thousands. Why do we need Facebook email? The answer is we don&#8217;t. You know what else we don&#8217;t need, groups. We also don&#8217;t need places (aka, if you want to kill me, you know where I am). Thus being the point, Facebook has stopped innovating and started following. Like MySpace users will stick to Facebook for a while, but there is going to be another site somewhere down the track (next few years) that will kill Facebook. Why? Because Facebook is not cool anymore. </p>
<p>I can&#8217;t tell the future, I don&#8217;t believe current trends like Tumblr and Twitter have what it takes to kill Facebook, they&#8217;re in a different league. But soon enough a new innovator will come along and we&#8217;ll all hear about the new site and reluctantly join before discovering it&#8217;s cooler than Facebook.</p>
<p>PS. The iPad is a mobile device, much like the automobile is a mobile vehicle. If it moves without wires it&#8217;s mobile. So please Mark, give us an iPad app. Thank you.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2010/11/facebook-is-killing-itself/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The death of Flash.</title>
		<link>http://www.thewebdevelopmentblog.com/2010/05/the-death-of-flash/</link>
		<comments>http://www.thewebdevelopmentblog.com/2010/05/the-death-of-flash/#comments</comments>
		<pubDate>Sun, 09 May 2010 12:19:38 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.thewebdevelopmentblog.com/?p=445</guid>
		<description><![CDATA[I&#8217;ve always been against Adobe Flash. It&#8217;s slow, CPU consuming, insecure, painful to work with and overly very user unfriendly. Finally my dislike for Flash is being met with by powerful companies who are all now rallying against Flash and pushing towards HTML 5. It all started with Steve Jobs writing a letter announcing why [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been against Adobe Flash. It&#8217;s slow, CPU consuming, insecure, painful to work with and overly very user unfriendly. Finally my dislike for Flash is being met with by powerful companies who are all now rallying against Flash and pushing towards HTML 5.</p>
<p><span id="more-445"></span></p>
<p>It all started with Steve Jobs writing <a href="http://www.apple.com/hotnews/thoughts-on-flash/">a letter</a> announcing why Flash will never be supported on the iPhone or iPad. It has been the talk of the industry and now more hands are rising in favour of ditching Flash and living with HTML 5. Following is Opera (the browser) and Microsoft both stating that they back HTML 5 in favour of Flash. (Microsoft clearly doesn&#8217;t realise it&#8217;s Silverlight is likely to die as well)</p>
<p>With Javascript being able to do most of Flash&#8217;s tricks natively it&#8217;s main purpose has been used for video and audio. Now HTML 5 can do both of these making Flash virtually pointless.</p>
<p>YouTube, Vimeo and Scribd are just a few of the sites that used to rely heavily on Flash that are taking advantage of HTML 5 features to rid themselves of Flash for a better user experience. I myself have been working of ridding Flash out of my sites, namely <a href="http://www.NexTunes.com.au" target="_blank">NexTunes.com.au</a>&#8216;s audio player will run using the audio tag in browsers which support it coming the next release of the site and it will also say goodbye to any Flash based ads.</p>
<p>Adobe are obviously concerned about this recent onslaught from competitors and will be interesting to see whether or not they try new techniques to keep Flash alive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2010/05/the-death-of-flash/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Manipulating Images in PHP: Easy GD functions to make editing images easier.</title>
		<link>http://www.thewebdevelopmentblog.com/2010/03/manipulating-images-in-php-easy-gd-functions-to-make-editing-images-easier/</link>
		<comments>http://www.thewebdevelopmentblog.com/2010/03/manipulating-images-in-php-easy-gd-functions-to-make-editing-images-easier/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 06:49:28 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[GD]]></category>

		<guid isPermaLink="false">http://www.thewebdevelopmentblog.com/?p=438</guid>
		<description><![CDATA[Having done quite a bit of delving into using GD to do tasks such as resize images, rotate images and crop images I&#8217;ve found it&#8217;s quite a long process to code something that should be rather simple. To make it easier I&#8217;ve created a set of functions to do these simple tasks, simply&#8230; Get The [...]]]></description>
			<content:encoded><![CDATA[<p>Having done quite a bit of delving into using GD to do tasks such as resize images, rotate images and crop images I&#8217;ve found it&#8217;s quite a long process to code something that should be rather simple. To make it easier I&#8217;ve created a set of functions to do these simple tasks, simply&#8230;<br />
<span id="more-438"></span></p>
<h2>Get The Functions</h2>
<p>Download the functions here: <a href="http://www.thewebdevelopmentblog.com/examples/gd-image/gd-image.zip">GD Functions V1.0</a></p>
<h2>Using The Functions</h2>
<p>There are currently 3 functions included that are quite flexible and they allow you to:</p>
<ul>
<li>Resize Images</li>
<li>Rotate Images</li>
<li>Crop Images</li>
</ul>
<p>This is a pretty standard set of functions but they are very easy to use, and they do all the heavy GD lifting for you.</p>
<p>In order to use the functions you must first include the <a href="http://www.thewebdevelopmentblog.com/examples/gd-image/gd-image.zip">GD Functions</a> into your page.</p>
<p>&nbsp;</p>
<p><code></p>
<pre><!--?php
require_once("gd-images.min.php");
?--></pre>
<p></code></p>
<p>&nbsp;</p>
<h3>resizeImage(file, width, height, [newFile, [forceResize, [quality]]]);</h3>
<p>Can resize an image in PHP.</p>
<p style="padding-left: 30px;"><strong>File: </strong>The address to the file you wish to resize. eg. <em>&#8220;../storage/my-image.jpg&#8221;</em></p>
<p style="padding-left: 30px;"><strong>Width: </strong>The max width (or new width) for the image to be resized to. eg. <em>125</em></p>
<p style="padding-left: 30px;"><strong>Height: </strong>The max height (or new height) for the image to be resized to. eg. <em>125</em></p>
<p style="padding-left: 30px;"><strong>NewFile: </strong>(optional, default:<em>file</em>) If set, it will create a new file at this address instead of replacing the old image file.eg. <em>&#8220;../storage/my-new-image.jpg&#8221;</em></p>
<p style="padding-left: 30px;"><strong>ForceResize: </strong>(optional, default:<em>false</em>) If set to true will force the image to resize (in ratio) to the new height. eg. <em>true</em></p>
<p style="padding-left: 30px;"><strong>Quality: </strong>(optional, default:<em>90</em>) The quality of the image being exported. Integer between 0-100, 100 being the best quality. eg. <em>80</em></p>
<p>&nbsp;</p>
<p><code></p>
<pre><!--?php
require_once("gd-images.min.php");
// Resize Example
resizeImage("../storage/my-image.jpg", 125, 125, "../storage/my-new-image.jpg", true, 75);
?--></pre>
<p></code></p>
<p>&nbsp;</p>
<h3>rotateImage(file, Angle, [newFile]);</h3>
<p>Can rotate an image to any angle in PHP.</p>
<p style="padding-left: 30px;"><strong>File:</strong> The address to the file you wish to rotate. eg. <em>&#8220;../storage/my-image.jpg&#8221;</em></p>
<p style="padding-left: 30px;"><strong>Angle: </strong>The angle you would like to rotate the image to. Integer between 0-360. eg. <em>90</em></p>
<p style="padding-left: 30px;"><strong>NewFile: </strong>(optional, default:<em>file</em>) If set, it will create a new file at this address instead of replacing the old image file.eg. <em>&#8220;../storage/my-new-image.jpg&#8221;</em></p>
<p>&nbsp;</p>
<p><code></p>
<pre><!--?php
require_once("gd-images.min.php");
// Rotate Example
rotateImage("../storage/my-image.jpg", 180, "../storage/my-new-image.jpg");
?--></pre>
<p></code></p>
<p>&nbsp;</p>
<h3>cropImage(file, X1, Y1, X2, Y2, [width, [height, [newFile]]]);</h3>
<p>Can crop a portion of an image, then resize that portion to a specified width/height in PHP.</p>
<p style="padding-left: 30px;"><strong>File:</strong> The address to the file you wish to crop. eg. <em>&#8220;../storage/my-image.jpg&#8221;</em></p>
<p style="padding-left: 30px;"><strong>X1: </strong>The X co-ordinate for the top left corner of the position you wish to cut. Integer. eg. <em>10</em></p>
<p style="padding-left: 30px;"><strong>Y1: </strong>The Y co-ordinate for the top left corner of the position you wish to cut. Integer. eg.<em> <em>10</em></em></p>
<p style="padding-left: 30px;"><strong>X2: </strong>The X co-ordinate for the bottom right corner of the position you wish to cut. Integer. eg. <em>100</em></p>
<p style="padding-left: 30px;"><strong>Y2: </strong>The Y co-ordinate for the bottom right corner of the position you wish to cut. Integer. eg. <em>100</em></p>
<p style="padding-left: 30px;"><strong>Width: </strong>(optional, default:<em>cropWidth</em>) The width you&#8217;d like the cropped image to be. If not set it will default to the width of the area being cropped. Integer. eg. <em>50</em></p>
<p style="padding-left: 30px;"><strong>Height: </strong>(optional, default:<em>cropHeight</em>) The height you&#8217;d like the cropped image to be. If not set it will default to the height of the area being cropped. Integer. eg. <em>50</em></p>
<p style="padding-left: 30px;"><strong>NewFile: </strong>(optional, default:<em>file</em>) If set, it will create a new file at this address instead of replacing the old image file.eg. <em>&#8220;../storage/my-new-image.jpg&#8221;</em></p>
<p>&nbsp;</p>
<p><code></p>
<pre><!--?php
require_once("gd-images.min.php");
// Crop Example
rotateImage("../storage/my-image.jpg", 10, 10, 100, 100, 50, 50, "../storage/my-new-image.jpg");
?--></pre>
<p></code></p>
<p>&nbsp;</p>
<blockquote><p><em><span style="font-style: normal;"><strong>Notes</strong></span></em></p>
<ul>
<li>Requires the PHP GD extension installed to work (comes with most hosting set-ups)</li>
<li>Supports JPEG, PNG &amp; GIF files.</li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2010/03/manipulating-images-in-php-easy-gd-functions-to-make-editing-images-easier/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>YouTube supports HTML 5 to rid Flash</title>
		<link>http://www.thewebdevelopmentblog.com/2010/01/youtube-supports-html-5-to-rid-flash/</link>
		<comments>http://www.thewebdevelopmentblog.com/2010/01/youtube-supports-html-5-to-rid-flash/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 23:41:12 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://thewebdevelopmentblog.com/?p=425</guid>
		<description><![CDATA[YouTube has just launched an opt-in beta to support a HTML 5 instead of the flash player that we&#8217;re used to. If you&#8217;re like me you try to avoid using Flash where-ever possible, and HTML 5&#8242;s video support is a step closer to a Flash-free web. The beta currently supports the following browsers: Google Chrome [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com" target="_blank">YouTube</a> has just launched an opt-in beta to support a HTML 5 instead of the flash player that we&#8217;re used to. If you&#8217;re like me you try to avoid using Flash where-ever possible, and HTML 5&#8242;s video support is a step closer to a Flash-free web.</p>
<p><span id="more-425"></span></p>
<p>The beta currently supports the following browsers:</p>
<ul>
<li>Google Chrome</li>
<li>Safari (4+)</li>
<li>Internet Explorer with Chrome Frame installed</li>
</ul>
<p>If you&#8217;re using one of these browsers, jump on to the YouTube HTML 5 beta page to opt-in and start trying out the Flash-free video player.</p>
<p><a href="http://www.youtube.com/html5" target="_blank">http://www.youtube.com/html5</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2010/01/youtube-supports-html-5-to-rid-flash/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>jQuery 1.4 hits the web.</title>
		<link>http://www.thewebdevelopmentblog.com/2010/01/jquery-1-4-hits-the-web/</link>
		<comments>http://www.thewebdevelopmentblog.com/2010/01/jquery-1-4-hits-the-web/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 05:09:02 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://thewebdevelopmentblog.com/?p=419</guid>
		<description><![CDATA[In case you haven&#8217;t run around the web recently you may or may not have noticed jQuery 1.4 has just hit the web. The new release has a large list of improvements on features, speed increases as well as is highly backwards compatible which means most people can upgrade without any real hassles. Instead of [...]]]></description>
			<content:encoded><![CDATA[<p>In case you haven&#8217;t run around the web recently you may or may not have noticed jQuery 1.4 has just hit the web. The new release has a large list of improvements on features, speed increases as well as is highly backwards compatible which means most people can upgrade without any real hassles.</p>
<p><span id="more-419"></span></p>
<p>Instead of re-writing all the new features and speed improvements jump on the official release site for more details:</p>
<p><a href="http://jquery14.com/day-01/jquery-14" target="_blank">http://jquery14.com/day-01/jquery-14</a></p>
<p>Be sure to read the backwards incompatibilities at the bottom just to make sure nothing will break when you upgrade.</p>
<p>I&#8217;ll post a review once I&#8217;ve had a chance to put it through it&#8217;s paces properly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2010/01/jquery-1-4-hits-the-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A new way to keep up to date with web design + development news.</title>
		<link>http://www.thewebdevelopmentblog.com/2009/11/a-new-way-to-keep-up-to-date-with-web-design-development-news/</link>
		<comments>http://www.thewebdevelopmentblog.com/2009/11/a-new-way-to-keep-up-to-date-with-web-design-development-news/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 02:32:51 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://thewebdevelopmentblog.com/?p=414</guid>
		<description><![CDATA[Like most people, you probably have many blogs you check out frequently. A new site (Web Resauce) aggregates around 100 web design + development blogs (including this one) into one location so you can scan just 1 site for articles that interest you. Web Resauce allows you  to either view the article on the bloggers [...]]]></description>
			<content:encoded><![CDATA[<p>Like most people, you probably have many blogs you check out frequently. A new site (<a href="http://www.webresauce.com" target="_blank">Web Resauce</a>) aggregates around 100 web design + development blogs (including this one) into one location so you can scan just 1 site for articles that interest you. <a href="http://http://www.webresauce.com" target="_blank">Web Resauce</a> allows you  to either view the article on the bloggers site or view it on <a href="http://www.webresauce.com" target="_blank">Web Resauce</a> with it&#8217;s readability focused design.</p>
<p><span id="more-414"></span></p>
<p>If there are articles that you really like you can tell the world by clicking the &#8220;like&#8221; button much like Facebook, or you can share the article on Twitter or Facebook, with the click of a button. Many new features are planned and should be rolled out in the coming months. If you have any ideas on how to improve <a href="http://www.webresauce.com" target="_blank">Web Resauce</a> then please feel free to let me know by commenting this post.</p>
<p>But definitely check out <a href="http://www.webresauce.com" target="_blank">Web Resauce</a> and let me know your thoughts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2009/11/a-new-way-to-keep-up-to-date-with-web-design-development-news/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to make a div stretch to 100% of the window height &amp; fixing the background color or image not covering the entire window</title>
		<link>http://www.thewebdevelopmentblog.com/2009/11/how-to-make-a-div-stretch-to-100-of-the-window-height-fixing-the-background-color-or-image-not-covering-the-entire-window/</link>
		<comments>http://www.thewebdevelopmentblog.com/2009/11/how-to-make-a-div-stretch-to-100-of-the-window-height-fixing-the-background-color-or-image-not-covering-the-entire-window/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 10:30:42 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://thewebdevelopmentblog.com/?p=402</guid>
		<description><![CDATA[I know, it&#8217;s massively long title, but I thought I&#8217;d fix too issues with 1 post as they both have the identical solution. The main one is when creating some sites recently they were fairly short designs and bizarrely the CSS background color didn&#8217;t fill the window. This was puzzling, but I did find a solution. The [...]]]></description>
			<content:encoded><![CDATA[<p>I know, it&#8217;s massively long title, but I thought I&#8217;d fix too issues with 1 post as they both have the identical solution. The main one is when creating some sites recently they were fairly short designs and bizarrely the CSS background color didn&#8217;t fill the window. This was puzzling, but I did find a solution. The other issue is when you&#8217;re trying to make a div to stretch to fill a window, it doesn&#8217;t like to do it, the solution for this is the same as the other issue.</p>
<p><span id="more-402"></span></p>
<h1>The Problems</h1>
<p><strong>a) </strong>Your background won&#8217;t fill the screen even though you&#8217;ve set the color in the body via CSS as per below:</p>
<div id="attachment_404" class="wp-caption alignnone" style="width: 310px"><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/11/Screen-shot-2009-10-31-at-6.26.49-PM.png"><img class="size-medium wp-image-404" title="Screen shot 2009-10-31 at 6.26.49 PM" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/11/Screen-shot-2009-10-31-at-6.26.49-PM-300x191.png" alt="Background doesn't fill the screen" width="300" height="191" style="border:1px solid #000;<br />
"/></a><p class="wp-caption-text">Background doesn&#39;t fill the screen</p></div>
<p><strong>b)</strong> Can&#8217;t get a div or other element to stretch 100% of the browser window.</p>
<h1>The Solution</h1>
<p>It&#8217;s quite simple, in your CSS put <em>height: 100%;</em> in <strong>both</strong> the html and body as follows:</p>
<p><code></p>
<pre>html {
  height: 100%;
}

body {
  height: 100%;
  ........
}</pre>
<p></code></p>
<h1>Why does it occur?</h1>
<p>The reasons these problems occur is because most browsers don&#8217;t automatically render the page/body to 100% of the browser windows height.  This in turn means that when the background is rendered on the body or the height is set to 100% it will only fill 100% of whatever the body is. This is why setting the html and body&#8217;s height to 100% will fix the issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2009/11/how-to-make-a-div-stretch-to-100-of-the-window-height-fixing-the-background-color-or-image-not-covering-the-entire-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

