<?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>elliotcondon designMelbourne Freelance Web + Graphic Designer/Coder | Elliot Condon</title>
	<atom:link href="http://www.elliotcondon.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.elliotcondon.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 08 Mar 2010 06:40:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery Concept: 3D Z-Index Environment</title>
		<link>http://www.elliotcondon.com/jquery/jquery-concept-3d-z-index-environment/</link>
		<comments>http://www.elliotcondon.com/jquery/jquery-concept-3d-z-index-environment/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 08:12:07 +0000</pubDate>
		<dc:creator>Elliot Condon</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[concept]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[horizontal]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[pan]]></category>
		<category><![CDATA[scroll]]></category>
		<category><![CDATA[z-index]]></category>

		<guid isPermaLink="false">http://www.elliotcondon.com/?p=1019</guid>
		<description><![CDATA[An experimental Image Based 3D jQuery Concept ]]></description>
			<content:encoded><![CDATA[<p>Hey Guys, I was a little bit bored this afternoon so I put together a cool little 3D jQuery Environment. It uses:</p>
<ul>
<li>1 jpeg image chopped into 3 layers. (The background layer is the original image)</li>
<li>some simple jQuery code to determine where your mouse is and then move the images left or right.</li>
</ul>
<p><iframe src="http://concepts.elliotcondon.com/jquery/z-index-environment/" height="389" width="600"> &amp;amp;amp;lt;p&amp;amp;amp;gt;Your browser does not support iframes.&amp;amp;amp;lt;/p&amp;amp;amp;gt; </iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elliotcondon.com/jquery/jquery-concept-3d-z-index-environment/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery Image Loader Tutorial: Load IMG 1 by 1</title>
		<link>http://www.elliotcondon.com/tutorial-blog/jquery-image-loader-tutorial-load-img-1-by-1/</link>
		<comments>http://www.elliotcondon.com/tutorial-blog/jquery-image-loader-tutorial-load-img-1-by-1/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 23:56:06 +0000</pubDate>
		<dc:creator>Elliot Condon</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[loader]]></category>
		<category><![CDATA[lodaing]]></category>
		<category><![CDATA[one by one]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.elliotcondon.com/?p=982</guid>
		<description><![CDATA[When creating an HTML + CSS + Javascript gallery, you need to load the images 1 at a time. Otherwise the user will be waiting for ever until all the images have loaded wasting time and bandwidth. This tutorial will walk you through creating a jquery image loader to use in a gallery.]]></description>
			<content:encoded><![CDATA[<h2>The Basics</h2>
<p>We are going to create a jquery + html + css image loader. This means, the browser will load the first image, then the next and so on. Its actually quite simple and can make the viewing experience of an html gallery a lot less frustrating.</p>
<h3>How does it work</h3>
<p>Instead fo creating &lt;img&gt; tags, we will create &lt;div&gt; tags holding the image info like src and alt. Then we will use jQuery to turn the div into an img 1 by 1. Lets get started.</p>
<h3>HTML Markup</h3>
<pre class="brush:php">&lt;div class="loading"&gt;&lt;/div&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;div id="1" src="my-image1.jpg" class="loadable-image" alt="text"&gt;&lt;/div&gt;&lt;/li&gt;
    &lt;li&gt;&lt;div id="2" src="my-image2.jpg" class="loadable-image" alt="text"&gt;&lt;/div&gt;&lt;/li&gt;
    &lt;li&gt;&lt;div id="3" src="my-image3.jpg" class="loadable-image" alt="text"&gt;&lt;/div&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<h3>CSS Markup</h3>
<pre class="brush:php">.loading
{
    width:16px;
    height:16px;
    padding:6px;
    background:#000 url(images/ajax-loader.gif) 50% 50% no-repeat;
    position:absolute;
    z-index:99;
    top:50%;
    left:50%;
    margin-left:-10px;
    margin-top:-10px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}
ul
{
    padding:0px;
    margin:0px;
    list-style:none;
}
ul li
{
   float:left;
   padding:0px 20px 20px 0px;
}</pre>
<h3>Javascript / jQuery</h3>
<pre class="brush:javascript">$(document).ready(function(){
    // hide all image divs
    $('.loadable-image').hide();

    // load first image
    loadNextImage();
});

var imageCounter = 1;

function loadNextImage()
{
   var div = $('.loadable-polaroid#'+imageCounter);
   if(div.length){$('.loading').show();}
   var img = '&lt;img src="'+div.attr('src')+'" alt="'+div.attr('alt')+'"&gt;';
   var parent = div.parent();
   parent.html(img);
   parent.find('img').load(function(){
       // you might be able to use $(this) instead
       parent.find('img').show();
       $('.loading').hide();
       imageCounter++;
       loadNextImage();
   });
}</pre>
<h3>How to make it better</h3>
<ul>
<li>You could create a  loop ( javascript or php) on the images to dynamically assign them id&#8217;s</li>
</ul>
<p>I hope you find this code useful. Its really simple and works extremely well. If there are any problems with the code I have posted please let me know and I will fix it ASAP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elliotcondon.com/tutorial-blog/jquery-image-loader-tutorial-load-img-1-by-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery / Javascript search and remove string for Dollar sign, Bracket &amp; other special characters</title>
		<link>http://www.elliotcondon.com/tutorial-blog/jquery-javascript-search-for-dollar-sign-bracket-other-special-characters/</link>
		<comments>http://www.elliotcondon.com/tutorial-blog/jquery-javascript-search-for-dollar-sign-bracket-other-special-characters/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 01:46:08 +0000</pubDate>
		<dc:creator>Elliot Condon</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[bracket]]></category>
		<category><![CDATA[dollar sign]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[replace]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[special character]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://www.elliotcondon.com/?p=974</guid>
		<description><![CDATA[You cant search a string for special characters like normal character!]]></description>
			<content:encoded><![CDATA[<p>Today I had to write some code to search for a &#8220;(&#8221; in a string, and then remove it and anything past it. This seamed simple, just use the javascript search function but it DIDNT WORK!</p>
<p>After a google search I luckily found that you have to cancel the special charcter with &#8220;\\&#8221;  so you can use it as a normal string.</p>
<pre>var myText = "I am a the good text ( I am the text you want to get rid of )";
var stopNumber = myText.search('\\(');
var goodText = myText.substr(0,stopNumber));
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.elliotcondon.com/tutorial-blog/jquery-javascript-search-for-dollar-sign-bracket-other-special-characters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Complete guide of jQuery &amp; HTML Select Options: Editing and Manipulating Selected and Values</title>
		<link>http://www.elliotcondon.com/tutorial-blog/complete-guide-of-jquery-html-select-options-editing-and-manipulating-selected-and-values/</link>
		<comments>http://www.elliotcondon.com/tutorial-blog/complete-guide-of-jquery-html-select-options-editing-and-manipulating-selected-and-values/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 22:48:59 +0000</pubDate>
		<dc:creator>Elliot Condon</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[drop down list]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[manipulate]]></category>
		<category><![CDATA[option]]></category>
		<category><![CDATA[select]]></category>
		<category><![CDATA[selected]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://www.elliotcondon.com/?p=949</guid>
		<description><![CDATA[A tutorial showing how to manipulate a HTML Select drop down list with jQuery. This tutorial will cover retrieving values and even setting values of HTML element.]]></description>
			<content:encoded><![CDATA[<h1>jQuery and Option Inputs</h1>
<p>The input type &#8220;option&#8221; is a drop down list. At some time you may need to find the value of the current or new selected value, you may also need to change the selected value. This tutorial is split up into small sections so just find the code your looking for and thank me later.</p>
<p>This is the basic structure of a Select Option Html tag.</p>
<pre>&lt;select&gt;
 &lt;option value="volvo"&gt;Volvo&lt;/option&gt;
 &lt;option value="saab"&gt;Saab&lt;/option&gt;
 &lt;option value="mercedes"&gt;Mercedes&lt;/option&gt;
 &lt;option value="audi"&gt;Audi&lt;/option&gt;
&lt;/select&gt;</pre>
<h3>Getting selected Value</h3>
<p>[sourcecode language="javascript"]<br />
$(&#8217;select&#8217;).attr(&#8220;value&#8221;);<br />
[/sourcecode]</p>
<h3>Getting selected Value on change</h3>
<p>[sourcecode language="javascript"]<br />
$(&#8217;select&#8217;).change(function(){<br />
alert($(this).attr(&#8220;value&#8221;));<br />
});<br />
[/sourcecode]</p>
<h3>Getting selected Text on change</h3>
<p>[sourcecode language="javascript"]<br />
$(&#8217;select&#8217;).change(function(){<br />
alert($(&#8217;select :selected&#8217;).text());<br />
});<br />
[/sourcecode]</p>
<h3>Changing Selected Option</h3>
<p>This Code will find the option with a value of &#8220;audi&#8221; and select is. The code loops through the Select&#8217;s children (option tags) untill it finds a child with a curtain attribute. Once a match is found, it then gives the option the selected attribute.</p>
<p>[sourcecode language="javascript"]<br />
$(&#8217;select option&#8217;).each(function(){<br />
if($(this).attr(&#8220;value&#8221;) ==&#8221;audi&#8221;)<br />
{<br />
$(this).attr(&#8217;selected&#8217;,&#8217;selected&#8217;);<br />
}<br />
});<br />
[/sourcecode]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elliotcondon.com/tutorial-blog/complete-guide-of-jquery-html-select-options-editing-and-manipulating-selected-and-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Photography based Polaroid Gallery Theme for WordPress</title>
		<link>http://www.elliotcondon.com/wordpress/new-photography-based-polaroid-gallery-theme-for-wordpress/</link>
		<comments>http://www.elliotcondon.com/wordpress/new-photography-based-polaroid-gallery-theme-for-wordpress/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 11:29:01 +0000</pubDate>
		<dc:creator>Elliot Condon</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[artist]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[photographer]]></category>
		<category><![CDATA[polaroid]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.elliotcondon.com/?p=939</guid>
		<description><![CDATA[A new theme by eThemes created especially for Photographers. This theme replicates looking down onto a table and viewing photos manually. This hand touched feel is complemented by a new age 'mod-ern' design.]]></description>
			<content:encoded><![CDATA[<h2>Crisp Gallery is Done, now onto Polaroid Gallery</h2>
<p>After the completion of eTheme&#8217;s Crisp Gallery, I have already started on a new WordPress theme called Polaroid Gallery. This Theme will improve on the Previous by adding pre made styles with the ability to still customise colours and uses the new WordPress 2.9 built in Image edit and crop tool.</p>
<h3>Heres some Screenshots</h3>
<div id="attachment_940" class="wp-caption alignnone" style="width: 610px"><img class="size-full wp-image-940" title="new-wordpress-polaroid-gallery-theme-for-photographers-2" src="http://www.elliotcondon.com/wp-content/uploads/2010/01/new-wordpress-polaroid-gallery-theme-for-photographers-2.jpg" alt="new-wordpress-polaroid-gallery-theme-for-photographers-2" width="600" height="358" /><p class="wp-caption-text">Beautiful Front page, all can be customised</p></div>
<div id="attachment_942" class="wp-caption alignnone" style="width: 610px"><img class="size-full wp-image-942" title="new-wordpress-polaroid-gallery-theme-for-photographers-backend" src="http://www.elliotcondon.com/wp-content/uploads/2010/01/new-wordpress-polaroid-gallery-theme-for-photographers-backend.jpg" alt="new-wordpress-polaroid-gallery-theme-for-photographers-backend" width="600" height="358" /><p class="wp-caption-text">The Theme Customises WordPress to make your life easier!</p></div>
<div id="attachment_941" class="wp-caption alignnone" style="width: 610px"><img class="size-full wp-image-941" title="new-wordpress-polaroid-gallery-theme-for-photographers" src="http://www.elliotcondon.com/wp-content/uploads/2010/01/new-wordpress-polaroid-gallery-theme-for-photographers.jpg" alt="new-wordpress-polaroid-gallery-theme-for-photographers" width="600" height="358" /><p class="wp-caption-text">Gallery pages randomly layout images using jQuery and CSS3</p></div>
<h3>I want it now!</h3>
<p>Okay okay, I hear you. Polaroid Gallery will on the market in the next 2 &#8211; 4 weeks. For now, please visit <a href="http://ethemes.com.au/crisp-gallery/">http://ethemes.com.au/crisp-gallery/</a> to view the Crisp Gallery WordPress theme for Photographers and Artist.</p>
<p>Thanks for viewing, I hope your interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elliotcondon.com/wordpress/new-photography-based-polaroid-gallery-theme-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New art &amp; Photography Portfolio &#124; Crisp Gallery WordPress Theme</title>
		<link>http://www.elliotcondon.com/wordpress/new-art-photography-portfolio-crisp-gallery-wordpress-theme/</link>
		<comments>http://www.elliotcondon.com/wordpress/new-art-photography-portfolio-crisp-gallery-wordpress-theme/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 06:32:46 +0000</pubDate>
		<dc:creator>Elliot Condon</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[admin section]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[cheap]]></category>
		<category><![CDATA[gallery management]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[photographer]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[powerful]]></category>
		<category><![CDATA[video demo]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.elliotcondon.com/?p=917</guid>
		<description><![CDATA[Today is the launch of eTheme's first WordPress theme Crisp Gallery. This theme is the perfect solution for any artist or photographer with a small budget but wanting a sexy and professional website.]]></description>
			<content:encoded><![CDATA[<p><a href="http://ethemes.elliotcondon.com/crisp-gallery/"><img class="alignnone size-full wp-image-921" title="crisp-gallery-theme" src="http://www.elliotcondon.com/wp-content/uploads/2010/01/crisp-gallery-theme.jpg" alt="" width="600" height="300" /></a></p>
<p>Today is the launch of eTheme&#8217;s first WordPress theme. The theme is title Crisp Gallery and it offers a simple, powerful and interactive display of images. The theme is perfect for any artist or photographer as it has been created to not only look and work great but also make the admin section of WordPress a friendlier place.</p>
<p>View the<a href="http://ethemes.com.au/crisp-gallery/"> Crisp Gallery WordPress theme here</a>.</p>
<p>The theme removes all unnecessary menu items and changes some editing components to make gallery management a breeze. The latest version of the theme features more components, smarter and more efficient code and more customisable items. These new features are not visible in the video demo but are in the theme for sale.</p>
<p>The theme is quite cheap. You download it with the safety of paypal for only $50!</p>
<p>View the<a href="http://ethemes.com.au/crisp-gallery"> Crisp Gallery WordPress theme here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elliotcondon.com/wordpress/new-art-photography-portfolio-crisp-gallery-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video Demo &#124; Artist &amp; photography WordPress Website Theme Crisp Galery by eThemes</title>
		<link>http://www.elliotcondon.com/wordpress/video-demo-artist-photography-wordpress-website-theme-crisp-galery-by-ethemes/</link>
		<comments>http://www.elliotcondon.com/wordpress/video-demo-artist-photography-wordpress-website-theme-crisp-galery-by-ethemes/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 04:27:17 +0000</pubDate>
		<dc:creator>Elliot Condon</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[artist]]></category>
		<category><![CDATA[crisp gallery]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[ethemes]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[photographer]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.elliotcondon.com/?p=907</guid>
		<description><![CDATA[A demo Video of the new eThemes Wordpress Website Theme Crisp Gallery. This theme is perfect for the artist or photographer who wants their work to stand out and look professional for a small price.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.elliotcondon.com/wordpress/video-demo-artist-photography-wordpress-website-theme-crisp-galery-by-ethemes/"><em>Click here to view the embedded video.</em></a></p>
<p>I&#8217;ve put together a short video showcasing the new eThemes Crisp Gallery theme. Here you can see the stunning simple design and the ease of using the theme.<span id="more-907"></span></p>
<h3>Purchasing</h3>
<p>This theme is&#8217;nt ready for purchasing just yet so if your interested in buying the theme, please contact me at e@elliotcondon.com to arrange a pre release sale</p>
<h3>Features</h3>
<p>The theme has many great features:</p>
<ul>
<li>Easy to use / manage home page image rotator</li>
<li>Easy to use / manage Galleries</li>
<li>New wordpress page interface</li>
<li>Ability to change the colour scheme in detail</li>
<li>Small file size and  fast loading</li>
</ul>
<h3>Pricing Packages &#8211; for WordPress users</h3>
<ul>
<li>Standard: Theme and Documentation, ability to use 1 Gallery &#8211; $50</li>
<li>Pro: Theme and Documentation, ability to use Multiple Galleries &#8211; $75</li>
</ul>
<h3>Pricing Packages &#8211; for non-WordPress users</h3>
<ul>
<li>Complete Hosted Solution. Sit back and relax whilst your website is created for you. Your Domain will be purchased, your Server space will be purchased and your WordPress software and Theme will be installed for you. &#8211; Standard or Pro Price + $100 per year</li>
</ul>
<h3>Live Demo</h3>
<p>Visit <a href="http://demo.ethemes.com.au/crisp-gallery/">http://demo.ethemes.com.au/crisp-gallery/</a> to see the theme in action.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elliotcondon.com/wordpress/video-demo-artist-photography-wordpress-website-theme-crisp-galery-by-ethemes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beautiful Photography &amp; Artist Online Portfolio Websites by eThemes</title>
		<link>http://www.elliotcondon.com/wordpress/beautiful-photography-artist-online-portfolio-websites-by-ethemes/</link>
		<comments>http://www.elliotcondon.com/wordpress/beautiful-photography-artist-online-portfolio-websites-by-ethemes/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 00:36:23 +0000</pubDate>
		<dc:creator>Elliot Condon</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[artist]]></category>
		<category><![CDATA[beautiful]]></category>
		<category><![CDATA[cheap]]></category>
		<category><![CDATA[eTheme]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[photographer]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.elliotcondon.com/?p=897</guid>
		<description><![CDATA[Are you an Artist or Photographer in need of a portfolio website? Are you looking for a simple and easy way of creating and maintaining your online presence? Do you want to show off your portfolio on a simple, clean and beautiful website? eThemes has the solution!]]></description>
			<content:encoded><![CDATA[<h2>Whats eThemes all about?</h2>
<p>eThemes is a new business offering stunning WordPress themes that not only look good but are easy to setup and maintain. eThemes develop simple and effective step by step options to allow any user (with or without WordPress knowledge) to have great website customisation.</p>
<h3>Who&#8217;s behind eThemes</h3>
<p>I (Elliot Condon) am the designer and developer of and for eThemes. I decided to start this new venture whilst working on a clients portfolio website. I was hacking a pre-made wordpress theme and found the whole WordPress theme to be a mess and I didn&#8217;t understand how any artist would know how to use it. That&#8217;s when I decided to make something for the Artist Community: eThemes. I aim to make a diverse and unique range of portfolio themes with great back-end customising functionality making it simple and easy for any artist to use.</p>
<h3>Can we check out a theme yet?</h3>
<p>eThemes has lauched it&#8217;s first theme: Crisp Gallery.This theme offers a stunning cinematic environment to explore work through. It uses state of the art jQuery technology to load in your images 1 by 1 and a whole lot more.</p>
<p><a href="http://ethemes.com.au/crisp-gallery/">Read more  about crisp gallery here.</a></p>
<p><a href="http://ethemes.elliotcondon.com/crisp-gallery/"><img class="alignnone size-full wp-image-900" title="crisp-gallery-1" src="http://www.elliotcondon.com/wp-content/uploads/2010/01/crisp-gallery-1.jpg" alt="" width="600" height="375" /></a></p>
<h3>So what makes eThemes the best solution for Artists?</h3>
<ul>
<li>eThemes WordPress themes are cheap</li>
<li>They are really easy to use for both the artist and the user</li>
<li>Get found on google quickly with smart SEO</li>
<li>They look great</li>
<li>They work on all browsers / OS</li>
<li>There is detailed documentation to take you through setup and maintenance step by step</li>
<li>eThemes is made for artists by artists</li>
</ul>
<h3>Sounds great! When can i get one?</h3>
<p>eThemes has launched it&#8217;s first theme: Crisp Gallery. Crisp Gallery is a specifically designed wordpress theme for artists and photographers. It features a stylish cinematic content area with jQuery powered image navigation.</p>
<p><a href="http://ethemes.com.au/crisp-gallery/">Read more about crisp gallery here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elliotcondon.com/wordpress/beautiful-photography-artist-online-portfolio-websites-by-ethemes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Best FREE Time / Project / Client management tool for the Freelance designer / developer</title>
		<link>http://www.elliotcondon.com/freelance/best-free-time-project-client-management-tool-for-the-freelance-designer-developer/</link>
		<comments>http://www.elliotcondon.com/freelance/best-free-time-project-client-management-tool-for-the-freelance-designer-developer/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 00:15:44 +0000</pubDate>
		<dc:creator>Elliot Condon</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[tracker]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.elliotcondon.com/?p=883</guid>
		<description><![CDATA[Are you in need of a simple and easy to use solution to tracking your work hours on multiple freelance jobs? I have found the solution! Its called Toggle and it does everything you need and a whole bunch more.]]></description>
			<content:encoded><![CDATA[<h2>Toggle?</h2>
<p>Toggle is unlike most invoice / project management softwares: It is simple, straight forward and for one purpose only. Toggle allows you to manage Projects and Clients and lets you easily record times you have worked on them. It can show the data in graphs and easy to read record tables on its clean and well designed dashboard . You can start recording from your desktop app, pause it on the website and then continue your time counting later from your iphone.</p>
<h3>So who is for?</h3>
<p>Toggle is made  for the standard freelancer who has realized that writing down hours on paper and tallying them up in a .xml file is no longer the way forward in life. Toggle can be used on both Mac and PC (thank you!) and its completely free (for a standard user account). The standard user account is perfect for a single freelancer but if you want a team and want to manage other peoples hours you may have to fork out some money each month. Toggle is designed for people who need to keep track of time but already have a system for invoicing.</p>
<h3>Wrap that all up again?</h3>
<ul>
<li>Its FREE</li>
<li>Track time from your desktop / browser / iphone</li>
<li>It looks great! (which is a huge software factor for me)</li>
<li>it works every time</li>
<li>makes life easier to see when you have worked and total hours for a job</li>
<li>Its FREE</li>
<li>You can add in hours manually if you forget to press the start stop.</li>
</ul>
<h3>Can we see some screen shots?</h3>
<p>Yes you can, below I have got a bunch of random screen grabs of the desktop app and the browser website.</p>
<p><img class="alignnone size-full wp-image-887" title="toggle-screenshot-1" src="http://www.elliotcondon.com/wp-content/uploads/2010/01/toggle-screenshot-1.jpg" alt="" width="600" height="300" /><img class="alignnone size-full wp-image-888" title="toggle-screenshot-2" src="http://www.elliotcondon.com/wp-content/uploads/2010/01/toggle-screenshot-2.jpg" alt="" width="600" height="300" /><img class="alignnone size-full wp-image-889" title="toggle-screenshot-3" src="http://www.elliotcondon.com/wp-content/uploads/2010/01/toggle-screenshot-3.jpg" alt="" width="600" height="300" /></p>
<h3>I&#8217;m sold!</h3>
<p>Great, head over to <a href="http://www.toggl.com">http://www.toggl.com</a> and get yourself an account today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elliotcondon.com/freelance/best-free-time-project-client-management-tool-for-the-freelance-designer-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best WordPress plugin to display post &amp; page thumbnail</title>
		<link>http://www.elliotcondon.com/wordpress/best-wordpress-plugin-to-display-post-page-thumbnail/</link>
		<comments>http://www.elliotcondon.com/wordpress/best-wordpress-plugin-to-display-post-page-thumbnail/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 22:00:45 +0000</pubDate>
		<dc:creator>Elliot Condon</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[image thumbnails]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[thumbnail]]></category>
		<category><![CDATA[thumbnail size]]></category>
		<category><![CDATA[widgets]]></category>
		<category><![CDATA[Wordpress Theme]]></category>

		<guid isPermaLink="false">http://www.elliotcondon.com/?p=787</guid>
		<description><![CDATA[The key to a great blog is to use image thumbnails. There are a few WordPress plugins available but non of them get the job done right... untill now!]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-803" title="best-wordpress-plugin-to-display-post-page-thumbnail" src="http://www.elliotcondon.com/wp-content/uploads/2009/12/best-wordpress-plugin-to-display-post-page-thumbnail.jpg" alt="" width="590" height="300" /></p>
<p>The key to a great blog is to use image thumbnails. There are a few WordPress plugins available but non of them get the job done right&#8230; untill now!<span id="more-787"></span></p>
<h3>Introducing WP Post Thumbnail</h3>
<p>This WordPress plugin doesnt just save and display a thumbnail, its jam packed with features!</p>
<ul>
<li>Create 3 thumbnail sizes to use throughout your website (different sizes for blog and footer etc)</li>
<li>use a jquery jcrop tool to crop your 3 thumbnails just right from 1 original picture (no stuffing around in Photoshop)</li>
<li>WP Post Thumbnail integrates with the Post-Plugin Library and all its widgets (display thumbnails in latest / popular posts widget!)</li>
<li>Call thumbnails from your WordPress theme with ease.</li>
</ul>
<h3>Installing WP Post Thumbnail</h3>
<table border="0" cellspacing="10" cellpadding="0">
<tbody>
<tr>
<td><a href="http://www.elliotcondon.com/wp-content/uploads/2009/12/install-wp-post-thumbnail-step-important.jpg"><img class="alignnone size-full wp-image-792" title="install-wp-post-thumbnail-step-important" src="http://www.elliotcondon.com/wp-content/uploads/2009/12/install-wp-post-thumbnail-step-important.jpg" alt="" width="100" height="100" /></a></td>
<td><strong>IMPORTANT!</strong></p>
<p>Do not search and install this plugin via the WordPress plugin &#8220;Add New&#8221; page. The current version listed on the WordPress database is 1.8. This version is very buggy but they have released a new beta that works perfectly!</td>
</tr>
<tr>
<td><a href="http://www.elliotcondon.com/wp-content/uploads/2009/12/install-wp-post-thumbnail-step-11.jpg"><img class="alignnone size-full wp-image-791" title="install-wp-post-thumbnail-step-1" src="http://www.elliotcondon.com/wp-content/uploads/2009/12/install-wp-post-thumbnail-step-11.jpg" alt="" width="100" height="100" /></a></td>
<td><strong>Step 1: Download</strong></p>
<p>Download the WP Post Thumbnail plugin here: <a href="http://www.seoadsensethemes.com/downloads/wp_post_thumbnail_0_2_beta_2.zip">Download WP Post Thumbnail Plugin</a>. You can also visit the Plugin website <a href="http://www.seoadsensethemes.com/wordpress-wp-post-thumbnail-plugin/">here</a> to read official documentation</td>
</tr>
<tr>
<td><a href="http://www.elliotcondon.com/wp-content/uploads/2009/12/install-wordpress-twittar-step-2.jpg"><img title="install-wordpress-twittar-step-2" src="http://www.elliotcondon.com/wp-content/uploads/2009/12/install-wordpress-twittar-step-2.jpg" alt="" width="100" height="100" /></a></td>
<td><strong>Step 2: Install</strong></p>
<p>Extract the WP-Post-Thumbnail Folder from the .zip and copy the WP-Post-Thumbnail Folder to your plugin folder (wp_root/wp-content/plugins).</td>
</tr>
<tr>
<td><a href="http://www.elliotcondon.com/wp-content/uploads/2009/12/install-wp-post-thumbnail-step-3.jpg"><img class="alignnone size-full wp-image-793" title="install-wp-post-thumbnail-step-3" src="http://www.elliotcondon.com/wp-content/uploads/2009/12/install-wp-post-thumbnail-step-3.jpg" alt="" width="100" height="100" /></a></td>
<td><strong>Step 3: Activate</strong></p>
<p>Login to your WordPress dashboard, then navigate to Plugins » Installed. Scroll down to WP Post Thumbnail and click activate.<strong><br />
</strong></td>
</tr>
</tbody>
</table>
<h3>Defining the 3 Thumbnail sizes</h3>
<p>To edit or update the Thumbnail sizes, click on Settings » WP-Post-Thumbnail. On this screen you can change the 3 thumbnail sizes (If you already have thumbnails, it will automatically re-crop them!). I advise you to name the 3 sizes &#8220;thumb-large&#8221;, &#8220;thumb-medium&#8221; and &#8220;thumb-small&#8221; for ease of use in your theme.</p>
<p><img class="alignnone size-full wp-image-799" title="wp-post-thumbnail-options" src="http://www.elliotcondon.com/wp-content/uploads/2009/12/wp-post-thumbnail-options.jpg" alt="" width="590" height="669" /></p>
<h3>How do you create the thumbnails?</h3>
<p>Either create a new post or edit an old one. The Steps are quite easy:</p>
<ol>
<li>Select your thumbnail size (its good to make thumbnails for all sizes)</li>
<li>Select an image from the library and use jcrop to crop your image<br />
<img class="alignnone size-full wp-image-800" title="wp-post-thumbnail-jcrop" src="http://www.elliotcondon.com/wp-content/uploads/2009/12/wp-post-thumbnail-jcrop.jpg" alt="" width="525" height="466" /></li>
<li>Save your new thumbnail.</li>
</ol>
<h3>So how do i get it to show up in theme?</h3>
<p>Its very easy. Just copy and paste this code into your theme where you want the thumbnail to appear. This code shows the &#8220;thumb-large&#8221; thumbnail and links to the post.</p>
<p>[sourcecode language="php"]<br />
<?php $thumb = $Wppt->get_post_thumbnail($post->ID, &#8216;thumb-large&#8217;);<br />
if ( !empty( $thumb ) ) { ?><br />
<a href="<?php the_permalink() ?>&#8221; title=&#8221;Read the post: <?php the_title(); ?>&#8220;><br />
<img src="<?php echo $thumb['url']; ?>&#8221; title=&#8221;Read the post: <?php the_title(); ?>&#8221; alt=&#8221;<?php the_title(); ?>&#8221; /><br />
</a><br />
<?php } ?><br />
[/sourcecode]</p>
<h3>Conclusion</h3>
<p>WP Post Thumbnail is a great Plugin to display thumbnails for your posts, but what about your pages? I have hacked the plugin to make it usable with pages (this is great for a portfolio). If anyone wants the new code, just leave a comment and I&#8217;ll post a new article on hacking the plugin.</p>
<p>Also I will post an article on how to integrate this plugin with the Post-Plugin Library and its many great widgets. Thanks for reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elliotcondon.com/wordpress/best-wordpress-plugin-to-display-post-page-thumbnail/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
