<?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>lawebdesign.com.au</title>
	<atom:link href="http://lawebdesign.com.au/feed/" rel="self" type="application/rss+xml" />
	<link>http://lawebdesign.com.au</link>
	<description></description>
	<lastBuildDate>Tue, 07 May 2013 22:11:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.2.19</generator>
	<item>
		<title>Simple smooth scrolling with jQuery</title>
		<link>http://lawebdesign.com.au/simple-smooth-scrolling-with-jquery/</link>
		<comments>http://lawebdesign.com.au/simple-smooth-scrolling-with-jquery/#comments</comments>
		<pubDate>Thu, 21 Feb 2013 03:41:27 +0000</pubDate>
		<dc:creator><![CDATA[luke]]></dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://lawebdesign.com.au/?p=538</guid>
		<description><![CDATA[<p>Just a quick tip, simple smooth scrolling with jQuery. All you need to do is add the class of smooth-scroll to your links, set the link href to the target id, eg. #about and then just add the id to&#8230;</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/simple-smooth-scrolling-with-jquery/">Simple smooth scrolling with jQuery</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Just a quick tip, simple smooth scrolling with jQuery. All you need to do is add the class of smooth-scroll to your links, set the link href to the target id, eg. #about and then just add the id to the target container, eg. id=&#8221;about&#8221;</p>
<pre class="language-js">    // Add smooth-scroll class to your links
    $('.smooth-scroll').on('click', function(e) {
        e.preventDefault();

        // Get href of link
        var scrollTarget = $(this).attr('href');

        // Get target position from top of the page
        var targetPosition = $(scrollTarget).offset().top;

        $('html,body').animate({scrollTop: targetPosition}, 800);

    });</pre>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/simple-smooth-scrolling-with-jquery/">Simple smooth scrolling with jQuery</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lawebdesign.com.au/simple-smooth-scrolling-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Full screen div with jquery</title>
		<link>http://lawebdesign.com.au/full-height-div-with-jquery/</link>
		<comments>http://lawebdesign.com.au/full-height-div-with-jquery/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 00:10:47 +0000</pubDate>
		<dc:creator><![CDATA[luke]]></dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://lawebdesign.com.au/?p=527</guid>
		<description><![CDATA[<p>This is just a simple script to set the height of a container to the height of the browser window, I have also updated the script so it will work when the browser is re-sized. This script is intended to be used on an&#8230;</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/full-height-div-with-jquery/">Full screen div with jquery</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>This is just a simple script to set the height of a container to the height of the browser window, I have also updated the script so it will work when the browser is re-sized. This script is intended to be used on an inner container, if you are looking to make the background full-screen just use CSS3 background-size:cover</p>
<h3>Javascript</h3>
<pre class="language-js">// Set container min-height function
function resizeWindow(e) {
    // Get window height
    var windowHeight = $(window).height();
    // Check if window height is larger than your required minimum height
    if(windowHeight &gt;= 760) {
        // Set selector min-height to the window height
        $('.full-height').css('minHeight', windowHeight);
    }
}

// Set height on load
resizeWindow();

// Update height on window resize
$(window).bind('resize', resizeWindow);</pre>
<p>&nbsp;</p>
<h3>CSS</h3>
<p>Combine this script with some fancy CSS3 and you can create a full screen background</p>
<pre class="language-css">
.full-height { 
    width:100%;
    background-image: url('../images/my-image.jpg');
    background-size: cover;
}
</pre>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/full-height-div-with-jquery/">Full screen div with jquery</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lawebdesign.com.au/full-height-div-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fancybox 1.3.4 Redux</title>
		<link>http://lawebdesign.com.au/fancybox-1-3-4-redux/</link>
		<comments>http://lawebdesign.com.au/fancybox-1-3-4-redux/#comments</comments>
		<pubDate>Thu, 30 Aug 2012 05:46:47 +0000</pubDate>
		<dc:creator><![CDATA[luke]]></dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://lawebdesign.com.au/?p=506</guid>
		<description><![CDATA[<p>So Fancybox has got to be one of the most popular jQuery lightbox scripts and its not hard to see why, its easy to customise, takes nearly any form of content you can throw at it, its resizes automatically and it looks&#8230;</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/fancybox-1-3-4-redux/">Fancybox 1.3.4 Redux</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>So <a href="http://fancybox.net/" target="_blank">Fancybox</a> has got to be one of the most popular jQuery lightbox scripts and its not hard to see why, its easy to customise, takes nearly any form of content you can throw at it, its resizes automatically and it looks good.</p>
<p>One of the main problems I had was every time I needed to use <a href="http://fancybox.net/" target="_blank">Fancybox</a> I was constantly getting rid of CSS so I could style the lightbox easier and deleting un-used images, so I decided to modify the code and have a clean slate to start from each time.</p>
<p><a href="http://lawebdesign.com.au/wp-content/uploads/2012/08/fancybox-generated-code.jpg"><img class="alignnone size-full wp-image-511" title="fancybox-generated-code" src="http://lawebdesign.com.au/wp-content/uploads/2012/08/fancybox-generated-code.jpg" alt="fancybox-generated-code" /></a></p>
<p>The original Fancybox supports IE6 and up with full CSS support, this adds extra CSS with the filters and IE specific fixes but also has multiple div&#8217;s added to make the box-shadow outside the lightbox. What I have done is delete all the IE specific CSS, clean the script to not append the unused div&#8217;s, add the iframe bug fix and best of all make use of CSS3 (box-shadow and border-radius).</p>
<p>Feel free to download the modified package and be sure to checkout <a href="http://fancybox.net/">http://fancybox.net/</a> for set-up and options.</p>
<p><a class="button" href="http://lawebdesign.com.au/labs/fancybox-redux/">Demo</a> <a class="button" href="https://github.com/lawebdesignau/Fancybox-Redux/archive/master.zip">Download</a></p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/fancybox-1-3-4-redux/">Fancybox 1.3.4 Redux</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lawebdesign.com.au/fancybox-1-3-4-redux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parallax Scrolling with HTML5 and jQuery</title>
		<link>http://lawebdesign.com.au/parallax-scrolling-with-html5-and-jquery/</link>
		<comments>http://lawebdesign.com.au/parallax-scrolling-with-html5-and-jquery/#comments</comments>
		<pubDate>Thu, 28 Jun 2012 06:07:22 +0000</pubDate>
		<dc:creator><![CDATA[luke]]></dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://lawebdesign.com.au/?p=477</guid>
		<description><![CDATA[<p>Its not a new feature that was created yesterday but when its done right parallax websites can be an amazing experience. Parallax scrolling creates an animated depth of field to give the experience of 3D movement with 2D objects. Some of the standouts are:&#8230;</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/parallax-scrolling-with-html5-and-jquery/">Parallax Scrolling with HTML5 and jQuery</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Its not a new feature that was created yesterday but when its done right parallax websites can be an amazing experience. Parallax scrolling creates an animated depth of field to give the experience of 3D movement with 2D objects.</p>
<p>Some of the standouts are:</p>
<h5>Air Jordan 2012</h5>
<p><a href="http://www.nike.com/jumpman23/aj2012/" target="_blank"><img class="alignnone size-full wp-image-485" title="air-jordan-2012" src="http://lawebdesign.com.au/wp-content/uploads/2012/07/air-jordan-2012.jpg" alt="air-jordan-2012" width="680" height="240" /></a><br />
<a href="http://www.nike.com/jumpman23/aj2012/" target="_blank">http://www.nike.com/jumpman23/aj2012/</a></p>
<h5>Bagigia</h5>
<p><a href="http://www.bagigia.com/" target="_blank"><img class="alignnone size-full wp-image-482" title="bagigia" src="http://lawebdesign.com.au/wp-content/uploads/2012/07/bagigia.jpg" alt="bagigia" width="680" height="240" /></a><br />
<a href="http://www.bagigia.com/" target="_blank">http://www.bagigia.com/</a></p>
<h5>Mountain Dew</h5>
<p><a href="http://mountaindew.com/" target="_blank"><img class="alignnone size-full wp-image-486" title="dew-parallax-2" src="http://lawebdesign.com.au/wp-content/uploads/2012/07/dew-parallax-2.jpg" alt="Mountain Dew screenshot" width="680" height="240" /></a><br />
<a href="http://mountaindew.com/" target="_blank">http://mountaindew.com/</a></p>
<p>&nbsp;</p>
<h3>How to</h3>
<p>So you want to create your own parallax site, well save yourself some time and use Skroller.</p>
<blockquote><p>skrollr allows you to animate any CSS property of any element depending on the horizontal scrollbar position. All you need to do is define key frames for each element at certain points in top offset.</p></blockquote>
<p><a href="http://prinzhorn.github.com/skrollr/" target="_blank"><img class="alignnone size-full wp-image-488" title="skrollr" src="http://lawebdesign.com.au/wp-content/uploads/2012/07/skrollr.jpg" alt="skrollr" width="680" height="240" /></a></p>
<p>Demo: <a href="http://prinzhorn.github.com/skrollr/">http://prinzhorn.github.com/skrollr/</a><br />
Download: <a href="https://github.com/Prinzhorn/skrollr">https://github.com/Prinzhorn/skrollr</a></p>
<h4>I want to lean it manually</h4>
<p>Ok so you want the ins and outs, well Jonathan Nicol over at <a href="http://f6design.com/journal/" target="_blank">Pixel Acres</a> has already created an excellent article covering how to create a simple parallax site from scratch. Check it out here: <a href="http://f6design.com/journal/2011/08/06/build-a-parallax-scrolling-website-interface-with-jquery-and-css/" target="_blank">http://f6design.com/journal/2011/08/06/build-a-parallax-scrolling-website-interface-with-jquery-and-css/</a></p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/parallax-scrolling-with-html5-and-jquery/">Parallax Scrolling with HTML5 and jQuery</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lawebdesign.com.au/parallax-scrolling-with-html5-and-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Want to learn SASS, LESS or CoffeeScript</title>
		<link>http://lawebdesign.com.au/want-to-learn-sass-less-or-coffeescript/</link>
		<comments>http://lawebdesign.com.au/want-to-learn-sass-less-or-coffeescript/#comments</comments>
		<pubDate>Wed, 16 May 2012 02:09:51 +0000</pubDate>
		<dc:creator><![CDATA[luke]]></dc:creator>
				<category><![CDATA[Apps]]></category>

		<guid isPermaLink="false">http://lawebdesign.com.au/?p=450</guid>
		<description><![CDATA[<p>With all the buzz surrounding pre processors lately its easy to be scared off from integrating them into your workflow but you don&#8217;t have to be, enter CodeKit CodeKit is a Mac only application that is simple to use, you wont need to look at the command line,&#8230;</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/want-to-learn-sass-less-or-coffeescript/">Want to learn SASS, LESS or CoffeeScript</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>With all the buzz surrounding pre processors lately its easy to be scared off from integrating them into your workflow but you don&#8217;t have to be, enter <a href="http://incident57.com/codekit/" target="_blank">CodeKit</a></p>
<p><a href="http://incident57.com/codekit/" target="_blank">CodeKit</a> is a Mac only application that is simple to use, you wont need to look at the command line, it automatically refreshes Safari and Chrome, includes image optimisation and file compression, and offers support for Sass, Less, Stylus, Haml and CoffeeScript.</p>
<p>Best of all its only $20, with the amount of time this saves you will make that back in the first 30 minutes of using it.</p>
<p>Combining <a href="http://incident57.com/codekit/" target="_blank">CodeKit</a> with <a href="http://www.sublimetext.com/2" target="_blank">Sublime Text 2</a> is a match made in heaven and I have already watched my production increase since switching to the tools.</p>
<p>Chris Coyer over at CSS Tricks has posted a really good screen cast to help you get started and its really worth a look</p>
<p><a href="http://css-tricks.com/video-screencasts/111-get-yourself-preprocessing-in-just-a-few-minutes/" target="_blank">Get Yourself Preprocessing in Just a Few Minutes</a></p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/want-to-learn-sass-less-or-coffeescript/">Want to learn SASS, LESS or CoffeeScript</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lawebdesign.com.au/want-to-learn-sass-less-or-coffeescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backstretch &#8211; background-size cover in IE</title>
		<link>http://lawebdesign.com.au/background-size-cover-in-ie/</link>
		<comments>http://lawebdesign.com.au/background-size-cover-in-ie/#comments</comments>
		<pubDate>Tue, 01 May 2012 07:29:25 +0000</pubDate>
		<dc:creator><![CDATA[luke]]></dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://lawebdesign.com.au/?p=422</guid>
		<description><![CDATA[<p>Background-size:cover is a really nice feature introduced in CSS3 that gives you the ability to let CSS resize the image for you rather than using a script like supersized. This feature is supported in all modern browsers and even IE9&#8230;</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/background-size-cover-in-ie/">Backstretch &#8211; background-size cover in IE</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Background-size:cover is a really nice feature introduced in CSS3 that gives you the ability to let CSS resize the image for you rather than using a script like <a href="http://buildinternet.com/2009/02/supersized-full-screen-backgroundslideshow-jquery-plugin/" target="_blank">supersized</a>. This feature is supported in all modern browsers and even IE9 but you will need a script to make it work in IE8 and below.</p>
<p>Backstretch is a simple jQuery plugin that allows you to add a dynamically-resized background image to any page. Use this plugin with <a href="http://modernizr.com/" target="_blank">Modernizer</a> and you will have full browser support for CSS3 background-size: cover;</p>
<p>Simple usage:<br />
First create a div with the class &#8216;stretch&#8217; and add a data attribute so we can get the image URL easier.</p>
<pre class="language-HTML">&lt;div class="stretch" data-img-url="test.jpg"&gt;
    Lorem ipsum
&lt;/div&gt;</pre>
<p>&nbsp;<br />
Now add the basic CSS to stretch the background image. Only supported in IE9 and up</p>
<pre class="language-css">.stretch { 
    background-image:url(test.jpg); 
    background-size:cover;
}</pre>
<p>&nbsp;<br />
Now use backstretch to offer a fall-back for IE8 and under. Here we use Modernizer to check if &#8216;borderradius&#8217; is supported and if not we activate backstretch. Make sure you have modernizer runnuing and are performing the check for border radius. You can actually check for background-size support with modernizer but I find it easier to just use the border-radius.</p>
<pre class="language-js">$(function(){
    if(!Modernizr.borderradius) {
        $('.stretch').each(function() {
            bgImgUrl = $(this).data('img-url');
            $(this).backstretch(bgImgUrl, {fade: 'fast'});
        });
    }
});</pre>
<p>&nbsp;</p>
<p><a class="button" href="http://srobbin.com/jquery-plugins/backstretch/" target="_blank">jquery backstretch</a></p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/background-size-cover-in-ie/">Backstretch &#8211; background-size cover in IE</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lawebdesign.com.au/background-size-cover-in-ie/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ultimate jQuery Sliders</title>
		<link>http://lawebdesign.com.au/ultimate-jquery-slider/</link>
		<comments>http://lawebdesign.com.au/ultimate-jquery-slider/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 11:25:59 +0000</pubDate>
		<dc:creator><![CDATA[luke]]></dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[carousel]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://lawebdesign.com.au/?p=133</guid>
		<description><![CDATA[<p>This post started a long time ago when Nivo slider was top dog but now there is so many other sliders around I thought I should share some of my favourites. Awkward Showcase Awkward Showcase is a great jquery slider,&#8230;</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/ultimate-jquery-slider/">Ultimate jQuery Sliders</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>This post started a long time ago when Nivo slider was top dog but now there is so many other sliders around I thought I should share some of my favourites.</p>
<p><a href="http://lawebdesign.com.au/wp-content/uploads/2010/10/awkwardshowcase.jpg"><img class="alignnone size-full wp-image-438" title="awkwardshowcase" src="http://lawebdesign.com.au/wp-content/uploads/2010/10/awkwardshowcase.jpg" alt="Awkward Showcase" /></a></p>
<h3>Awkward Showcase</h3>
<p>Awkward Showcase is a great jquery slider, it offers the ability to slide any content, image, HTML and videos. It has thumbnail support, five layout modes, tooltips and heaps more.</p>
<p>Download: <a href="http://www.awkwardgroup.com/sandbox/awkward-showcase-a-jquery-plugin/">Awkward Showcase</a></p>
<p>&nbsp;</p>
<p><a href="http://lawebdesign.com.au/wp-content/uploads/2010/10/flexslider.jpg"><img class="alignnone size-full wp-image-442" title="flexslider" src="http://lawebdesign.com.au/wp-content/uploads/2010/10/flexslider.jpg" alt="flex slider" /></a></p>
<h3>Flex Slider</h3>
<p>Flex Slider is a responsive slider with swipe control, its easy to use and modify and is best for image based slides. If you are creating a responsive site this should be your go to slider.</p>
<p>Download: <a href="http://www.woothemes.com/flexslider/">Flex Slider</a></p>
<p>&nbsp;</p>
<p><a href="http://lawebdesign.com.au/wp-content/uploads/2010/10/nivoslider.jpg"><img class="alignnone size-full wp-image-443" title="nivoslider" src="http://lawebdesign.com.au/wp-content/uploads/2010/10/nivoslider.jpg" alt="Nivo Slider" /></a></p>
<h3>Nivo Slider</h3>
<p><em>The world&#8217;s most awesome jQuery slider</em><br />
The Nivo Slider is really easy to use, it has heaps of transitions, you can customise the caption styles and is best for using for image based sliders. Not recomended if you want to use HTML content in your slides.</p>
<p>Download: <a title="Nivo Slider" href="http://nivo.dev7studios.com/">Nivo Slider</a></p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/ultimate-jquery-slider/">Ultimate jQuery Sliders</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lawebdesign.com.au/ultimate-jquery-slider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Base HTML email template</title>
		<link>http://lawebdesign.com.au/base-html-email-template/</link>
		<comments>http://lawebdesign.com.au/base-html-email-template/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 12:01:37 +0000</pubDate>
		<dc:creator><![CDATA[luke]]></dc:creator>
				<category><![CDATA[Email Designs]]></category>

		<guid isPermaLink="false">http://lawebdesign.com.au/?p=249</guid>
		<description><![CDATA[<p>I thought I should share my base HTML email template I use to create all my EDM&#8217;s. The template is not a ready to go solution it is more of a base to build your template from. As with all&#8230;</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/base-html-email-template/">Base HTML email template</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>I thought I should share my base HTML email template I use to create all my EDM&#8217;s.</p>
<p>The template is not a ready to go solution it is more of a base to build your template from. As with all email templates if you want the best compatibilty they have to be built using tables (thanks Outlook), the template includes basic wrapper and container tables and a little helpful style tag to fix some hotmail bugs.</p>
<p>With such a wide varity of email marketing platforms I have decided to place my style tag inside the body element as its more compatible.Included in the style tag is a fix to allign HTML emails centered in hotmail and also a fix to define the line-height in hotmail by setting a global font-size.</p>
<p>Feel free to use this in any of your projects and any suggestion you have.</p>
<p><a class="button" href="http://lawebdesign.com.au/downloads/Base_EDM_Files.zip">Base HTML email template</a></p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/base-html-email-template/">Base HTML email template</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lawebdesign.com.au/base-html-email-template/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Use CSS3 now in IE</title>
		<link>http://lawebdesign.com.au/use-css3-now-works-in-ie/</link>
		<comments>http://lawebdesign.com.au/use-css3-now-works-in-ie/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 12:02:15 +0000</pubDate>
		<dc:creator><![CDATA[luke]]></dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[ie8]]></category>
		<category><![CDATA[pie]]></category>

		<guid isPermaLink="false">http://lawebdesign.com.au/?p=218</guid>
		<description><![CDATA[<p>To quote the PIE website &#8220;PIE makes Internet Explorer 6-8 capable of rendering several of the most useful CSS3 decoration features&#8221; PIE is a htc script file that you place on your server with your website that makes IE render&#8230;</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/use-css3-now-works-in-ie/">Use CSS3 now in IE</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>To quote the PIE website &#8220;<strong>PIE</strong> makes Internet Explorer 6-8 capable of rendering several of the most useful <strong>CSS3</strong> decoration features&#8221;</p>
<p>PIE is a htc script file that you place on your server with your website that makes IE render rounded corners, box-shadow and even CSS3 gradients.</p>
<p>PIE stands for Progressive Internet Explorer. It is an IE attached behavior which, when applied to an element, allows IE to recognize and display a number of CSS3 properties. Using PIE is easy, you simply add this after your CSS3 declorations.<span id="more-218"></span></p>
<p><code>background: #EEE;<br />
padding: 2em;<br />
-moz-border-radius: 1em;<br />
-webkit-border-radius: 1em;<br />
border-radius: 1em;<br />
</code></p>
<p>This results in a box with nicely rounded corners in any of today&#8217;s modern browsers, except of course for IE 6, 7, or 8, which all display a square box. However, add the following single rule to that CSS:</p>
<p><code>#myElement {<br />
...<br />
behavior: url(PIE.htc);<br />
}<br />
</code></p>
<p>Now the exact same rounded corners appear in IE! That&#8217;s all there is to it. No, really, I mean it.</p>
<p>PIE currently has full or partial support for the following CSS3 features:</p>
<ul>
<li>border-radius</li>
<li>box-shadow</li>
<li>border-image</li>
<li>multiple background images</li>
<li>linear-gradient as background image</li>
</ul>
<p>Other features are under active development.</p>
<p><strong>Want to learn more?</strong> View some live <a href="http://css3pie.com/demos">demos</a>, read the <a href="http://css3pie.com/documentation/">documentation</a>, and <a href="http://css3pie.com/download-latest">download PIE</a> to try it yourself. Be sure to read the <a href="http://css3pie.com/documentation/known-issues/">Known Issues</a> page for common problems and their solutions.</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/use-css3-now-works-in-ie/">Use CSS3 now in IE</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lawebdesign.com.au/use-css3-now-works-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Email useful tips</title>
		<link>http://lawebdesign.com.au/html-email-useful-tips/</link>
		<comments>http://lawebdesign.com.au/html-email-useful-tips/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 08:35:58 +0000</pubDate>
		<dc:creator><![CDATA[luke]]></dc:creator>
				<category><![CDATA[Email Designs]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[email design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[marketing]]></category>

		<guid isPermaLink="false">http://lawebdesign.com.au/?p=93</guid>
		<description><![CDATA[<p>Until recently text-based email was the most popular way to communicate, however with the advent of HTML email you can now create and send beautiful graphics, create clickable links and use interactive forms. HTML email can have the same appearance&#8230;</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/html-email-useful-tips/">HTML Email useful tips</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Until   recently text-based email was the most popular way to communicate,   however with the advent of HTML email you can now create and send   beautiful graphics, create clickable links and use interactive forms. HTML email can have the same appearance as a web page. You can   include your favorite photos, create colorful newsletters or charts for   your friends or business associates. It’s now often used as a valuable tool in email marketing campaigns. HTML email has now surpassed text-based email in popularity.</p>
<p>Let’s first point out the pros and cons of sending HTML email before we get into how to create it.<br />
<span id="more-93"></span></p>
<h3>Pros Of Using HTML Email</h3>
<ul>
<li>Visually appealing</li>
<li>Able to include graphics, icons, clickable links, different fonts, interactive forms.</li>
<li>Increased interactivity with your customers.</li>
<li>Mostly used by advertisers, however more consumers are using HTML email as they switch to faster connections.</li>
<li> Ads can be more effective in HTML.</li>
<li>Most of the popular email clients now support HTML email (i.e.   Outlook Express, Outlook, Eudora, Netscape Communicator, Hotmail,   Rocketmail, AOL, Yahoo, Web TV).</li>
</ul>
<h3>Cons Of Using HTML Email</h3>
<ul>
<li>Slow loading due to downloading of graphics.</li>
<li>Takes up more space in your email client.</li>
<li>Not all computers support HTML email.</li>
<li>Users may not have the required bandwidth or may have download quotas set by their ISPs.</li>
<li>Hackers can send viruses, trojan horses embedded in HTML email.</li>
<li>Users may turn off the option to receive HTML email, or use filters to quarantine it.</li>
</ul>
<h3><strong>How To Create A Simple HTML Email</strong></h3>
<ol>
<li>Create a new directory on your web site i.e.   http://www.ihost-websites.com/htmlmail where /htmlmail is the new   directory for all your HTML email files. Your files should include all   the graphics and HTML pages you want to use.</li>
<li>Open your favorite HTML editor i.e. FrontPage, Dreamweaver to create   your new HTML email (you can also use MS Word 97 or 2000 but it tends   to bloat the code a little).</li>
<li>Create a new HTML email page, name it (i.e. newsletter.htm) and save   the page in the new directory you created above:(i.e.   http://www.ihost-websites.com/htmlmail/newsletter.htm)</li>
<li>Keep your design simple – your audience will be viewing the HTML   email document in their Email application, not a Web browser. You have   no control over how large or small a window the person will use to view   your document.</li>
</ol>
<p><strong>Don’t use javascript, flash, style sheets, framesets   rollovers or nested tables. Your beautifully created HTML email page,   may not  render well for your recipients.</strong></p>
<p>Limit your use of graphics so your viewers will not have to wait long to download your document in their email.</p>
<p>Create and store your graphics (i.e. images, icons, fancy fonts) on a web server to correctly appear in your recipient’s email</p>
<ul>
<li>you could save it as an attachment, however most folks will not open   the attachment (and delete it) especially if it’s from someone they   don’t know.</li>
<li>If you don’t want to use graphics, you could use colored tables for   different sections (i.e. header, masthead, contact information and   footers).</li>
<li> This will enable you to create HTML email without using a web   server. Keep in mind your HTML email won’t be as attractive as the one   which includes eye-catching images.</li>
<li>Always use absolute URLS for your graphics and links. Your readers   are all going to be at different locations, so you need to use absolute   paths in an HTML email to ensure that the images display and the links   work.</li>
<li>(i.e. http://www.ihost-websites.com/images/header.gif).It’s best to first complete the design of your images using relative   URLs, then when you are finished, change the relative URLs for the   images into absolute URLs.</li>
<li>Upload the HTML email folder (which includes your images and HTML pages) to your web server.Now you are ready to send your HTML email document.</li>
<li> Open your Email Software – in outlook express (since it’s   the most popular) go to create mail – insert – text from file – scroll   to your saved HTML document.</li>
<li>Email a test to yourself before you send it to your subscriber list.   You may want to send it to your friends who have different email   programs so you can be sure most of your subscribers can read it on   their computers.</li>
</ul>
<p>Once you have created an attractive HTML page or newsletter, save it   as a template. Now you can just open the template whenever you want to   send HTML email and most of the work will be done for you.</p>
<p>HTML email is still … a great marketing tool  if used properly. The key   is to test, test, test to see if your subscribers prefer it over text   based email. If you are unsure your subscribers can read HTML email,   then offer both text-based email and HTML email, to cater to both audiences.</p>
<p>The post <a rel="nofollow" href="http://lawebdesign.com.au/html-email-useful-tips/">HTML Email useful tips</a> appeared first on <a rel="nofollow" href="http://lawebdesign.com.au">lawebdesign.com.au</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lawebdesign.com.au/html-email-useful-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
