<?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>Maddison Designs &#187; Blog</title>
	<atom:link href="http://maddisondesigns.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://maddisondesigns.com</link>
	<description>Think . Create . Build</description>
	<lastBuildDate>Thu, 29 Jul 2010 12:45:28 +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>Adding a WordPress 3.0 menu to your theme</title>
		<link>http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme/</link>
		<comments>http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 12:23:27 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://maddisondesigns.com/?p=1079</guid>
		<description><![CDATA[One of the things that has been really lacking in WordPress is the ability to easily administer your theme menu(s). Sure, there are quite a few plugins available that made it significantly easier, but there was never any &#8220;built in&#8221; methods. This has now changed with the release of WordPress 3.0 and in my opinion, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme"><img class="size-full wp-image-1092 aligncenter" title="img_adding-a-wordpress-3-0-menu-to-your-theme" src="http://maddisondesigns.com/wp-content/uploads/2010/07/img_adding-a-wordpress-3-0-menu-to-your-theme.jpg" alt="" width="600" height="150" /></a></p>
<p>One of the things that has been really lacking in WordPress is the ability to easily administer your theme menu(s). Sure, there are quite a few plugins available that made it significantly easier, but there was never any &#8220;built in&#8221; methods. This has now changed with the release of WordPress 3.0 and in my opinion, it&#8217;s one its best new features. <span id="more-1079"></span>The only catch of course, is that your theme needs to support this new feature. Fear not though, as you&#8217;ll see here, it&#8217;s extremely easy to implement into your existing theme.</p>
<h3>Step 1: Register your menu</h3>
<p>The first thing you need to do is to register your menu so that you can use it within your theme. There are two functions you can use, depending whether you&#8217;d like to register just one menu or multiple menus.</p>
<p>To register a single navigation menu, use:</p>
<p><a title="register_nav_menu on the WordPress Codex" href="http://codex.wordpress.org/Function_Reference/register_nav_menu">register_nav_menu</a>( $location, $description );</p>
<p><strong>$location</strong> is the slug name<br />
<strong>$description</strong> is the label used within the Dashboard</p>
<p>To register a multiple navigation menus, use:</p>
<p><a title="register_nav_menus on the WordPress Codex" href="http://codex.wordpress.org/Function_Reference/register_nav_menus">register_nav_menus</a>( $locations = array() );</p>
<p><strong>$location</strong> is an array of menu slug names &amp; labels</p>
<p>Within your<strong> functions.php</strong> file, add the following code to register your menu. To ensure backwards compatibility for earlier versions of WordPress, verify the function exists prior to usage by calling <em>function_exists()</em>.</p>
<pre>if ( function_exists( 'register_nav_menu' ) ) {
	register_nav_menu( 'main-menu', 'Main Menu' );
}</pre>
<h3>Step 2: Displaying your new menu</h3>
<p>There are two ways that you can display your navigation menu within your theme. You can either add the menu directly into your theme code using the <em>wp_nav_menu()</em> function, or you can add the menu by using the new <em>Custom Menu</em> widget.</p>
<h4>Using the Custom Menu widget</h4>
<p>Provided your theme allows for widgets, simply drag the <em>Custom Menu</em> Widget across to one of your sidebars. You can then give it an (optional) Title as well as selecting your menu from the drop-down list. The name that appears in the list will be the label that you used in the call to <em>register_nav_menu()</em>.</p>
<p style="text-align: center;"><img class="size-full wp-image-1087 aligncenter" title="custom-menu-widget" src="http://maddisondesigns.com/wp-content/uploads/2010/07/custom-menu-widget.jpg" alt="" width="600" height="250" /></p>
<h4>Using the wp_nav_menu function</h4>
<p>If you&#8217;d like more control over your menu, you can use the <a title="wp_nav_menu on the WorPress Codex" href="http://codex.wordpress.org/Function_Reference/wp_nav_menu">wp_nav_menu()</a> function. The simplest form is to simply call it without any arguments, by adding the following code to your theme wherever you&#8217;d like your menu to appear.</p>
<pre>&lt;?php wp_nav_menu(); ?&gt;</pre>
<p>For even more customisation, the following arguments are available to use:</p>
<ul>
<li><strong>$menu:</strong> (string) The menu that is desired; accepts (matching in order) id,  slug,  name</li>
<li><strong>$container:</strong> (string) Whether to wrap the <em>ul</em>, and what to wrap it with</li>
<li><strong>$container_class:</strong> (string) The class that is applied to the container</li>
<li><strong>$container_id:</strong> (string)The ID that is applied to the container</li>
<li><strong>$menu_class:</strong> (string) CSS class to use for the<em> ul</em> element which forms the menu</li>
<li><strong>$menu_id:</strong> (string) The ID that is applied to the<em> ul</em> element which forms the menu</li>
<li><strong>$echo:</strong> (boolean)  Whether to echo the menu or return it</li>
<li><strong>$fallback_cb:</strong> (string)  If the menu doesn&#8217;t exists, the callback function to use</li>
<li><strong>$before:</strong> (string) Output text before the link text</li>
<li><strong>$after:</strong> (string) Output text after the link text</li>
<li><strong>$link_before:</strong> (string) Output text before the link</li>
<li><strong>$link_after:</strong> (string)Output text after the link</li>
<li><strong>$depth:</strong> (integer) how many levels of the hierarchy are to be included where 0 means all</li>
<li><strong>$walker:</strong> (object)Custom walker object to use</li>
<li><strong>$theme_location:</strong> (string) the location in the theme to be used &#8211; must be registered with register_nav_menu() in order to be selectable by the user</li>
</ul>
<p>For our particular menu we want to specify the menu that we registered earlier (main-menu). We also want to specify the  containing class for the menu. Within your theme files, wherever you&#8217;d like your menu displayed, add the following code.</p>
<pre>&lt;?php wp_nav_menu( array( 'menu' =&gt; 'main-menu', 'container_class' =&gt; 'nav' ) ); ?&gt;</pre>
<h3>Step 3: Setting up your menu within the Dashboard</h3>
<p>After you&#8217;ve updated your theme files, the next task is to actually set up your menu within the WordPress Dashboard. The <strong><em>Menus</em></strong> option can be found within the <em>Appearance</em> section of the left hand navigation. Once you click this, you should be presented with something similar to the image below&#8230;</p>
<p style="text-align: center;"><img class="size-full wp-image-1114 aligncenter" title="img_setting-up-your-menu-in-the-dashboard" src="http://maddisondesigns.com/wp-content/uploads/2010/07/img_setting-up-your-menu-in-the-dashboard.jpg" alt="" width="600" height="600" /></p>
<h4>3.1 Select your menu</h4>
<p><em>Section (a)</em> is where you select your menu that you&#8217;d like to use. The only menus displayed are the ones that you&#8217;ve registered within your <em>functions.php</em> file.</p>
<h4>3.2 Specifying custom links</h4>
<p>If you&#8217;d like to specify a custom link, as opposed one of your existing Pages, simply enter the URL and a menu label into <em>Section (b)</em>. Once you click the <strong>Add to Menu</strong> button, your new menu item will appear in <em>Section (e)</em>.</p>
<h4>3.3 Specifying a page link</h4>
<p>Most times you&#8217;ll simply want your menu items to link to Pages that you&#8217;ve created. <em>Section (c)</em> allows you to select which pages you&#8217;d like to link. Simply tick the appropriate checkboxes and then click the <strong>Add to Menu</strong> button.</p>
<h4>3.4 Naming your menu</h4>
<p>Enter in an appropriate name for your menu in the <strong>Menu Name</strong> text field in <em>Section (d)</em>.</p>
<h4>3.5 Fine-tuning your menu options</h4>
<p><em>Section (e)</em> is where all your menu items will be listed. Clicking the small <em>down arrow</em> next to each menu item will display the individual menu options shown above. Each of the menu items can be easily dragged into a more appropriate order if so required. Also, if your menu is going to be a dropdown menu, then you can also drag the items onto each other so as to form a hierarchy.</p>
<p>If you find that not all the above menu options are displaying such as <em>CSS Classes</em> or if the <em>Custom Links </em>section is not displayed, for example, then click on the <strong>Screen Options </strong>link at the top-right of the Dashboard. You will be presented with a configuration panel where you can specify what options are displayed.</p>
<p style="text-align: center;"><img class="size-full wp-image-1119 aligncenter" title="img_screen-options" src="http://maddisondesigns.com/wp-content/uploads/2010/07/img_screen-options.jpg" alt="" width="600" height="250" /></p>
<p>Simply tick the options that you&#8217;d like to appear. For example, ticking the <em>Posts </em>checkbox will allow you to add your Posts to your menu in the same way that you add your Pages. If you&#8217;d like to be able to specify a particular class for an individual menu item, tick the <em>CSS Classes</em> checkbox. This is handy if your dropdown menu requires you to add specific classes to the first &amp; last dropdown menu items, for styling purposes.</p>
<h4>3.6 Saving your menu</h4>
<p>Last but not least, don&#8217;t forget to save your menu by clicking the <strong>Save Menu </strong>button on the far right of the screen (not displayed).</p>
<h3>Step 4: Styling your menu</h3>
<p>Although I&#8217;m not going to go into how you style your menu using css, I would like to point out one handy feature of this new menu system. You can use the <strong>current-menu-item </strong>class to style the menu option of the currently selected page. This allows you to highlight or identify the individual menu item associated with the page that is currently being viewed. As an example, the following CSS could be used to style our current menu item. Since I specified the <em>container_class </em>as <em>nav </em>when I originally set up the menu, I need to include this class as part of the css.</p>
<pre>.nav li.current-menu-item a {
        font-weight:bold;
	color:#0082c8;
}
</pre>
<p>This should give you enough information to add a WP3.0 custom menu to any of your themes. It&#8217;s a great feature for this new version of WordPress and one which I&#8217;ll be using quite frequently from now on.</p>
<p>Have you implemented this new menu feature in your theme? Are you planing on using the new menus feature? Leave a comment and let me know. I&#8217;d love to hear. <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Adding+a+WordPress+3.0+menu+to+your+theme+-+http://bit.ly/bXaAWK&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme/&amp;title=Adding+a+WordPress+3.0+menu+to+your+theme" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme/&amp;title=Adding+a+WordPress+3.0+menu+to+your+theme" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme/&amp;title=Adding+a+WordPress+3.0+menu+to+your+theme&amp;body=%0D%0AOne%20of%20the%20things%20that%20has%20been%20really%20lacking%20in%20WordPress%20is%20the%20ability%20to%20easily%20administer%20your%20theme%20menu%28s%29.%20Sure%2C%20there%20are%20quite%20a%20few%20plugins%20available%20that%20made%20it%20significantly%20easier%2C%20but%20there%20was%20never%20any%20%22built%20in%22%20methods.%20This%20has%20now%20changed%20with%20the%20release%20of%20WordPress%203.0%20an" rel="nofollow" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme/&amp;title=Adding+a+WordPress+3.0+menu+to+your+theme" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme/&amp;title=Adding+a+WordPress+3.0+menu+to+your+theme" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme/&amp;title=Adding+a+WordPress+3.0+menu+to+your+theme&amp;body=%0D%0AOne%20of%20the%20things%20that%20has%20been%20really%20lacking%20in%20WordPress%20is%20the%20ability%20to%20easily%20administer%20your%20theme%20menu%28s%29.%20Sure%2C%20there%20are%20quite%20a%20few%20plugins%20available%20that%20made%20it%20significantly%20easier%2C%20but%20there%20was%20never%20any%20%22built%20in%22%20methods.%20This%20has%20now%20changed%20with%20the%20release%20of%20WordPress%203.0%20an" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme/&amp;t=Adding+a+WordPress+3.0+menu+to+your+theme" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme/&amp;title=Adding+a+WordPress+3.0+menu+to+your+theme&amp;summary=%0D%0AOne%20of%20the%20things%20that%20has%20been%20really%20lacking%20in%20WordPress%20is%20the%20ability%20to%20easily%20administer%20your%20theme%20menu%28s%29.%20Sure%2C%20there%20are%20quite%20a%20few%20plugins%20available%20that%20made%20it%20significantly%20easier%2C%20but%20there%20was%20never%20any%20%22built%20in%22%20methods.%20This%20has%20now%20changed%20with%20the%20release%20of%20WordPress%203.0%20an&amp;source=Maddison Designs" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2010/07/adding-a-wordpress-3-0-menu-to-your-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Come To Australia, it&#8217;s nice here &#8211; Infographic</title>
		<link>http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/</link>
		<comments>http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 12:41:03 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Infographic]]></category>

		<guid isPermaLink="false">http://maddisondesigns.com/?p=1031</guid>
		<description><![CDATA[The Australian Graphic Design Association (AGDA) quite often produces posters to advertise their various events or conferences they are supporting, which are then sent out to each of their members. They&#8217;re usually of an extremely high quality. The one that I received today is no exception and thought that it needed to be shared. This [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/"><img class="size-full wp-image-1032 aligncenter" title="img_come-to-australia-its-nice-here-infographic" src="http://maddisondesigns.com/wp-content/uploads/2010/06/img_come-to-australia-its-nice-here-infographic.jpg" alt="" width="600" height="150" /></a></p>
<p>The Australian Graphic Design Association (<a title="Australian Graphic Design Association website" href="http://www.agda.com.au/">AGDA</a>) quite often produces posters to advertise their various events or conferences they are supporting, which are then sent out to each of their members. They&#8217;re usually of an extremely high quality. The one that I received today is no exception and thought that it needed to be shared.<span id="more-1031"></span></p>
<p>This particular poster is to advertise <a title="ICOGRADA Design Week" href="http://designweekbrisbane.com/">ICOGRADA Design Week</a> being held in Brisbane (Queensland, Australia) on October 11-17 2010. Through the theme of ‘Optimism’, Icograda Design Week Brisbane 2010 aims  to promote dialogue on issues shaping the nature and relevance of  communication design practice today.</p>
<p>The poster was designed by the talented folk at <a title="Studio Bomba website" href="http://studiobomba.com.au">Studio Bomba</a>.</p>
<blockquote><p>Bomba is a studio of brand boffins that spend every last second of their work-a-day life thinking about how people can best use design to close the gap between &#8216;?&#8217; and &#8216;!&#8217;.</p></blockquote>
<p>You can click on the image below to view a larger PDF version. The PDF was created by taking numerous scans of the A1 sized poster. The original poster was printed on 120gsm ecoStar 100% PCW:FSC CoC: paper made Carbon Neutral from <a title="Raleigh Paper website" href="http://www.raleighpaper.com.au/">Raleigh Paper</a>.</p>
<p>I&#8217;d love to here what you think of this graphic or if you&#8217;ve seen any others of late that are particularly clever, leave a comment and let me know.</p>
<p style="text-align: center;"><a href="http://maddisondesigns.com/wp-content/uploads/2010/06/agda-infographic.pdf" target="_blank"><img class="size-full wp-image-1039 aligncenter" title="come-to-australia-its-nice-here" src="http://maddisondesigns.com/wp-content/uploads/2010/06/come-to-australia-its-nice-here.jpg" alt="" width="600" height="918" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Come+To+Australia%2C+it%27s+nice+here+-+Infographic+-+http://bit.ly/cSFcs3&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/&amp;title=Come+To+Australia%2C+it%27s+nice+here+-+Infographic" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/&amp;title=Come+To+Australia%2C+it%27s+nice+here+-+Infographic" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/&amp;title=Come+To+Australia%2C+it%27s+nice+here+-+Infographic&amp;body=%0D%0AThe%20Australian%20Graphic%20Design%20Association%20%28AGDA%29%20quite%20often%20produces%20posters%20to%20advertise%20their%20various%20events%20or%20conferences%20they%20are%20supporting%2C%20which%20are%20then%20sent%20out%20to%20each%20of%20their%20members.%20They%27re%20usually%20of%20an%20extremely%20high%20quality.%20The%20one%20that%20I%20received%20today%20is%20no%20exception%20and%20thou" rel="nofollow" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/&amp;title=Come+To+Australia%2C+it%27s+nice+here+-+Infographic" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/&amp;title=Come+To+Australia%2C+it%27s+nice+here+-+Infographic" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/&amp;title=Come+To+Australia%2C+it%27s+nice+here+-+Infographic&amp;body=%0D%0AThe%20Australian%20Graphic%20Design%20Association%20%28AGDA%29%20quite%20often%20produces%20posters%20to%20advertise%20their%20various%20events%20or%20conferences%20they%20are%20supporting%2C%20which%20are%20then%20sent%20out%20to%20each%20of%20their%20members.%20They%27re%20usually%20of%20an%20extremely%20high%20quality.%20The%20one%20that%20I%20received%20today%20is%20no%20exception%20and%20thou" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/&amp;t=Come+To+Australia%2C+it%27s+nice+here+-+Infographic" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/&amp;title=Come+To+Australia%2C+it%27s+nice+here+-+Infographic&amp;summary=%0D%0AThe%20Australian%20Graphic%20Design%20Association%20%28AGDA%29%20quite%20often%20produces%20posters%20to%20advertise%20their%20various%20events%20or%20conferences%20they%20are%20supporting%2C%20which%20are%20then%20sent%20out%20to%20each%20of%20their%20members.%20They%27re%20usually%20of%20an%20extremely%20high%20quality.%20The%20one%20that%20I%20received%20today%20is%20no%20exception%20and%20thou&amp;source=Maddison Designs" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2010/06/come-to-australia-its-nice-here-infographic/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Review: My New iPad</title>
		<link>http://maddisondesigns.com/2010/05/review-my-new-ipad/</link>
		<comments>http://maddisondesigns.com/2010/05/review-my-new-ipad/#comments</comments>
		<pubDate>Sun, 30 May 2010 07:55:51 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://maddisondesigns.com/?p=1009</guid>
		<description><![CDATA[I was among the many thousands of people who got their hands on a new Apple iPad a couple of days ago when they were finally released internationally. I&#8217;d pre-ordered mine back at the beginning of May so I received mine by courier on May 28, the day they were released. I was very impressed [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://maddisondesigns.com/2010/05/review-my-new-ipad/"><img class="size-full wp-image-1013 aligncenter" title="img_review-my-new-ipad" src="http://maddisondesigns.com/wp-content/uploads/2010/05/img_review-my-new-ipad.jpg" alt="" width="600" height="150" /></a></p>
<p>I was among the many thousands of people who got their hands on a new Apple iPad a couple of days ago when they were finally released internationally. I&#8217;d pre-ordered mine back at the beginning of May so I received mine by courier on May 28, the day they were released.<span id="more-1009"></span></p>
<p>I was very impressed when I first got my hands on my WiFi + 3G model. As well as being an elegant looking device, as you&#8217;d expect from Apple, the brightness and clarity of the display was just amazing. Images look amazingly crisp and bright and even pages of text are extremely easy to read. Most of the apps that I have installed are ones that I currently have on my iPhone. The majority of these are still native iPhones apps so at their &#8220;std&#8221; resolution, appear the same size on the iPad as what they do on the iPhone. Once an app like this is started though, there is a small button at the bottom of the display that you can press to enlarge the app so as to fill the larger iPad screen. Some apps don&#8217;t look too bad when enlarged, others&#8230; not quite as good. There are heaps of apps that have been optimized for displaying on the larger iPad display though. A couple that come to mind are WordPress, Evernote, Dropbox, eWallet, Marvel Comics and AirVideo. These apps, as well as the native iPad apps, look stunning on the larger display. So far I&#8217;ve only downloaded a few native iPad apps; Adobe Ideas, Twitterific and Smule Magic Piano. As mentioned, they look amazing.</p>
<p>Originally, I was planning on writing this whole post on the iPad. It soon became obvious that wasn&#8217;t going to happen. There&#8217;s a couple of reasons for this. The first being that I wanted the post to be consistent with the rest of the posts on my site. This meant that it would need a header image and a thumbnail image. Not having any apps on my iPad where I could create images at specific sizes (eg. 600x150px for my header img) made it obvious that I was going to have to put the finishing touches to the post using my pc. I was also not able to assign a &#8220;Post Thumbnail&#8221; using either the WordPress app or using the WordPress Dashboard within Safari. (I think this is more of a case of lack of functionality in the WP app though) I found that using the WP Dashboard within Safari, I was also unable to type in the actual text editing field, which kinda makes it a little hard to write posts! I was able to enter text when it was in &#8220;HTML View&#8221; though. I reverted to using the WordPress app to write all this content.</p>
<p>Am I disappointed in the above? Not really. It was never my intention to get an iPad in the hope that it would replace my laptop. What it does, it does really well but for me, it certainly couldn&#8217;t replace the functionality you get with a laptop. So far I&#8217;ve had fun using all the apps and it&#8217;s also lots more convenient browsing the web or Tweeting using the iPad than it is using a laptop, especially whilst relaxing on the couch. I even streamed an episode of <a title="Chuck (TV Series) on Wikipedia" href="http://en.wikipedia.org/wiki/Chuck_%28TV_series%29">Chuck</a> from my <a title="Windows Media Center on Wikipedia" href="http://en.wikipedia.org/wiki/Windows_Media_Center">Media Centre PC</a> last night using AirVideo, whilst lying in bed. Beats having a heavy laptop sitting on top of you! Much like my iPhone, I can now say I love my iPad <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Have you got an iPad yet or thinking of getting one? What do you think of them? Let me know, I&#8217;d love to hear your comments <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Review%3A+My+New+iPad+-+http://bit.ly/98FkCL&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://maddisondesigns.com/2010/05/review-my-new-ipad/&amp;title=Review%3A+My+New+iPad" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://maddisondesigns.com/2010/05/review-my-new-ipad/&amp;title=Review%3A+My+New+iPad" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://maddisondesigns.com/2010/05/review-my-new-ipad/&amp;title=Review%3A+My+New+iPad&amp;body=%0D%0AI%20was%20among%20the%20many%20thousands%20of%20people%20who%20got%20their%20hands%20on%20a%20new%20Apple%20iPad%20a%20couple%20of%20days%20ago%20when%20they%20were%20finally%20released%20internationally.%20I%27d%20pre-ordered%20mine%20back%20at%20the%20beginning%20of%20May%20so%20I%20received%20mine%20by%20courier%20on%20May%2028%2C%20the%20day%20they%20were%20released.%0D%0A%0D%0AI%20was%20very%20impressed%20when" rel="nofollow" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://maddisondesigns.com/2010/05/review-my-new-ipad/&amp;title=Review%3A+My+New+iPad" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://maddisondesigns.com/2010/05/review-my-new-ipad/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://maddisondesigns.com/2010/05/review-my-new-ipad/&amp;title=Review%3A+My+New+iPad" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://maddisondesigns.com/2010/05/review-my-new-ipad/&amp;title=Review%3A+My+New+iPad&amp;body=%0D%0AI%20was%20among%20the%20many%20thousands%20of%20people%20who%20got%20their%20hands%20on%20a%20new%20Apple%20iPad%20a%20couple%20of%20days%20ago%20when%20they%20were%20finally%20released%20internationally.%20I%27d%20pre-ordered%20mine%20back%20at%20the%20beginning%20of%20May%20so%20I%20received%20mine%20by%20courier%20on%20May%2028%2C%20the%20day%20they%20were%20released.%0D%0A%0D%0AI%20was%20very%20impressed%20when" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://maddisondesigns.com/2010/05/review-my-new-ipad/&amp;t=Review%3A+My+New+iPad" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://maddisondesigns.com/2010/05/review-my-new-ipad/&amp;title=Review%3A+My+New+iPad&amp;summary=%0D%0AI%20was%20among%20the%20many%20thousands%20of%20people%20who%20got%20their%20hands%20on%20a%20new%20Apple%20iPad%20a%20couple%20of%20days%20ago%20when%20they%20were%20finally%20released%20internationally.%20I%27d%20pre-ordered%20mine%20back%20at%20the%20beginning%20of%20May%20so%20I%20received%20mine%20by%20courier%20on%20May%2028%2C%20the%20day%20they%20were%20released.%0D%0A%0D%0AI%20was%20very%20impressed%20when&amp;source=Maddison Designs" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2010/05/review-my-new-ipad/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Freebie &#8211; Phases Of The Moon Wallpaper</title>
		<link>http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/</link>
		<comments>http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 00:53:41 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Wallpapers]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://maddisondesigns.com/?p=957</guid>
		<description><![CDATA[Ever since I was a kid, like most boys, I was fascinated with anything to do with space. The starry kind, not the wide open ones. To this day, I love reading about what new projects that @nasa is undertaking. I look forward to the day that we can accomplish President Obama&#8217;s bold new initiative [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/"><img class="size-full wp-image-960 aligncenter" title="img_freebie-phases-of-the-moon-wallpaper" src="http://maddisondesigns.com/wp-content/uploads/2010/04/img_freebie-phases-of-the-moon-wallpaper.jpg" alt="" width="600" height="150" /></a></p>
<p>Ever since I was a kid, like most boys, I was fascinated with anything to do with space. The starry kind, not the wide open ones. To this day, I love reading about what new projects that @nasa is undertaking. I look forward to the day that we can accomplish <a title="President Outlines Exploration Goals, on the Nasa website" href="http://www.nasa.gov/about/obamaspeechfeature.html">President Obama&#8217;s bold new initiative</a> to send crewed missions beyond the moon into deep space. <span id="more-957"></span>First off, it will be a mission to an asteroid and eventually manned missions to Mars. It&#8217;s no longer just enough to stay close to &#8220;home&#8221;. We need to develop new technologies to enable us to venture out further &amp; explore unknown territory. Until then, jazz up your desktop, iPhone or iPad with these wallpapers I created.</p>
<p><strong>Available resolutions:<br />
</strong><a class="lightbox" title="1920 x 1200 wallpaper" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases_1920x1200.jpg">1920 x 1200</a>, <a class="lightbox" title="1920 x 1080 wallpaper" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases_1920x1080.jpg">1920 x 1080</a>, <a class="lightbox" title="1680 x 1050 wallpaper" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases_1680x1050.jpg">1680 x 1050</a>, <a class="lightbox" title="1600 x 1200 wallpaper" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases_1600x1200.jpg">1600 x 1200</a>, <a class="lightbox" title="1440 x 900 wallpaper" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases_1440x900.jpg">1440 x 900</a>, <a class="lightbox" title="1280 x 1024 wallpaper" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases_1280x1024.jpg">1280 x 1024</a>, <a class="lightbox" title="1280 x 960 wallpaper" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases_1280x960.jpg">1280 x 960</a>, <a class="lightbox" title="1280 x 800 wallpaper" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases_1280x800.jpg">1280 x 800</a>, <a class="lightbox" title="1024 x 1024 iPad wallpaper" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases_1024x1024.jpg">1024 x 1024 (iPad)</a>, <a class="lightbox" title="1024 x 768 wallpaper" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases_1024x768.jpg">1024 x 768</a>, <a class="lightbox" title="320 x 480 iPhone wallpaper" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases_320x480.jpg">320 x 480 (iPhone)</a> or you can <a title="Download the complete set of wallpapers" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases.zip">download the complete set</a></p>
<p>If you&#8217;ve got a spare sec, please leave a comment and let me know if you liked them <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p style="text-align: center;"><a title="Download the complete set of wallpapers" href="http://maddisondesigns.com/wp-content/uploads/2010/04/moon-phases.zip"><img class="size-full wp-image-961 aligncenter" title="phases of the moon wallpapers" src="http://maddisondesigns.com/wp-content/uploads/2010/04/phases-of-the-moon-wallpapers.jpg" alt="" width="600" height="375" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Freebie+-+Phases+Of+The+Moon+Wallpaper+-+http://bit.ly/asXHvt&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/&amp;title=Freebie+-+Phases+Of+The+Moon+Wallpaper" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/&amp;title=Freebie+-+Phases+Of+The+Moon+Wallpaper" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/&amp;title=Freebie+-+Phases+Of+The+Moon+Wallpaper&amp;body=%0D%0AEver%20since%20I%20was%20a%20kid%2C%20like%20most%20boys%2C%20I%20was%20fascinated%20with%20anything%20to%20do%20with%20space.%20The%20starry%20kind%2C%20not%20the%20wide%20open%20ones.%20To%20this%20day%2C%20I%20love%20reading%20about%20what%20new%20projects%20that%20%40nasa%20is%20undertaking.%20I%20look%20forward%20to%20the%20day%20that%20we%20can%20accomplish%20President%20Obama%27s%20bold%20new%20initiative%20to" rel="nofollow" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/&amp;title=Freebie+-+Phases+Of+The+Moon+Wallpaper" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/&amp;title=Freebie+-+Phases+Of+The+Moon+Wallpaper" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/&amp;title=Freebie+-+Phases+Of+The+Moon+Wallpaper&amp;body=%0D%0AEver%20since%20I%20was%20a%20kid%2C%20like%20most%20boys%2C%20I%20was%20fascinated%20with%20anything%20to%20do%20with%20space.%20The%20starry%20kind%2C%20not%20the%20wide%20open%20ones.%20To%20this%20day%2C%20I%20love%20reading%20about%20what%20new%20projects%20that%20%40nasa%20is%20undertaking.%20I%20look%20forward%20to%20the%20day%20that%20we%20can%20accomplish%20President%20Obama%27s%20bold%20new%20initiative%20to" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/&amp;t=Freebie+-+Phases+Of+The+Moon+Wallpaper" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/&amp;title=Freebie+-+Phases+Of+The+Moon+Wallpaper&amp;summary=%0D%0AEver%20since%20I%20was%20a%20kid%2C%20like%20most%20boys%2C%20I%20was%20fascinated%20with%20anything%20to%20do%20with%20space.%20The%20starry%20kind%2C%20not%20the%20wide%20open%20ones.%20To%20this%20day%2C%20I%20love%20reading%20about%20what%20new%20projects%20that%20%40nasa%20is%20undertaking.%20I%20look%20forward%20to%20the%20day%20that%20we%20can%20accomplish%20President%20Obama%27s%20bold%20new%20initiative%20to&amp;source=Maddison Designs" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2010/04/freebie-phases-of-the-moon-wallpaper/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Maddison Designs Site Redesign</title>
		<link>http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/</link>
		<comments>http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 05:26:39 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Redesign]]></category>

		<guid isPermaLink="false">http://maddisondesigns.com/?p=925</guid>
		<description><![CDATA[I&#8217;ve finally managed to finish the redesign and launch of my site during this last week. I like to think of it as more of a freshen up than a complete redesign as I&#8217;ve kept certain design elements from the previous version. As part of the site redesign, I&#8217;ve taken the opportunity to turn it [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/"><img class="size-full wp-image-926 aligncenter" title="img_maddison-designs-redesigned-site-launch" src="http://maddisondesigns.com/wp-content/uploads/2010/04/img_maddison-designs-redesigned-site-launch.jpg" alt="" width="600" height="150" /></a></p>
<p>I&#8217;ve finally managed to finish the redesign and launch of my site during this last week. I like to think of it as more of a freshen up than a complete redesign as I&#8217;ve kept certain design elements from the previous version.<span id="more-925"></span></p>
<p>As part of the site redesign, I&#8217;ve taken the opportunity to turn it into a complete branding exercise. I&#8217;ve redesigned the site, including creation of my very own logo, created some <a class="lightbox" title="Business cards" href="/wp-content/themes/maddisondesigns/_portfolio/print/full/img_mdesigns1.jpg">new business cards</a>, updated my invoice templates and updated my html email template that I use for emailing out quotes.</p>
<p>Previously my site was a bunch of static php files and I was only using WordPress to power my blog. This time around I developed a completely customised WordPress theme from the ground up to manage the whole site. My theme is widget ready for complete customisation of the sidebar and footer and includes a number of different page templates for customising the <a title="Maddison Designs homepage" href="http://maddisondesigns.com">Homepage</a>, <a title="Maddison Designs blog" href="http://maddisondesigns.com/blog">Blog</a> and several of the other pages within the site. One of the benefits of WordPress and one of the reasons why it is so popular, is the ease of customising sites. It truly is a complete Content Management System now and not just a simple blogging platform.</p>
<p>I&#8217;d love to hear what you think of the new design, so if you&#8217;ve got a minute, please leave a comment <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Maddison+Designs+Site+Redesign+-+http://bit.ly/aLKjiG&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/&amp;title=Maddison+Designs+Site+Redesign" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/&amp;title=Maddison+Designs+Site+Redesign" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/&amp;title=Maddison+Designs+Site+Redesign&amp;body=%0D%0AI%27ve%20finally%20managed%20to%20finish%20the%20redesign%20and%20launch%20of%20my%20site%20during%20this%20last%20week.%20I%20like%20to%20think%20of%20it%20as%20more%20of%20a%20freshen%20up%20than%20a%20complete%20redesign%20as%20I%27ve%20kept%20certain%20design%20elements%20from%20the%20previous%20version.%0D%0A%0D%0AAs%20part%20of%20the%20site%20redesign%2C%20I%27ve%20taken%20the%20opportunity%20to%20turn%20it%20int" rel="nofollow" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/&amp;title=Maddison+Designs+Site+Redesign" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/&amp;title=Maddison+Designs+Site+Redesign" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/&amp;title=Maddison+Designs+Site+Redesign&amp;body=%0D%0AI%27ve%20finally%20managed%20to%20finish%20the%20redesign%20and%20launch%20of%20my%20site%20during%20this%20last%20week.%20I%20like%20to%20think%20of%20it%20as%20more%20of%20a%20freshen%20up%20than%20a%20complete%20redesign%20as%20I%27ve%20kept%20certain%20design%20elements%20from%20the%20previous%20version.%0D%0A%0D%0AAs%20part%20of%20the%20site%20redesign%2C%20I%27ve%20taken%20the%20opportunity%20to%20turn%20it%20int" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/&amp;t=Maddison+Designs+Site+Redesign" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/&amp;title=Maddison+Designs+Site+Redesign&amp;summary=%0D%0AI%27ve%20finally%20managed%20to%20finish%20the%20redesign%20and%20launch%20of%20my%20site%20during%20this%20last%20week.%20I%20like%20to%20think%20of%20it%20as%20more%20of%20a%20freshen%20up%20than%20a%20complete%20redesign%20as%20I%27ve%20kept%20certain%20design%20elements%20from%20the%20previous%20version.%0D%0A%0D%0AAs%20part%20of%20the%20site%20redesign%2C%20I%27ve%20taken%20the%20opportunity%20to%20turn%20it%20int&amp;source=Maddison Designs" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2010/04/maddison-designs-site-redesign/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Never Ever Have Blank Lines Outside Your WordPress PHP Tags</title>
		<link>http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/</link>
		<comments>http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 23:13:45 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://maddisondesigns.info/?p=897</guid>
		<description><![CDATA[I had my day planned out nicely. Only a few minor updates to make on my WordPress theme for my new site and I would&#8217;ve been done (coding wise). Then it happened! I logged into the admin Dashboard to make a few content tweaks and things seemed a bit strange. When I tried to save [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-900 aligncenter" title="img_never-ever-have-blank-lines-outside-your-wordpress-php-tags" src="http://maddisondesigns.com/wp-content/uploads/2010/03/img_never-ever-have-blank-lines-outside-your-wordpress-php-tags.jpg" alt="" width="600" height="150" /></p>
<p>I had my day planned out nicely. Only a few minor updates to make on my <a title="WordPress website" href="http://wordpress.org">WordPress</a> theme for my new site and I would&#8217;ve been done (coding wise). Then it happened! I logged into the admin Dashboard to make a few content tweaks and things seemed a bit strange. When I tried to save some content updates, the page just wouldn&#8217;t refresh properly. I even tried logging out of the dashboard&#8230; no luck <span id="more-897"></span> <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_cry.gif' alt=':cry:' class='wp-smiley' /> </p>
<p>Next up, I tested the site to see if it was up and running ok. On the surface things looked fine but then I noticed that when I tried to type in a URL without the trailing forward-slash (&#8216;/&#8217;), the page wouldn&#8217;t appear. Normally, depending on how you&#8217;ve configured your <a title="Permalinks on the WordPress Codex" href="http://codex.wordpress.org/Using_Permalinks">Permalinks</a>, it will simply add the trailing slash automatically. Instead, all I got was a blank white screen starring back at me. Needless to say, a few expletives were uttered!</p>
<p>I tried thinking back to when everything seemed to be working fine. I also tried to remember what changes I&#8217;d made the day before. From memory, it was mainly some CSS updates to change links colours. There were no major code updates from what I could remember. I also couldn&#8217;t work out why the URL&#8217;s weren&#8217;t being processed correctly. After doing some Googling, I decided to raise a (low priority) support ticket with my hosting provider to see if any server changes had been made within the last few days. It was as if the .htaccess rules weren&#8217;t being obeyed. Good and bad news. The good news&#8230; no changes had been made to the server. The bad news&#8230; this didn&#8217;t get me any closer to resolving my issue.</p>
<p>The next step was to try changing to the default WordPress theme and do some testing. Things seemed to improved after changing themes. I could save my pages consistently. I could log in and out of the Dashboard without a problem. Even the URL&#8217;s worked fine, with or without the trailing slashes. Hmmm It would appear that the culprit was my own theme, which I&#8217;d been lovingly hand crafting. Next test was a restore from a backup of my theme. Luckily I&#8217;m quite strict at performing backups. I perform a backup of my workstation and my development server every couple of days, with the files kept on a separate hard drive. I rotate between 4 different sets for each machine. I restored the oldest backup which was just over a week old. Sure enough, everything worked fine. The next backup I tried was one from only two days prior. This also worked fine. Things were starting to look up! What this meant was that I&#8217;d narrowed it down to being caused by the changes that I&#8217;d made the previous day.</p>
<p>I now needed to compare the latest version of my code (the one with the problems) to the version from two days prior. I downloaded and installed <a title="WinMerge website" href="http://winmerge.org">WinMerge</a>, which is an extremely handy Open Source differencing and merging tool (for Windows). Luckily there weren&#8217;t too many files changed. As mentioned earlier, most of the changes were in my main stylesheet. Starting from a copy of my restored (working) theme, I slowly started to integrate the changes that I&#8217;d made the previous day. Most seemed fairly mundane. A few CSS changes and some very minor code updates. I then got to my <em>functions.php</em> file. I incorporated the changes and lo and behold, things broke immediately. Yay!! I&#8217;d found the damn file that was causing all my problems! Now it was simply a matter of narrowing down the exact cause.</p>
<p>Looking through the code reminded me of the changes that I&#8217;d made. I&#8217;d added a few comments to the code to document a couple of the functions (Silly me, I know! Real developers don&#8217;t document code!!). The other thing I&#8217;d done was to add a blank line in between where I&#8217;d closed a PHP tag and opened up the next one. The code snippet is question looked like this&#8230;</p>
<p style="text-align: center;"><img class="size-full wp-image-899 aligncenter" title="functions-php-code-fragment-before" src="http://maddisondesigns.com/wp-content/uploads/2010/03/functions-php-code-fragment-before.jpg" alt="" width="600" height="150" /></p>
<p>You&#8217;ll notice that between the closing PHP tag and the following opening tag, there&#8217;s a blank line. Gasp!! This is what was causing all the drama! The solution was to simply remove the offending blank line. In fact, since I was simply closing the PHP tag and immediately reopening it, I could easily omit both of them. The resulting code looked like&#8230;</p>
<p style="text-align: center;"><img class="size-full wp-image-898 aligncenter" title="functions-php-code-fragment-after" src="http://maddisondesigns.com/wp-content/uploads/2010/03/functions-php-code-fragment-after.jpg" alt="" width="600" height="150" /></p>
<p>As for the problems that it caused, well there were quite are few.</p>
<h3>URL&#8217;s weren&#8217;t processed properly</h3>
<p>Since my Permalinks were setup using the format &#8220;<em><strong>/%year%/%monthnum%/%postname%/</strong></em>&#8220;, the posts wouldn&#8217;t display properly if they didn&#8217;t have the trailing slash. Normally, this is something that is handled by your <em>.htaccess</em> file. Instead, I was simply receiving a blank page unless I specifically had the slash on the end of the URL.</p>
<h3>Strange content appearing</h3>
<p>This was a strange one. As you can see in the image below, characters such as quotes and apostrophes were being rendered incorrectly. You&#8217;d think this was because their was some &#8216;strange&#8217; characters stored in the database, but nope, it displayed perfectly fine once <em>functions.php</em> was fixed.</p>
<p style="text-align: center;"><img class="size-full wp-image-901 aligncenter" title="invalid-characters-being-rendered" src="http://maddisondesigns.com/wp-content/uploads/2010/03/invalid-characters-being-rendered.jpg" alt="" width="600" height="150" /></p>
<h3>Blank lines appearing at top of document source, before the DOCTYPE</h3>
<p>One of the repercussions of the blank line &#8220;incident&#8221; was that it caused blank lines to appear before the DOCTYPE within the html. This can cause problems with your RSS feed, in particular with Feedburner.  Blank lines (outside of PHP tags) in any of your page templates can also cause the same problem, so I made sure I thoroughly checked those as well.</p>
<h3>Problems in the WP Dashboard</h3>
<p>As mentioned above, one of the first things that alerted me to the problem was my administration dashboard becoming unstable. I found that whenever I tried to save some content changes, the page wouldn&#8217;t refresh. Also, I couldn&#8217;t even log out of the WordPress Dashboard. I was able to browse through the various menu options within the Dashboard, but when it came to performing an action such as saving a page, that&#8217;s when the problems surfaced.</p>
<p>Due the the &#8216;strangeness&#8217; of some of the problems, this was one bug that took a while to track down. Thankfully though, it&#8217;s all fixed now. It&#8217;s certainly something that I&#8217;ll be more mindful of in the future when I create themes.</p>
<p>Have you come across this problem or any other strange issues? I&#8217;d love to hear, so feel free to leave a comment <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Never+Ever+Have+Blank+Lines+Outside+Your+Wordpress+PHP+Tags+-+http://bit.ly/asWsTQ&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/&amp;title=Never+Ever+Have+Blank+Lines+Outside+Your+Wordpress+PHP+Tags" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/&amp;title=Never+Ever+Have+Blank+Lines+Outside+Your+Wordpress+PHP+Tags" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/&amp;title=Never+Ever+Have+Blank+Lines+Outside+Your+Wordpress+PHP+Tags&amp;body=%0D%0AI%20had%20my%20day%20planned%20out%20nicely.%20Only%20a%20few%20minor%20updates%20to%20make%20on%20my%20Wordpress%20theme%20for%20my%20new%20site%20and%20I%20would%27ve%20been%20done%20%28coding%20wise%29.%20Then%20it%20happened%21%20I%20logged%20into%20the%20admin%20Dashboard%20to%20make%20a%20few%20content%20tweaks%20and%20things%20seemed%20a%20bit%20strange.%20When%20I%20tried%20to%20save%20some%20content%20update" rel="nofollow" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/&amp;title=Never+Ever+Have+Blank+Lines+Outside+Your+Wordpress+PHP+Tags" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/&amp;title=Never+Ever+Have+Blank+Lines+Outside+Your+Wordpress+PHP+Tags" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/&amp;title=Never+Ever+Have+Blank+Lines+Outside+Your+Wordpress+PHP+Tags&amp;body=%0D%0AI%20had%20my%20day%20planned%20out%20nicely.%20Only%20a%20few%20minor%20updates%20to%20make%20on%20my%20Wordpress%20theme%20for%20my%20new%20site%20and%20I%20would%27ve%20been%20done%20%28coding%20wise%29.%20Then%20it%20happened%21%20I%20logged%20into%20the%20admin%20Dashboard%20to%20make%20a%20few%20content%20tweaks%20and%20things%20seemed%20a%20bit%20strange.%20When%20I%20tried%20to%20save%20some%20content%20update" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/&amp;t=Never+Ever+Have+Blank+Lines+Outside+Your+Wordpress+PHP+Tags" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/&amp;title=Never+Ever+Have+Blank+Lines+Outside+Your+Wordpress+PHP+Tags&amp;summary=%0D%0AI%20had%20my%20day%20planned%20out%20nicely.%20Only%20a%20few%20minor%20updates%20to%20make%20on%20my%20Wordpress%20theme%20for%20my%20new%20site%20and%20I%20would%27ve%20been%20done%20%28coding%20wise%29.%20Then%20it%20happened%21%20I%20logged%20into%20the%20admin%20Dashboard%20to%20make%20a%20few%20content%20tweaks%20and%20things%20seemed%20a%20bit%20strange.%20When%20I%20tried%20to%20save%20some%20content%20update&amp;source=Maddison Designs" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How To Add Multiple Widget Sidebars To Your WordPress Blog</title>
		<link>http://maddisondesigns.com/2010/03/how-to-add-multiple-widget-sidebars-to-your-wordpress-blog/</link>
		<comments>http://maddisondesigns.com/2010/03/how-to-add-multiple-widget-sidebars-to-your-wordpress-blog/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 07:23:32 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Sidebar]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://maddisondesigns.info/?p=810</guid>
		<description><![CDATA[I’ve found that the term “sidebar” within WordPress can have multiple meanings. Within your index.php file you will most likely find a call to the php function get_sidebar(). This is referring to the sidebar column, sometimes called the right-hand (or left-hand) navigation column. A sidebar also refers to the location where you add all your [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-811 aligncenter" title="img_how-to-add-multiple-widget-sidebars-to-your-wordpress-blog" src="http://maddisondesigns.com/wp-content/uploads/2010/03/img_how-to-add-multiple-widget-sidebars-to-your-wordpress-blog.jpg" alt="" width="600" height="150" /></p>
<p>I’ve found that the term “sidebar” within WordPress can have multiple meanings. Within your <em>index.php</em> file you will most likely find a call to the php function <em>get_sidebar()</em>. This is referring to the sidebar column, sometimes called the right-hand (or left-hand) navigation column. A sidebar also refers to the location where you add all your Widgets. The Widgets control the content that appears within the sidebar (column) and will usually display lists such as your Recent Posts, Categories, Links or dozens of other items.<span id="more-810"></span></p>
<p>Since WordPress is so configurable, it’s possible to have multiple sidebar columns defined such as when you have multiple page templates set up. For example, you may have a specific page template defined for your sites static homepage. As well as defining the body content for that page, you can also define a separate sidebar in case you would like it to appear differently from the rest of the site.</p>
<p>It’s also possible to register multiple sidebars that contain all the widgets. This latter sidebar is what we’ll be discussing here. A typical WordPress theme may only have one sidebar configured although it’s not uncommon to have 2 or 3 or even more. Even though it’s called a “sidebar” it doesn’t need to specifically reside in the sidebar of your website. You can add a “sidebar” to anywhere in your site you want to display your widgets. A common place to include them is the site footer.</p>
<h2>Defining your new sidebar</h2>
<p>Adding additional sidebars to your site is relatively easy. Within your <em>functions.php</em> file you will most likely have something similar to the code below, for your existing sidebar.</p>
<pre>&lt;?php

if ( function_exists('register_sidebar') ) {

   register_sidebar(array(
   'before_widget' =&gt; '&lt;li id="%1$s" class="widget %2$s"&gt;',
   'after_widget' =&gt; '&lt;/li&gt;',
   'before_title' =&gt; '&lt;h2 class="widgettitle"&gt;',
   'after_title' =&gt; '&lt;/h2&gt;'
   ));

}?&gt;</pre>
<p>To add another sidebar you simply need to register another instance. If you are registering more than one, then you will also need to name them. Change your <em>functions.php</em> file to look like the following. Take care to add in the extra line that specifies the name of your sidebar. Once these are functions are defined, you will notice the extra sidebar appear in the WordPress Dashboard under the <em>Appearance &gt; Widgets</em> option. It’s here that you can drag and drop all your widgets into your various sidebars.</p>
<pre>&lt;?php

if ( function_exists('register_sidebar') ) {

   register_sidebar(array(
   'name' =&gt; 'sidebar 1',
   'before_widget' =&gt; '&lt;div id="%1$s" class="widget %2$s"&gt;',
   'after_widget' =&gt; '&lt;/div&gt;',
   'before_title' =&gt; '&lt;h2&gt;',
   'after_title' =&gt; '&lt;/h2&gt;'
    ));

   register_sidebar(array(
   'name' =&gt; 'footer sidebar 1',
   'before_widget' =&gt; '&lt;div id="%1$s" class="widget %2$s"&gt;',
   'after_widget' =&gt; '&lt;/div&gt;',
   'before_title' =&gt; '&lt;h2&gt;',
   'after_title' =&gt; '&lt;/h2&gt;'
   ));

}?&gt;</pre>
<p>You can find more details on the various parameters of the above call on the <a title="register_sidebar function on the WordPress Codex" href="http://codex.wordpress.org/Function_Reference/register_sidebar">WordPress Codex</a>.</p>
<h2>Adding your new sidebar to your template</h2>
<p>Within your <em>sidebar.php</em> file, change the call to your existing sidebar to include its name that you defined within the <em>functions.php</em> file earlier.</p>
<pre>&lt;?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('sidebar 1') ) : ?&gt;

   &lt;h2&gt;Articles by month&lt;/h2&gt;
   &lt;ul&gt;
      &lt;?php wp_get_archives('title_li=&amp;type=monthly'); ?&gt;
   &lt;/ul&gt;
   &lt;h2&gt;Categories&lt;/h2&gt;
   &lt;ul&gt;
      &lt;?php wp_list_categories('show_count=0&amp;title_li='); ?&gt;
   &lt;/ul&gt;

&lt;?php endif; ?&gt;</pre>
<p>To add your new sidebar, you can either copy the above code or you can simply copy the following lines. Add these lines to wherever you’d like your new widgets to appear. In this example you can see from the name that I’m placing mine in the footer of my website. As before, don’t forget to specify the correct sidebar name. In the above code, the html that appears between the php statements is what will appear when there are no widgets added to your sidebar. This ‘default’ code can obviously be modified to suit your theme. In the following code, since there is no extra html, nothing will be displayed unless a widget has been added into the sidebar within your WordPress dashboard.</p>
<pre>&lt;?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer sidebar 1') ) : ?&gt;
&lt;?php endif; ?&gt;</pre>
<p>You will now find that your site has two widgetized sidebars. As mentioned earlier, there’s no reason why you couldn’t include further ones. It’s simply a matter of registering the new sidebar and then including the php to display it, in the relevant part of your site template.</p>
<p>I’ve also published this tutorial on <a title="Twitter Study Group website" href="http://www.twitterstudygroup.com/wordpress/?p=92">Twitter Study Group</a>. It&#8217;s a great place to learn, so check it out.</p>
<p><a class="noborder" href="http://www.twitterstudygroup.com/wordpress/?p=92"><img class="size-full wp-image-813" title="twitter-study-group-logo" src="http://maddisondesigns.com/wp-content/uploads/2010/03/twitter-study-group-logo.jpg" alt="" width="385" height="77" /></a></p>
<p>Thinking of adding more widgets to your WordPress site? Leave a comment and let me know if you found this useful. Thanks <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+To+Add+Multiple+Widget+Sidebars+To+Your+WordPress+Blog+-+http://bit.ly/aYwvXw&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://maddisondesigns.com/2010/03/how-to-add-multiple-widget-sidebars-to-your-wordpress-blog/&amp;title=How+To+Add+Multiple+Widget+Sidebars+To+Your+WordPress+Blog" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://maddisondesigns.com/2010/03/how-to-add-multiple-widget-sidebars-to-your-wordpress-blog/&amp;title=How+To+Add+Multiple+Widget+Sidebars+To+Your+WordPress+Blog" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://maddisondesigns.com/2010/03/how-to-add-multiple-widget-sidebars-to-your-wordpress-blog/&amp;title=How+To+Add+Multiple+Widget+Sidebars+To+Your+WordPress+Blog&amp;body=%0AI%E2%80%99ve%20found%20that%20the%20term%20%E2%80%9Csidebar%E2%80%9D%20within%20WordPress%20can%20have%20multiple%20meanings.%20Within%20your%20index.php%20file%20you%20will%20most%20likely%20find%20a%20call%20to%20the%20php%20function%20get_sidebar%28%29.%20This%20is%20referring%20to%20the%20sidebar%20column%2C%20sometimes%20called%20the%20right-hand%20%28or%20left-hand%29%20navigation%20column.%20A%20sidebar%20a" rel="nofollow" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://maddisondesigns.com/2010/03/how-to-add-multiple-widget-sidebars-to-your-wordpress-blog/&amp;title=How+To+Add+Multiple+Widget+Sidebars+To+Your+WordPress+Blog" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://maddisondesigns.com/2010/03/how-to-add-multiple-widget-sidebars-to-your-wordpress-blog/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://maddisondesigns.com/2010/03/how-to-add-multiple-widget-sidebars-to-your-wordpress-blog/&amp;title=How+To+Add+Multiple+Widget+Sidebars+To+Your+WordPress+Blog" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://maddisondesigns.com/2010/03/how-to-add-multiple-widget-sidebars-to-your-wordpress-blog/&amp;title=How+To+Add+Multiple+Widget+Sidebars+To+Your+WordPress+Blog&amp;body=%0AI%E2%80%99ve%20found%20that%20the%20term%20%E2%80%9Csidebar%E2%80%9D%20within%20WordPress%20can%20have%20multiple%20meanings.%20Within%20your%20index.php%20file%20you%20will%20most%20likely%20find%20a%20call%20to%20the%20php%20function%20get_sidebar%28%29.%20This%20is%20referring%20to%20the%20sidebar%20column%2C%20sometimes%20called%20the%20right-hand%20%28or%20left-hand%29%20navigation%20column.%20A%20sidebar%20a" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://maddisondesigns.com/2010/03/how-to-add-multiple-widget-sidebars-to-your-wordpress-blog/&amp;t=How+To+Add+Multiple+Widget+Sidebars+To+Your+WordPress+Blog" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://maddisondesigns.com/2010/03/how-to-add-multiple-widget-sidebars-to-your-wordpress-blog/&amp;title=How+To+Add+Multiple+Widget+Sidebars+To+Your+WordPress+Blog&amp;summary=%0AI%E2%80%99ve%20found%20that%20the%20term%20%E2%80%9Csidebar%E2%80%9D%20within%20WordPress%20can%20have%20multiple%20meanings.%20Within%20your%20index.php%20file%20you%20will%20most%20likely%20find%20a%20call%20to%20the%20php%20function%20get_sidebar%28%29.%20This%20is%20referring%20to%20the%20sidebar%20column%2C%20sometimes%20called%20the%20right-hand%20%28or%20left-hand%29%20navigation%20column.%20A%20sidebar%20a&amp;source=Maddison Designs" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2010/03/how-to-add-multiple-widget-sidebars-to-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Creating A Tilt-Shift Effect Using Photoshop</title>
		<link>http://maddisondesigns.com/2010/02/creating-a-tilt-shift-effect-using-photoshop/</link>
		<comments>http://maddisondesigns.com/2010/02/creating-a-tilt-shift-effect-using-photoshop/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 03:45:27 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[tilt-shift]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://maddisondesigns.info/?p=769</guid>
		<description><![CDATA[A Tilt-Shift effect on your image gives it the impression that the subject is actually a scale model. It does this by dramatically simulating a shallow Depth of Field along with an increase in the color saturation. To get the best effect, it’s advisable to use an image that is looking down on your subject. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-770 aligncenter" title="img_creating-a-tilt-shift-effect-using-photoshop" src="http://maddisondesigns.com/wp-content/uploads/2010/02/img_creating-a-tilt-shift-effect-using-photoshop.jpg" alt="" width="600" height="150" /></p>
<p>A Tilt-Shift effect on your image gives it the impression that the subject is actually a scale model. It does this by dramatically simulating a shallow Depth of Field along with an increase in the color saturation.<span id="more-769"></span></p>
<p>To get the best effect, it’s advisable to use an image that is looking down on your subject. An image such as a busy street scene viewed from a multi-story building or where the camera is above the horizon line, works perfectly. Alternatively, you can also <a title="Tilt-Shift original source image" rel="lightbox_group" href="http://maddisondesigns.com/wp-content/uploads/2010/02/tilt-shift_source-img.jpg">download the image</a> I’ve used in this tutorial.</p>
<h2>Step 1: Increasing the color saturation</h2>
<p>We’ll start off by increasing the color saturation. This makes the effect more noticeable.</p>
<p>After opening your image, create a new Vibrance Adjustment Layer. You can do this by selecting the half-filled circle at the bottom of your Layers palette or from the Layer &gt; New Adjustment Layer &gt; Vibrance&#8230; menu option. The amount you increase the Vibrance &amp; Saturation will depend on your particular image. For this image though, I’ve increased both to +40 to really exaggerate the colors.</p>
<p style="text-align: center;"><img class="size-full wp-image-775 aligncenter" title="tilt-shift_image1" src="http://maddisondesigns.com/wp-content/uploads/2010/02/tilt-shift_image1.jpg" alt="" width="550" height="588" /></p>
<h2>Step 2: Adjusting the curves</h2>
<p>Next, add a new Curves adjustment layer. Again, you can select this from the half-filled circle at the bottom of the Layers palette or from the Layer &gt; New Adjustment Layer &gt; Curves&#8230; menu option. Increase the highlights and decrease the shadows slightly to provide further contrast between the colors. The amount of adjustment required in the curves dialog may vary depending on the particular image used.</p>
<p style="text-align: center;"><img class="size-full wp-image-776 aligncenter" title="tilt-shift_image2" src="http://maddisondesigns.com/wp-content/uploads/2010/02/tilt-shift_image2.jpg" alt="" width="550" height="588" /></p>
<h2>Step 3: Simulate the depth of field</h2>
<p>The main effect in a Tilt-Shift image is the shallow depth of field. To simulate this, we first need to blur the image. Select your background layer (or the layer that has your image) and press Ctrl-J (Command-J on Mac) to duplicate this layer. If it’s not already, select this new duplicated layer and then select Filter &gt; Blur &gt; Gaussian blur&#8230; menu option. Blur your image with a Radius of 4.5 pixels.</p>
<p style="text-align: center;"><img class="size-full wp-image-777 aligncenter" title="tilt-shift_image3" src="http://maddisondesigns.com/wp-content/uploads/2010/02/tilt-shift_image3.jpg" alt="" width="550" height="588" /></p>
<p>With your blurred layer still selected, add a new Layer Mask by selecting the Add Layer Mask icon at the bottom of the Layers palette or by selecting the Layer &gt; Layer Mask &gt; Reveal All menu option. Make sure your Layer mask (not the image) is selected by clicking on it. Select the Gradient Tool and in the options palette, select Reflected Gradient (4th Gradient icon from the left). Also, ensure that the &#8216;Reverse&#8217; checkbox is unticked. Next, drag the gradient vertically over a small portion of the image. To make sure it’s perfectly vertical, hold down the Shift key while you drag. What you are doing here is creating a mask on the blurred image so that the original image sitting on the layer below, can be seen. Since we only want to simulate a narrow Depth of Field, the gradient should be quite small. It may take a couple of goes to get the correct effect. Once you’ve added your gradient to the Layer mask, you should find that the area you dragged the cursor over will no longer be blurred.</p>
<p style="text-align: center;"><img class="size-full wp-image-778 aligncenter" title="tilt-shift_image4" src="http://maddisondesigns.com/wp-content/uploads/2010/02/tilt-shift_image4.jpg" alt="" width="550" height="588" /></p>
<h2>Step 4: Fine tune your image</h2>
<p>To ‘fine tune’ your gradient, click the small “link” icon between the image and the Layer mask (in the Layers palette) to turn it off. Making sure your Layer mask is still selected, select the Move Tool and use the Up &amp; Down arrow keys to fine tune the position of your mask. The subject matter of your image will influence where best to position the mask to get the best effect.</p>
<p style="text-align: center;"><img class="size-full wp-image-779 aligncenter" title="tilt-shift_image5" src="http://maddisondesigns.com/wp-content/uploads/2010/02/tilt-shift_image5.jpg" alt="" width="550" height="588" /></p>
<h2>Step 5: Grab a coffee</h2>
<p>Once you’re happy with the placement of your mask, your image is complete. You can now sit back and contemplate what you’re going to “miniaturise” next <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p style="text-align: center;"><a class="noborder" title="Tilt-Shift completed image" rel="lightbox_group" href="http://maddisondesigns.com/wp-content/uploads/2010/02/tilt-shift_completed.jpg"><img class="aligncenter size-full wp-image-774" title="tilt-shift_completed-sml" src="http://maddisondesigns.com/wp-content/uploads/2010/02/tilt-shift_completed-sml.jpg" alt="" width="550" height="366" /></a></p>
<p>I’ve also published this tutorial on <a title="The Web Squeeze" href="http://www.thewebsqueeze.com/web-design-tutorials/creating-a-tilt-shift-effect-using-photoshop.html">The Web Squeeze</a>.</p>
<p><a class="noborder" title="The Web Squeeze" href="http://www.thewebsqueeze.com/web-design-tutorials/creating-a-tilt-shift-effect-using-photoshop.html"><img class="size-full wp-image-771" title="The Web Squeeze" src="http://maddisondesigns.com/wp-content/uploads/2010/02/img_the-web-squeeze.jpg" alt="" width="385" height="76" /></a></p>
<p>If you found this tutorial interesting I&#8217;d love to hear so please leave a comment. Thanks. <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Creating+A+Tilt-Shift+Effect+Using+Photoshop+-+http://bit.ly/9pumng&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://maddisondesigns.com/2010/02/creating-a-tilt-shift-effect-using-photoshop/&amp;title=Creating+A+Tilt-Shift+Effect+Using+Photoshop" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://maddisondesigns.com/2010/02/creating-a-tilt-shift-effect-using-photoshop/&amp;title=Creating+A+Tilt-Shift+Effect+Using+Photoshop" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://maddisondesigns.com/2010/02/creating-a-tilt-shift-effect-using-photoshop/&amp;title=Creating+A+Tilt-Shift+Effect+Using+Photoshop&amp;body=%0AA%20Tilt-Shift%20effect%20on%20your%20image%20gives%20it%20the%20impression%20that%20the%20subject%20is%20actually%20a%20scale%20model.%20It%20does%20this%20by%20dramatically%20simulating%20a%20shallow%20Depth%20of%20Field%20along%20with%20an%20increase%20in%20the%20color%20saturation.%0A%0ATo%20get%20the%20best%20effect%2C%20it%E2%80%99s%20advisable%20to%20use%20an%20image%20that%20is%20looking%20down%20on%20yo" rel="nofollow" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://maddisondesigns.com/2010/02/creating-a-tilt-shift-effect-using-photoshop/&amp;title=Creating+A+Tilt-Shift+Effect+Using+Photoshop" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://maddisondesigns.com/2010/02/creating-a-tilt-shift-effect-using-photoshop/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://maddisondesigns.com/2010/02/creating-a-tilt-shift-effect-using-photoshop/&amp;title=Creating+A+Tilt-Shift+Effect+Using+Photoshop" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://maddisondesigns.com/2010/02/creating-a-tilt-shift-effect-using-photoshop/&amp;title=Creating+A+Tilt-Shift+Effect+Using+Photoshop&amp;body=%0AA%20Tilt-Shift%20effect%20on%20your%20image%20gives%20it%20the%20impression%20that%20the%20subject%20is%20actually%20a%20scale%20model.%20It%20does%20this%20by%20dramatically%20simulating%20a%20shallow%20Depth%20of%20Field%20along%20with%20an%20increase%20in%20the%20color%20saturation.%0A%0ATo%20get%20the%20best%20effect%2C%20it%E2%80%99s%20advisable%20to%20use%20an%20image%20that%20is%20looking%20down%20on%20yo" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://maddisondesigns.com/2010/02/creating-a-tilt-shift-effect-using-photoshop/&amp;t=Creating+A+Tilt-Shift+Effect+Using+Photoshop" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://maddisondesigns.com/2010/02/creating-a-tilt-shift-effect-using-photoshop/&amp;title=Creating+A+Tilt-Shift+Effect+Using+Photoshop&amp;summary=%0AA%20Tilt-Shift%20effect%20on%20your%20image%20gives%20it%20the%20impression%20that%20the%20subject%20is%20actually%20a%20scale%20model.%20It%20does%20this%20by%20dramatically%20simulating%20a%20shallow%20Depth%20of%20Field%20along%20with%20an%20increase%20in%20the%20color%20saturation.%0A%0ATo%20get%20the%20best%20effect%2C%20it%E2%80%99s%20advisable%20to%20use%20an%20image%20that%20is%20looking%20down%20on%20yo&amp;source=Maddison Designs" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2010/02/creating-a-tilt-shift-effect-using-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freebie &#8211; iTunes Visualiser iPhone Wallpapers</title>
		<link>http://maddisondesigns.com/2010/01/freebie-itunes-visualiser-iphone-wallpapers/</link>
		<comments>http://maddisondesigns.com/2010/01/freebie-itunes-visualiser-iphone-wallpapers/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 04:34:48 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wallpapers]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Visualiser]]></category>
		<category><![CDATA[Visualizer]]></category>

		<guid isPermaLink="false">http://www.maddisondesigns.com/blog/?p=716</guid>
		<description><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-744 aligncenter" title="img_freebie-itunes-visualiser-iphone-wallpapers" src="http://www.maddisondesigns.com/blog/wp-content/uploads/2010/01/img_freebie-itunes-visualiser-iphone-wallpapers.jpg" alt="img_freebie-itunes-visualiser-iphone-wallpapers" width="600" height="150" /></p>
What better way to start off the New Year than with some freebie iPhone Wallpaper. These freebie iPhone wallpapers feature the iTunes visualiser in all it's glory.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-744 aligncenter" title="img_freebie-itunes-visualiser-iphone-wallpapers" src="http://maddisondesigns.com/wp-content/uploads/2010/01/img_freebie-itunes-visualiser-iphone-wallpapers.jpg" alt="img_freebie-itunes-visualiser-iphone-wallpapers" width="600" height="150" /></p>
<p>What better way to start off the New Year than with some freebie iPhone Wallpaper.</p>
<p>I love the iTunes Visualiser. I could sit and watch it for hours. It certainly beats the hell out of Windows Media Player&#8217;s &#8220;Bars &amp; Waves&#8221;. These freebie iPhone wallpapers feature the iTunes visualiser in all it&#8217;s glory.<span id="more-716"></span> Just think of it as some New Years fireworks for your iPhone <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>You can download them individually below or as <a title="iTunes Visualiser iPhone Wallpapers" href="http://maddisondesigns.com/wp-content/uploads/2010/01/iTunesVisualiser-iPhoneWallpapers.zip">one complete zip file</a> (936KB).</p>
<p>If you like em, feel free to leave a comment and let me know <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p style="text-align: center;"><img title="iTunes visualiser 01" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-01.jpg" alt="iTunes visualiser 01" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 02" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-02.jpg" alt="iTunes visualiser 02" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 03" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-03.jpg" alt="iTunes visualiser 03" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 04" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-04.jpg" alt="iTunes visualiser 04" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 05" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-05.jpg" alt="iTunes visualiser 05" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 06" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-06.jpg" alt="iTunes visualiser 06" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 07" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-07.jpg" alt="iTunes visualiser 07" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 08" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-08.jpg" alt="iTunes visualiser 08" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 09" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-09.jpg" alt="iTunes visualiser 09" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 10" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-10.jpg" alt="iTunes visualiser 10" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 11" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-11.jpg" alt="iTunes visualiser 11" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 12" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-12.jpg" alt="iTunes visualiser 12" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 13" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-13.jpg" alt="iTunes visualiser 13" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 14" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-14.jpg" alt="iTunes visualiser 14" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 15" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-15.jpg" alt="iTunes visualiser 15" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 16" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-16.jpg" alt="iTunes visualiser 16" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 17" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-17.jpg" alt="iTunes visualiser 17" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 18" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-18.jpg" alt="iTunes visualiser 18" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 19" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-19.jpg" alt="iTunes visualiser 19" /></p>
<p style="text-align: center;"><img title="iTunes visualiser 20" src="http://maddisondesigns.com/wp-content/uploads/2010/01/itunes-visualiser-20.jpg" alt="iTunes visualiser 20" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Freebie+-+iTunes+Visualiser+iPhone+Wallpapers+-+http://bit.ly/bgJHE3&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://maddisondesigns.com/2010/01/freebie-itunes-visualiser-iphone-wallpapers/&amp;title=Freebie+-+iTunes+Visualiser+iPhone+Wallpapers" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://maddisondesigns.com/2010/01/freebie-itunes-visualiser-iphone-wallpapers/&amp;title=Freebie+-+iTunes+Visualiser+iPhone+Wallpapers" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://maddisondesigns.com/2010/01/freebie-itunes-visualiser-iphone-wallpapers/&amp;title=Freebie+-+iTunes+Visualiser+iPhone+Wallpapers&amp;body=%0AWhat%20better%20way%20to%20start%20off%20the%20New%20Year%20than%20with%20some%20freebie%20iPhone%20Wallpaper.%20These%20freebie%20iPhone%20wallpapers%20feature%20the%20iTunes%20visualiser%20in%20all%20it%27s%20glory." rel="nofollow" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://maddisondesigns.com/2010/01/freebie-itunes-visualiser-iphone-wallpapers/&amp;title=Freebie+-+iTunes+Visualiser+iPhone+Wallpapers" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://maddisondesigns.com/2010/01/freebie-itunes-visualiser-iphone-wallpapers/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://maddisondesigns.com/2010/01/freebie-itunes-visualiser-iphone-wallpapers/&amp;title=Freebie+-+iTunes+Visualiser+iPhone+Wallpapers" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://maddisondesigns.com/2010/01/freebie-itunes-visualiser-iphone-wallpapers/&amp;title=Freebie+-+iTunes+Visualiser+iPhone+Wallpapers&amp;body=%0AWhat%20better%20way%20to%20start%20off%20the%20New%20Year%20than%20with%20some%20freebie%20iPhone%20Wallpaper.%20These%20freebie%20iPhone%20wallpapers%20feature%20the%20iTunes%20visualiser%20in%20all%20it%27s%20glory." rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://maddisondesigns.com/2010/01/freebie-itunes-visualiser-iphone-wallpapers/&amp;t=Freebie+-+iTunes+Visualiser+iPhone+Wallpapers" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://maddisondesigns.com/2010/01/freebie-itunes-visualiser-iphone-wallpapers/&amp;title=Freebie+-+iTunes+Visualiser+iPhone+Wallpapers&amp;summary=%0AWhat%20better%20way%20to%20start%20off%20the%20New%20Year%20than%20with%20some%20freebie%20iPhone%20Wallpaper.%20These%20freebie%20iPhone%20wallpapers%20feature%20the%20iTunes%20visualiser%20in%20all%20it%27s%20glory.&amp;source=Maddison Designs" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2010/01/freebie-itunes-visualiser-iphone-wallpapers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My Windows 7 Installation Experience</title>
		<link>http://maddisondesigns.com/2009/11/my-windows-7-installation-experience/</link>
		<comments>http://maddisondesigns.com/2009/11/my-windows-7-installation-experience/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 13:00:53 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[#VistaSucks]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Win7]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.maddisondesigns.com/blog/?p=676</guid>
		<description><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-691 aligncenter" title="img_windows-7-experience" src="http://www.maddisondesigns.com/blog/wp-content/uploads/2009/11/img_windows-7-experience.jpg" alt="img_windows-7-experience" width="600" height="150" /></p>
Unless you've been hiding under a rock, you would've no doubt heard that Microsoft Windows 7 was recently released to the retail market, on October 22. If you know me even the slightest, you'll know that I've been hanging out for the Win7 release purely so that I could finally rid myself of Windows Vista.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-691 aligncenter" title="img_windows-7-experience" src="http://maddisondesigns.com/wp-content/uploads/2009/11/img_windows-7-experience.jpg" alt="img_windows-7-experience" width="600" height="150" /></p>
<p>Unless you&#8217;ve been hiding under a rock, you would&#8217;ve no doubt heard that <a title="Microsoft Windows 7" href="http://www.microsoft.com/windows/windows-7">Microsoft Windows 7</a> was recently released to the retail market, on October 22. If you know me even the slightest, you&#8217;ll know that I&#8217;ve been hanging out for the Win7 release purely so that I could finally rid myself of Windows Vista. <span id="more-676"></span>Well, the day after the release I purchased a copy of <a title="Windows 7 version comparisons" href="http://windows.microsoft.com/en-AU/windows7/products/compare">Windows 7 Home Premium</a> 64bit.</p>
<p>Overall, the installation went extremely smooth. Being a bit of a fanatic, I decided to perform a clean install rather than simply upgrading my existing Vista build. I wanted to make damn sure that there weren&#8217;t any traces of Vista left on my system. <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>The Win 7 OS install is extremely fast, even compared to Windows XP. It took approximately 30 mins from the time I first booted up using the setup disk to finally booting into the installed Operating System. This also included performing a Hard Disk Format during the installation process. The install is much like other Window&#8217;s installs, in that you only have a few simple questions to answer during the process.</p>
<p>First thing after completing the install was to check for and install any Windows Updates. After that it was time to fire up Internet Explorer and use it for the only thing it&#8217;s good for, to download Firefox. Once Firefox was installed, the next priority of course was to install Seesmic Desktop, so I could start tweeting again.</p>
<p>After completing these two very important tasks, the next step was to start re-installing all my applications (the only downside to performing a clean install, as opposed to an upgrade). All my important data was also backed up on a spare 500GB <a title="SATA definition on Wikipedia" href="http://en.wikipedia.org/wiki/Sata">SATA</a> Hard Disk that was connected to my machine via an <a title="eSATA definition on Wikipedia" href="http://en.wikipedia.org/wiki/ESATA#External_SATA">eSATA</a> connection. It was just a simple matter then of copying from one drive to another.</p>
<p>The only hiccups I had during the install was with iTunes &amp; my iPhone. (not sure if this is ironic or not <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  ) My PC is fairly new as I purchased a new one earlier in the year. When I purchased it, they pre-installed Windows Vista on it. If you&#8217;ve ever looked at the Windows Vista/Win7 file structure, you&#8217;ll know that your &#8220;std&#8221; Documents/Images/Music folders (among others) are stored in the <strong>c:\User\&lt;username&gt;</strong> folder. On my new Win7 build, this folder is <strong>c:\User\Anthony</strong>. On my old Vista build, they had apparently set it up with a username of &#8220;User&#8221;, so the folder structure was <strong>c:\User\User</strong>. The first problem I encountered was when I copied over all my music. iTunes could no longer find the files. I could&#8217;ve simply reimported all the music from the new location but I didn&#8217;t want to lose all my song ratings. Instead, I needed to actually rebuild my iTunes library. To do this, I needed to edit the Music Library XML file (&#8220;<strong>iTunes Music Library.xml</strong>&#8220;). Each song tag within the XML file had a key specifying the location of the physical file. There was also a key up the very top of the file, specifying the location of the music folder. I needed to make a global search &amp; replace that replaced the old file location with the new file location. After performing the global search/replace I copied this file to my Desktop (or any other folder will suffice). I then deleted the &#8220;<strong>iTunes Library.itl</strong>&#8221; file. Once this is done, you start up iTunes and select <strong>File &gt; Library &gt; Import Playlist</strong>. When prompted, navigate to the folder containing the <strong>iTunes Music Library.xml</strong> and select it. iTunes will then start to recreate your Library, including all your Star Ratings and play count data.</p>
<p>The other problem I had was when I had to resync my iPhone to this new build. I was prompted about whether or not I wanted to copy all the applications from my iPhone, across to this new workstation. Since the apps on the iPhone were the lastest Sync, I said yes. What it did though instead, was to <strong>delete</strong> all the apps from the iPhone! Needless to say, I wasn&#8217;t very impressed. Unfortunately, there is no way to simple way to re-download all your previous purchases. I had to manually find all the applications within the iTunes App Store and then re-download them again individually. Quite a time consuming process and one which Apple should rectify, IMHO.</p>
<p>After finally resolving these two issues, it was then simply a matter of reinstalling the rest of my applications. Again, another time consuming process. Once I was happy that everything was working properly and all my applications and data was restored, I then used an application called <a title="Macrium Reflect website" href="http://macrium.com">Macrium Reflect</a> to create an &#8220;image&#8221; of my hard drive. This effectively takes a &#8220;snapshot&#8221; or backup of your hard drive. Very useful if you need to restore your computer due to corruption or hard drive failure.</p>
<p>Overall, the install went very smoothly, apart from a couple of little hiccups with iTunes. Windows 7 in general is a <strong>HUGE</strong> improvement over Vista. As mentioned in a <a title="13 Reasons Why Vista Is Crap" href="http://www.maddisondesigns.com/blog/2009/07/13-reasons-why-vista-is-crap">previous post about why Windows Vista sucks</a>, previously my workstation took approximately 10 minutes to bootup (including loading all the &#8220;startup&#8221; applications such as Outlook, Windows Live Messegner, Skype etc.etc..). Under Windows 7, loading exactly the same applications, the Bootup process has dropped to approximately 4 minutes! Worth the upgrade alone! There are also a significant number of Vista &#8220;features&#8221; that have been fixed.</p>
<p>I find that applications are also considerably more stable as well. For example, to keep track of my income/expenses for my business, I use Quickbooks. The Australian version of this app is not supported under a 64bit OS. Previously I didn&#8217;t have to worry, but when I moved to 64bit Vista earlier in the year, I had all sorts of issues and the application was becoming almost unusable as it was constantly crashing. Even when set to &#8220;XP Compatibility mode&#8221;. Under Win7, the application has been working remarkably stable and *touch wood*, hasn&#8217;t crashed once. Under Vista I would also constantly see applications displaying &#8220;Not responding&#8221; in their Title Bar. With Win7, I still see it occasionally, but nowhere near the same sort of frequency. If you&#8217;re currently on Vista, then I&#8217;d highly recommend the upgrade. The speed improvements, improved memory management and overall stability are definately worth it.</p>
<p>Have you upgraded to Windows 7? Let me know if you have, I&#8217;d be interested to hear how your installation went.   <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=My+Windows+7+Installation+Experience+-+http://bit.ly/a54or0&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://maddisondesigns.com/2009/11/my-windows-7-installation-experience/&amp;title=My+Windows+7+Installation+Experience" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://maddisondesigns.com/2009/11/my-windows-7-installation-experience/&amp;title=My+Windows+7+Installation+Experience" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://maddisondesigns.com/2009/11/my-windows-7-installation-experience/&amp;title=My+Windows+7+Installation+Experience&amp;body=%0AUnless%20you%27ve%20been%20hiding%20under%20a%20rock%2C%20you%20would%27ve%20no%20doubt%20heard%20that%20Microsoft%20Windows%207%20was%20recently%20released%20to%20the%20retail%20market%2C%20on%20October%2022.%20If%20you%20know%20me%20even%20the%20slightest%2C%20you%27ll%20know%20that%20I%27ve%20been%20hanging%20out%20for%20the%20Win7%20release%20purely%20so%20that%20I%20could%20finally%20rid%20myself%20of%20Windows%20Vista." rel="nofollow" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://maddisondesigns.com/2009/11/my-windows-7-installation-experience/&amp;title=My+Windows+7+Installation+Experience" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://maddisondesigns.com/2009/11/my-windows-7-installation-experience/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://maddisondesigns.com/2009/11/my-windows-7-installation-experience/&amp;title=My+Windows+7+Installation+Experience" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://maddisondesigns.com/2009/11/my-windows-7-installation-experience/&amp;title=My+Windows+7+Installation+Experience&amp;body=%0AUnless%20you%27ve%20been%20hiding%20under%20a%20rock%2C%20you%20would%27ve%20no%20doubt%20heard%20that%20Microsoft%20Windows%207%20was%20recently%20released%20to%20the%20retail%20market%2C%20on%20October%2022.%20If%20you%20know%20me%20even%20the%20slightest%2C%20you%27ll%20know%20that%20I%27ve%20been%20hanging%20out%20for%20the%20Win7%20release%20purely%20so%20that%20I%20could%20finally%20rid%20myself%20of%20Windows%20Vista." rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://maddisondesigns.com/2009/11/my-windows-7-installation-experience/&amp;t=My+Windows+7+Installation+Experience" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://maddisondesigns.com/2009/11/my-windows-7-installation-experience/&amp;title=My+Windows+7+Installation+Experience&amp;summary=%0AUnless%20you%27ve%20been%20hiding%20under%20a%20rock%2C%20you%20would%27ve%20no%20doubt%20heard%20that%20Microsoft%20Windows%207%20was%20recently%20released%20to%20the%20retail%20market%2C%20on%20October%2022.%20If%20you%20know%20me%20even%20the%20slightest%2C%20you%27ll%20know%20that%20I%27ve%20been%20hanging%20out%20for%20the%20Win7%20release%20purely%20so%20that%20I%20could%20finally%20rid%20myself%20of%20Windows%20Vista.&amp;source=Maddison Designs" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2009/11/my-windows-7-installation-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
