<?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>Creative Individual Design Blog</title>
	<atom:link href="https://creativeindividual.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>https://creativeindividual.co.uk</link>
	<description>A Place of Inspiration</description>
	<lastBuildDate>Wed, 21 Aug 2019 17:33:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4</generator>
		<item>
		<title>Create a jQuery Tooltip!</title>
		<link>https://creativeindividual.co.uk/2012/11/create-a-jquery-tooltip/</link>
		<comments>https://creativeindividual.co.uk/2012/11/create-a-jquery-tooltip/#comments</comments>
		<pubDate>Sun, 25 Nov 2012 13:40:55 +0000</pubDate>
		<dc:creator>Laura Montgomery</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://creativeindividual.co.uk/?p=361</guid>
		<description><![CDATA[<a href="/2012/11/create-a-jquery-tooltip" title="Create a jQuery Tooltip"><img src="/wp-content/uploads/2012/11/banner.jpg" /></a>

In this article I am going to show you how to create a simple <strong>Tooltip</strong> effect using jQuery. What's great about this method is that it degrades gracefully, so if someone doesn't have Javascript enabled they don't see anything out of place.

The tooltip that we will be creating will appear when we hover over a link. We will use the HTML5 <strong>custom data attribute</strong> (data-*) to hold our information, then use jQuery to dynamically create a container (div) to hold the information within the custom data attribute.

This tutorial assumes that you have some understanding of jQuery but I'll be explaining everything as we go so should be good for beginners as well. You will also need to understand HTML and CSS.]]></description>
			<content:encoded><![CDATA[<p>In this article I am going to show you how to create a simple <strong>Tooltip</strong> effect using <a title="jQuery - Category" href="/category/jquery/">jQuery</a>. What&#8217;s great about this method is that it degrades gracefully, so if someone doesn&#8217;t have Javascript enabled they don&#8217;t see anything out of place.</p>
<p>This tutorial assumes that you have some understanding of jQuery but I&#8217;ll be explaining everything as we go so should be good for beginners as well. You will also need to understand HTML and CSS.</p>
<p>I&#8217;ve included the finished files and a demo so you can see what we are going to achieve.</p>
<h2>The Technique</h2>
<p>The tooltip that we will be creating will appear when we hover over a link. We will use the HTML5 <a title="HTML5 custom data attributes" href="http://dev.w3.org/html5/spec/global-attributes.html#embedding-custom-non-visible-data-with-the-data-*-attributes">custom data attribute</a> (data-*) to hold our information, then use jQuery to dynamically create a container (div) to hold the information within the custom data attribute.</p>
<h2>Tutorial Demo</h2>
<p>Still not sure what we are trying to achieve? Just click the image below to view the demo:</p>
<p><a href="http://creativeindividual.co.uk/wp-content/uploads/2012/tooltip/"><img class="alignnone size-full wp-image-362" title="Create a jQuery Tooltip - Tutorial Demo" src="http://creativeindividual.co.uk/wp-content/uploads/2012/11/preview.jpg" alt="Create a jQuery Tooltip - Tutorial Demo" width="648" height="406" /></a></p>
<div class="view-tutorial-demo"><a title="Create a jQuery Tooltip - Tutorial Demo" href="http://creativeindividual.co.uk/wp-content/uploads/2012/tooltip/">View the Tutorial Demo</a></div>
<h2>The HTML</h2>
<p>OK, first create a new HTML file and insert the usual DOCTYPE, html, head, etc. information. Notice I am using the HTML5 DOCTYPE.</p>
<pre>&lt;!DOCTYPE html&gt;
&lt;html lang="en"&gt;
  &lt;head&gt;
    &lt;meta charset="utf-8" /&gt;
    &lt;title&gt;Tooltip Demo&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;
  &lt;/body&gt;
&lt;/html&gt;</pre>
<p>Add links to your CSS and Tooltip JS files, and create these files. I&#8217;ve used <strong>layout.css</strong> and <strong>tooltip.js</strong> respectively. You will also need to link to a hosted jQuery library or host your own. I personally prefer to link to Google but use whichever option is best for you and your project.</p>
<pre>...
  &lt;head&gt;
    &lt;meta charset="utf-8" /&gt;
    &lt;title&gt;Tooltip Demo&lt;/title&gt;
    &lt;link rel="stylesheet" href="layout.css" type="text/css" /&gt;
    &lt;script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"&gt;&lt;/script&gt;
    &lt;script type="text/javascript" src="tooltip.js"&gt;&lt;/script&gt;
  &lt;/head&gt;
...</pre>
<p>Now, add a link (&lt;a href&#8230;) with all the usual attributes. I am using the hash symbol (#) because this is a test and I don&#8217;t want this link to go anywhere but this script works perfectly with real links.</p>
<pre>...
&lt;body&gt;
  &lt;a href="#" title="My Link Title"&gt;My Link&lt;/a&gt;
&lt;/body&gt;
...</pre>
<p>Finally, add our custom data attribute. For readability I am using <strong>data-tooltip</strong> but feel free to use something which better describes your content.</p>
<pre>...
&lt;body&gt;
  &lt;a href="#" title="My Link Title" data-tooltip="My Tooltip Text"&gt;My Link&lt;/a&gt;
&lt;/body&gt;
...</pre>
<p>And that&#8217;s it for the HTML. Pretty simple right? The CSS is even easier&#8230;</p>
<h2>The CSS</h2>
<p>Our tooltip will have an <strong>ID of tooltip</strong>. This isn&#8217;t obvious from the HTML because this div will be created dynamically by our jQuery script, so just take my word for it for now &#8211; all will become clear in a minute. For our CSS we actually only need to add two styles to <strong>div#tooltip</strong> for the basic tooltip effect, <strong>position</strong> and <strong>z-index</strong>. Add the following to <strong>layout.css</strong>:</p>
<pre>div#tooltip {
  position: absolute;
  z-index: 10;
}</pre>
<p>In the demo (and downloadable files) I&#8217;ve also added some basic styling such as background, color, padding and even box shadow to improve the effect, but I&#8217;ll leave this up to you to style the tooltip to suit your site design.</p>
<h2>The jQuery</h2>
<p>Open up <strong>tooltip.js</strong> and write out the document ready function &#8211; feel free to use the shorter version but for readability I will use the full function.</p>
<pre>$(document).ready(function() {
});</pre>
<p>Next we want to target any element with an attribute of <strong>data-tooltip</strong>, so this will be our selector. The action will be <strong>.hover</strong>.</p>
<pre>$(document).ready(function() {
  $("[data-tooltip]").hover(
    function() {
    }
  );
});</pre>
<p>We first want to create the div which will hold our tooltip information. Remember from above that this will be a div with an ID of tooltip. We will use <strong>.before</strong> to position this div before our link in the DOM. This is why position and z-index are so important in our CSS &#8211; these position the tooltip div visually above our link (and other content) and stops any nasty content jumping from occurring. <em>Note the single quotes used.</em></p>
<pre>$(document).ready(function() {
  $("[data-tooltip]").hover(
    function() {
      $(this).before('&lt;div id="tooltip"&gt;&lt;/div&gt;')
    }
  );
});</pre>
<p>Next we want to get the information from our data attribute and store it in a variable. I have put this variable above the previous line which is good practice, especially in cases where I would be using more than one variable, i.e. keeping them together.</p>
<pre>$(document).ready(function() {
  $("[data-tooltip]").hover(
    function() {
      var tooltip = $(this).attr("data-tooltip");
      $(this).before('&lt;div id="tooltip"&gt;&lt;/div&gt;')
    }
  );
});</pre>
<p>Finally, we want to add the information stored in our variable to our new div. We can use <strong>.text</strong> to achieve this.</p>
<pre>$(document).ready(function() {
  $("[data-tooltip]").hover(
    function() {
      var tooltip = $(this).attr("data-tooltip");
      $(this).before('&lt;div id="tooltip"&gt;&lt;/div&gt;')
      $("div#tooltip").text(tooltip);
    }
  );
});</pre>
<p>If you have any basic knowledge of jQuery you will know that <strong>.hover</strong> also includes <strong>hover off</strong> within the action. Let&#8217;s make use of that now to delete the tooltip div when we move our mouse cursor off the link. We simply need to use <strong>.remove</strong> to achieve this.</p>
<pre>$(document).ready(function() {
  $("[data-tooltip]").hover(
    function() {
      var tooltip = $(this).attr("data-tooltip");
      $(this).before('&lt;div id="tooltip"&gt;&lt;/div&gt;')
      $("div#tooltip").text(tooltip);
    },
    function() {
      $("div#tooltip").remove();
    }
  );
});</pre>
<p>We are almost done. The last part is to get the tooltip div to follow our mouse cursor as it moves around the link. I have used a similar effect in a <a title="Create a Pop-up div in jQuery" href="http://creativeindividual.co.uk/2011/02/create-a-pop-up-div-in-jquery/">previous post</a>. First we want to create two variables which will tell the div how far away from our cursor to move so that we can easily see all of the text.</p>
<pre>$(document).ready(function() {
  var moveLeft = 20;
  var moveDown = 10;
  $("[data-tooltip]").hover(
    ...
  );
});</pre>
<p>The action of the tooltip div moving occurs when we move our mouse cursor around on the link with the data attribute, so this is what we will be targeting with the <strong>.mousemove</strong> action.</p>
<pre>$(document).ready(function() {
  var moveLeft = 20;
  var moveDown = 10;
  $("[data-tooltip]").hover(
    ...
  );
  $("data-tooltip").mousemove(function() {
  });
});</pre>
<p>We then just need to use <strong>.css</strong> on our tooltip div to move it from the <strong>top</strong> and from the <strong>left</strong> &#8211; remember that we used <strong>position: absolute</strong> in our CSS, this is coming into play again.</p>
<pre>$(document).ready(function() {
  var moveLeft = 20;
  var moveDown = 10;
  $("[data-tooltip]").hover(
    ...
  );
  $("data-tooltip").mousemove(function() {
    $("div#tooltip").css('top', e.pageY + moveDown).css('left', e.pageX + moveLeft);
  });
});</pre>
<p>We have one small update to do to our code to finish. Notice the <strong>e</strong> used  - i.e. e.pageY and e.pageX. We simply need to add e between the parenthesis of each of our functions. See the full complete code below:</p>
<pre>$(document).ready(function() {
  var moveLeft = 20;
  var moveDown = 10;
  $("[data-tooltip]").hover(
    function(e) {
      var tooltip = $(this).attr("data-tooltip");
      $(this).before('&lt;div id="tooltip"&gt;&lt;/div&gt;')
      $("div#tooltip").text(tooltip);
    },
    function(e) {
      $("div#tooltip").remove();
    }
  );
  $("[data-tooltip]").mousemove(function(e) {
    $("div#tooltip").css('top', e.pageY + moveDown).css('left', e.pageX + moveLeft);
  });
});</pre>
<p>Load up your HTML page and check out the script in action.</p>
<p><strong>That&#8217;s it!</strong></p>
<p><a href="http://creativeindividual.co.uk/wp-content/uploads/2012/tooltip/"><img class="alignnone size-full wp-image-362" title="Create a jQuery Tooltip - Tutorial Demo" src="http://creativeindividual.co.uk/wp-content/uploads/2012/11/preview.jpg" alt="Create a jQuery Tooltip - Tutorial Demo" width="648" height="406" /></a></p>
<div class="view-tutorial-demo"><a title="Create a jQuery Tooltip - Tutorial Demo" href="http://creativeindividual.co.uk/wp-content/uploads/2012/tooltip/">View the Tutorial Demo</a></div>
<h2>Get The Source Code</h2>
<p>You can download the complete tutorial source code by clicking on the big button below and unzipping the file.</p>
<p><a href="http://creativeindividual.co.uk/wp-content/uploads/2012/tooltip/tooltip.zip"><img class="alignnone size-full wp-image-108" title="Download Source File - jQuery Tutorial - Create a jQuery Tooltip" src="http://creativeindividual.co.uk/wp-content/uploads/2010/11/download-source-file.png" alt="" width="648" height="104" /></a></p>
]]></content:encoded>
			<wfw:commentRss>https://creativeindividual.co.uk/2012/11/create-a-jquery-tooltip/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>jQuery 101 &#8211; Learning the Basics</title>
		<link>https://creativeindividual.co.uk/2012/06/jquery-101-learning-the-basics/</link>
		<comments>https://creativeindividual.co.uk/2012/06/jquery-101-learning-the-basics/#comments</comments>
		<pubDate>Sun, 17 Jun 2012 17:26:52 +0000</pubDate>
		<dc:creator>Laura Montgomery</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://creativeindividual.co.uk/?p=354</guid>
		<description><![CDATA[<a href="/2012/06/jquery-101-learning-the-basics/" title="jQuery 101 - Learning the Basics"><img src="/wp-content/uploads/2010/10/jquery_banner.jpg" /></a>

By now most web designers and developers have a very good understanding of jQuery and its capabilities; for most it is their go to JavaScript library when adding some additional functionality or interactivity to their web pages.

However there are still plenty of people out there who are new to web development and who would like to get started with this great language but don’t know how to.

<em>Well, this one’s for you!</em>

In this tutorial aimed at absolute jQuery beginners you'll learn about:

<ul>
<li>What is jQuery?</li>
<li>Installing the jQuery Library</li>
<li>The Document Ready function</li>
<li>.click() and .hide()</li>
<li>Understanding the Syntax</li>
<li>.toggle()</li>
<li>.slideToggle() and .find()</li>
<li>Animation Speed</li>
<li>.css(), this Selector and Basic Selector Filters</li>
<li>.hasClass(), .addClass(), .removeClass() and if Statements</li>
</ul>

Lots for the absolute beginner to get stuck into and see what the world of jQuery has to offer.]]></description>
			<content:encoded><![CDATA[<p>By now most web designers and developers have a very good understanding of jQuery and its capabilities; for most it is their go to JavaScript library when adding some additional functionality or interactivity to their web pages.</p>
<p>However there are still plenty of people out there who are new to web development and who would like to get started with this great language but don&#8217;t know how to.</p>
<p><em>Well, this one&#8217;s for you!</em></p>
<h2>What is jQuery?</h2>
<p>In essence, jQuery is a powerful JavaScript library which makes life a lot easier for those of us with little (or no) JavaScript knowledge. It allows us to add JavaScript functionality to a web page using much simpler code. jQuery is particularly apt at adding event-handling, transversing, animations or Ajax interactions to a web page.</p>
<p>I don&#8217;t know about you, but that all sounds rather confusing and boring&#8230; But believe me it&#8217;s not! And once you get a basic understanding of jQuery, you&#8217;ll be WOW-ing yourself in no time. And the best way to get this basic understanding is just to get started.</p>
<p><em>Are you ready?</em></p>
<h2>Installing the jQuery Library</h2>
<p>To make use of jQuery you first need to make the script available to your webpage. There are a few options available when adding the jQuery library to your webpage but they basically breakdown into two options:</p>
<ul>
<li>Downloading the latest source file and hosting it on your own website/server.</li>
<li>Linking to hosted files such as those on jQuery&#8217;s own site, on Google&#8217;s Libraries API or a few other hosted options.</li>
</ul>
<p>Personally I almost always opt for linking to files hosted on an external source unless for some reason I am developing without an internet connection, and that pretty much doesn&#8217;t happen to me anymore! So I am going to show you how to implement the hosted option. So break open your favourite text editor and let&#8217;s get started.</p>
<p>Let&#8217;s create the basic HTML page structure first:</p>
<pre>&lt;!DOCTYPE html&gt;
&lt;html&gt;
    &lt;head&gt;
        &lt;title&gt;jQuery 101 - Learning the Basics&lt;/title&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;!-- My page content will go here --&gt;
    &lt;/body&gt;
&lt;/html&gt;</pre>
<p>We are going to link to Google&#8217;s latest (at time of writing) stable copy of jQuery. A quick search of &#8220;google jquery&#8221; should find the page you are looking for but for reference purposes it is:</p>
<p><a title="Google Libraries API" href="https://developers.google.com/speed/libraries/devguide" target="_blank">https://developers.google.com/speed/libraries/devguide</a></p>
<p>Click on the jQuery (not jQuery UI) link in the table of contents. You are looking for the source path which references jquery.min.js. This is the compressed version of the file and will save you quite a bit of loading time &#8211; this is allows a good thing.</p>
<p>Now that we&#8217;ve got our reference, let&#8217;s add it to our page:</p>
<pre>...
&lt;head&gt;
    &lt;title&gt;jQuery 101 - Learning the Basics&lt;/title&gt;
    &lt;script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"&gt;&lt;/script&gt;
&lt;/head&gt;
...</pre>
<p><em>That&#8217;s it! How easy was that?</em></p>
<h2>Your First jQuery Function</h2>
<p>Now that the library is loaded onto our page, let&#8217;s prepare the page for our first jQuery function. Almost all jQuery code that you write will start with this function. It is the Document Ready function and basically it stops jQuery from running until the webpage has finished loading.</p>
<pre>...
&lt;head&gt;
    &lt;title&gt;jQuery 101 - Learning the Basics&lt;/title&gt;
    &lt;script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"&gt;&lt;/script&gt;
    &lt;script type="text/javascript"&gt;
        // This is a JavaScript comment
        // Load the Document Ready function
        $(document).ready(function(){
          // The rest of our jQuery will go in here
        });
    &lt;/script&gt;
&lt;/head&gt;
...</pre>
<p>Now that we have the boring bit done, let&#8217;s see what jQuery can do.</p>
<h2>Your Second jQuery Function</h2>
<p>Let&#8217;s create a paragraph with a link that hides the paragraph when clicked. Really very simple stuff with jQuery.</p>
<p>First let&#8217;s add the paragraph and link between the body tags:</p>
<pre>...
&lt;body&gt;
    &lt;p class="disappear"&gt;
        This paragraph will disappear when you click
        &lt;a href="#" class="make-disappear"&gt;this link&lt;/a&gt;.
    &lt;/p&gt;
&lt;/body&gt;
...</pre>
<p>Now let&#8217;s add our jQuery:</p>
<pre>...
$(document).ready(function(){
    $("a.make-disappear").click(function(){
        $("p.disappear").hide();
    });
});
...</pre>
<p>Save your code as a HTML document (such as index.html) and load the page in your favourite web browser (such as Google Chrome or Internet Explorer). Now click the link to see your script run by hiding the paragraph.</p>
<p><em>Amazing!</em></p>
<div class="view-tutorial-demo"><a title="jQuery 101 - Learning the Basics - Demo" href="http://creativeindividual.co.uk/wp-content/uploads/2012/jquery-101/">View the Tutorial Demo</a></div>
<h2>Understanding the Syntax</h2>
<p>Now that you have some code to look at, let&#8217;s try and understand what it&#8217;s doing by understanding the basic jQuery syntax. Every function in jQuery follows this basic structure, or syntax:</p>
<p>Basic Syntax:<strong> $(selector).action();</strong></p>
<p>Let&#8217;s break it down:</p>
<ul>
<li>The <strong>$</strong> (dollar sign) defines jQuery. Other JavaScript libraries also make use of this sign so if you are mixing libraries you can use <strong>jQuery</strong> instead.</li>
<li><strong>(selector)</strong> finds or queries elements in the HTML. So in our example the selector is <strong>(&#8220;a.make-disappear&#8221;)</strong> which tells jQuery to look for a hyperlink (a tag) with a class of make-disappear. The selector uses CSS syntax to query the DOM, such as .classname for classes and #idname for ids.</li>
<li><strong>.action()</strong> is the jQuery action to be performed on the HTML elements. So in our example the action is <strong>.click()</strong>, in other words when the user performs a click on the link. We then run another function within the .click() action.</li>
</ul>
<p>Our Syntax: <strong>$(selector).action(function(){$(selector).action();});</strong></p>
<ul>
<li>Within our .click() action we run another function by using <strong>function(){}</strong> and within this function we use <strong>$(selector).action();</strong> again.</li>
<li>Our second selector is <strong>(&#8220;p.disappear&#8221;)</strong> which tells us that when a link with the class of make-disappear is clicked, look for any paragraphs (p tag) with a class of disappear.</li>
<li>Our second action is <strong>.hide()</strong>. What this tells jQuery to do is that when a hyperlink with a class of make-disappear is clicked, look of any paragraphs with a class of disappear and hide them.</li>
</ul>
<h2>Some Basic Events</h2>
<p>Now that we have an understanding of our second jQuery function &#8211; making a paragraph disappear when we click a link &#8211; let&#8217;s look at some more basic events.</p>
<h3>.toggle()</h3>
<p>The .toggle() action combines the .hide() and .show() actions. Let&#8217;s create another link which toggles a span:</p>
<pre>...
&lt;body&gt;
    ...
    &lt;p class="toggle"&gt;
        &lt;a href="#"&gt;Show/Hide&lt;/a&gt;
        &lt;span&gt;This text will appear and disappear.&lt;/span&gt;
    &lt;/p&gt;
&lt;/body&gt;
...</pre>
<p>Now let&#8217;s add our jQuery:</p>
<pre>...
$(document).ready(function(){
    ...
    $("p.toggle a").click(function(){
        $("p.toggle span").toggle();
    });
});
...</pre>
<p>Save your file again and refresh your browser. By clicking the link you can show and hide the text wrapped in the span tag. <em>Magic!</em></p>
<div class="view-tutorial-demo"><a title="jQuery 101 - Learning the Basics - Demo" href="http://creativeindividual.co.uk/wp-content/uploads/2012/jquery-101/">View the Tutorial Demo</a></div>
<p>In the jQuery code above, instead of giving each element a class or id, I&#8217;ve only given the paragraph tag a class of toggle and then referenced other elements within the paragraph, just like you would with CSS. So by clicking the link within the paragraph with a class of toggle, we can show and hide the span within the paragraph.</p>
<p>All this is very nice, but we can do better than this! Introducing the .slideToggle() effect.</p>
<h3>.slideToggle() and .find()</h3>
<p>Now that you&#8217;ve gotten your head around some basics, lets speed things up a bit. In our next example we are going to look at .slideToggle() and .find(). As you probably have guessed .slideToggle() is very similar to .toggle() only with a slide animation effect. We are also introducing the .find() which helps us with the selector part of our query and could make our query up to <a title="Your jQuery: Now With 67% Less Suck" href="http://24ways.org/2011/your-jquery-now-with-less-suck" target="_blank">twice as fast</a>.</p>
<p>Let&#8217;s duplicate our previous code and instead of the paragraph having a class of toggle we&#8217;ll give it a class of slideToggle:</p>
<pre>...
&lt;body&gt;
    ...
    &lt;p class="slideToggle"&gt;
        &lt;a href="#"&gt;Show/Hide&lt;/a&gt;
        &lt;span&gt;This text will appear and disappear.&lt;/span&gt;
    &lt;/p&gt;
&lt;/body&gt;
...</pre>
<p>Now let&#8217;s add our jQuery:</p>
<pre>...
$(document).ready(function(){
    ...
    $("p.slideToggle").find("a").click(function(){
        $("p.slideToggle").find("span").slideToggle();
    });
});
...</pre>
<p>Save your file again and refresh your browser to see the .slideToggle() effect. <em>Pretty sweet!</em> But we can <strong>still</strong> do better than that!</p>
<div class="view-tutorial-demo"><a title="jQuery 101 - Learning the Basics - Demo" href="http://creativeindividual.co.uk/wp-content/uploads/2012/jquery-101/">View the Tutorial Demo</a></div>
<h3>Animation Speed</h3>
<p>A lot of actions, including .slideToggle, allow us to dictate the speed of the animation. There are a few options available:</p>
<ul>
<li>slow (600 milliseconds)</li>
<li>normal (400 milliseconds)</li>
<li>fast (200 milliseconds)</li>
<li>a custom speed in milliseconds</li>
</ul>
<p>Let&#8217;s update our jQuery by adding the fast speed:</p>
<pre>...
$(document).ready(function(){
    ...
    $("p.slideToggle").find("a").click(function(){
        $("p.slideToggle").find("span").slideToggle(<strong>"fast"</strong>);
    });
});
...</pre>
<p>Once again, save your file and refresh your browser.</p>
<p>Notice that we put the word fast in quotes in our code above. The same goes for normal and slow. However if we want to dictate our speed in milliseconds we just enter the number, like so:</p>
<pre>...
$(document).ready(function(){
    ...
    $("p.slideToggle").find("a").click(function(){
        $("p.slideToggle").find("span").slideToggle(<strong>1000</strong>);
    });
});
...</pre>
<p>Our .slideToggle() effect will now take 1 second (1000 milliseconds) to complete.</p>
<h3>.css(), this Selector and Basic Selector Filters</h3>
<p>Let&#8217;s push the boat out again with our jQuery. In our next example we are going to look at one new action, the this selector and some basic selector filters. The action is .css() and as you can imagine, this allows us to add or edit CSS properties to our DOM elements. The this selector allows us to target the element which has been actioned, such as through .click(). The basic selector filters we will be looking at are :even, :odd and :last, and these allow us to target even numbered elements, odd numbers elements and the last element in our given query.</p>
<p>In our next example we are going to create a checklist. That is, an unordered list with zebra strips and a function which allows us to click on a list item and change its colour plus put a line-through the text, showing that this item has been completed.</p>
<p>On a side note, this example is for the purposes of showing how something <strong>could</strong> be done and not how it <strong>should</strong> be done &#8211; we&#8217;ll get to that later.</p>
<p>OK, first let&#8217;s create our simple list:</p>
<pre>...
&lt;body&gt;
    ...
    &lt;ul class="list1"&gt;
        &lt;li&gt;List item 1&lt;/li&gt;
        &lt;li&gt;List item 2&lt;/li&gt;
        &lt;li&gt;List item 3&lt;/li&gt;
        &lt;li&gt;List item 4&lt;/li&gt;
        &lt;li&gt;List item 5&lt;/li&gt;
        &lt;li&gt;List item 6&lt;/li&gt;
    &lt;/ul&gt;
&lt;/body&gt;
...</pre>
<p>Now let&#8217;s style our list items using .css(). First let&#8217;s give each item some padding:</p>
<pre>...
$(document).ready(function(){
    ...
    $("ul.list1").find("li").css("padding","5px");
});
...</pre>
<p>Notice we are just running our usual selector with the .find() action and finally we are adding one CSS property to all the unordered lists-items &#8211; padding of 5 pixels on all sides.</p>
<p>Next let&#8217;s target all our even list items. Remember that arrays start with 0 so technically our first list item is even, not odd as you would expect. We&#8217;ll use the :even filter to do this:</p>
<pre>...
$(document).ready(function(){
    ...
    $("ul.list1").find("li").css("padding","5px");

   <strong> $("ul.list1").find("li:even").css({</strong>
       <strong> "border-top":"1px solid #eee",</strong>
       <strong> "background":"#fcfcfc"</strong>
   <strong> });</strong>
});
...</pre>
<p>Notice that this time our .css() action is a little different because we are specifying more than one CSS property. Make sure to remember this so that you don&#8217;t get tripped up in the future.</p>
<p>Now let&#8217;s style the other items in our list using the :odd selector filter:</p>
<pre>...
$(document).ready(function(){
    ...
    $("ul.list1").find("li").css("padding","5px");

    $("ul.list1").find("li:even").css({
        "border-top":"1px solid #eee",
        "background":"#fcfcfc"
    });

   <strong> $("ul.list1").find("li:odd").css({ </strong>
       <strong> "border-top":"1px solid #d3e9ff", </strong>
       <strong> "background":"#e8f3ff" </strong>
   <strong> }); </strong>});
...</pre>
<p>And finally let&#8217;s add another border at the bottom of the last list item using :last:</p>
<pre>...
$(document).ready(function(){
    ...
    $("ul.list1").find("li").css("padding","5px");

    $("ul.list1").find("li:even").css({
        "border-top":"1px solid #eee",
        "background":"#fcfcfc"
    });

    $("ul.list1").find("li:odd").css({
        "border-top":"1px solid #d3e9ff",
        "background":"#e8f3ff"
    });

    <strong>$("ul.list1").find("li:last").css("border-bottom","1px solid #d3e9ff"); </strong>
});
...</pre>
<p>If you save your document and refresh your browser you will see that we have created a very simple zebra strip effect.</p>
<p>Now let&#8217;s create our checklist functionality by using the <strong>this</strong> selector:</p>
<pre>...
$(document).ready(function(){
    ...
    $("ul.list1").find("li").css("padding","5px");

    $("ul.list1").find("li:even").css({
        "border-top":"1px solid #eee",
        "background":"#fcfcfc"
    });

    $("ul.list1").find("li:odd").css({
        "border-top":"1px solid #d3e9ff",
        "background":"#e8f3ff"
    });

    $("ul.list1").find("li:last").css("border-bottom","1px solid #d3e9ff");

    <strong>$("ul.list1").find("li").click(function(){</strong>
        <strong>$(this).css({</strong>
            <strong>"border-top":"1px solid #fcf47e",</strong>
            <strong>"background":"#ffffea",</strong>
            <strong>"text-decoration":"line-through"</strong>
        <strong>});</strong>
    <strong>});</strong>

});
...</pre>
<p>In this last query what we are asking jQuery to do is get any unordered lists with a class of list1 (ul.list1), find all the list items (li) within the unordered list, then, if any of the list items are clicked, apply the css following css styles <strong>only</strong> to the item that was clicked (this). Got it? Great, go check it out in your browser.</p>
<div class="view-tutorial-demo"><a title="jQuery 101 - Learning the Basics - Demo" href="http://creativeindividual.co.uk/wp-content/uploads/2012/jquery-101/">View the Tutorial Demo</a></div>
<h3>.hasClass(), .addClass(), .removeClass() and if Statements</h3>
<p>Remember how I said that the last example showed how a checklist function <strong>could</strong> be done but it wasn&#8217;t how it <strong>should</strong> be done? Well let&#8217;s learn how it should be done and while we are at it we&#8217;ll learn about .hasClass(), .addClass(), .removeClass() and JavaScript if statements, plus also add the functionality to unselect items too. <em>Exciting, eh?</em></p>
<p>OK, first duplicate the unordered list items from the previous example and give it a class of list2.</p>
<pre>...
&lt;body&gt;
    ...
    &lt;ul&gt;
        &lt;li&gt;List item 1&lt;/li&gt;
        &lt;li&gt;List item 2&lt;/li&gt;
        &lt;li&gt;List item 3&lt;/li&gt;
        &lt;li&gt;List item 4&lt;/li&gt;
        &lt;li&gt;List item 5&lt;/li&gt;
        &lt;li&gt;List item 6&lt;/li&gt;
    &lt;/ul&gt;
&lt;/body&gt;
...</pre>
<p>Easy so far. Next we are going to style our list using CSS rather than jQuery. So we need to create a stylesheet and link to it in our HTML head:</p>
<pre>...
&lt;head&gt;
    &lt;title&gt;jQuery 101 - Learning the Basics&lt;/title&gt;
    &lt;link rel="stylesheet" type="text/css" href="styles.css" /&gt;
    ...
&lt;/head&gt;
...</pre>
<p>OK, next add the following styles to your stylesheet. These will look very familiar to you as they are the same styles that we used in the last example. The only difference to note is that I&#8217;ve swapped around the styles for odd list items and even list items. Notice that we are using <a title="CSS3 Pseudo-classes: Harnessing the power!" href="http://creativeindividual.co.uk/2011/08/css3-pseudo-classes/">CSS3 Pseudo-classes</a>.</p>
<pre>ul.list2 li { padding: 5px; cursor: pointer; }
ul.list2 li:nth-of-type(odd) { border-top: 1px solid #eee; background: #fcfcfc; }
ul.list2 li:nth-of-type(even) { border-top: 1px solid #d3e9ff; background: #e8f3ff; }
ul.list2 li:last-of-type { border-bottom:1px solid #d3e9ff; }
ul.list2 li.completed { border-top: 1px solid #fcf47e; background: #ffffea; text-decoration: line-through; }</pre>
<p>We are almost done. Now just for our jQuery. We are going to run the same query as before. jQuery will find all the unordered lists with a class of list2, then will find all the list items within the unordered list. This time when the user clicks on a list item the jQuery will run an if statement. It will check if the list item has a class of completed by using .hasClass(), and if so will remove the class using .removeClass(). If it doesn&#8217;t has a class of completed it will add the class using .addClass().</p>
<pre>...
$(document).ready(function(){
    ...
    $("ul.list2").find("li").click(function(){
        if($(this).hasClass("completed")) {
            $(this).removeClass("completed");
        } else {
            $(this).addClass("completed");
        }
    });

});
...</pre>
<p>And that&#8217;s it. Go check it out in your browser.</p>
<div class="view-tutorial-demo"><a title="jQuery 101 - Learning the Basics - Demo" href="http://creativeindividual.co.uk/wp-content/uploads/2012/jquery-101/">View the Tutorial Demo</a></div>
<h2>Conclusion</h2>
<p>Hopefully by the time you&#8217;ve completed this tutorial you&#8217;ll have some good basics about jQuery and how to use it. This tutorial only scratches the surface and you&#8217;ve only just begun to delve into the exciting world of jQuery.</p>
<p>So &#8220;Where do I go from here?&#8221; I hear you ask. I&#8217;d recommend continuing your journey on the <a title="W3School jQuery" href="http://www.w3schools.com/jquery/default.asp" target="_blank">W3Schools jQuery tutorial</a> where you&#8217;ll cover what we&#8217;ve already learnt here, plus expand your knowledge even more by getting to grips with actions like .animate(), learning about callbacks, using Ajax and much more.</p>
<p>Not enough for you? Here&#8217;s some more useful resources:</p>
<ul>
<li><a title="jQuery Documentation" href="http://docs.jquery.com/" target="_blank">jQuery Documentation</a></li>
<li><a title="jQuery for Absolute Beginners Video Series" href="http://blog.themeforest.net/tutorials/jquery-for-absolute-beginners-video-series/" target="_blank">jQuery for Absolute Beginners Video Series</a></li>
<li><a title="24 Ways - Your jQuery: Now With 67% Less Suck" href="http://24ways.org/2011/your-jquery-now-with-less-suck">24 Ways &#8211; Your jQuery: Now With 67% Less Suck</a></li>
<li><a title="A Beginner’s Guide to jQuery" href="http://creativeindividual.co.uk/2010/10/a-beginners-guide-to-jquery/" target="_blank">A Beginner’s Guide to jQuery</a></li>
</ul>
<h2>Get The Source Code</h2>
<p>You can download the complete tutorial source code by clicking on the big button below and unzipping the file.</p>
<p><a href="http://creativeindividual.co.uk/wp-content/uploads/2012/jquery-101/jquery-101.zip"><img class="alignnone size-full wp-image-108" title="Download Source File - jQuery 101 - Learning the Basics" src="http://creativeindividual.co.uk/wp-content/uploads/2010/11/download-source-file.png" alt="Download Source File - jQuery 101 - Learning the Basics" width="648" height="104" /></a></p>
]]></content:encoded>
			<wfw:commentRss>https://creativeindividual.co.uk/2012/06/jquery-101-learning-the-basics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>8 Take Away Thoughts from New Adventures 2012</title>
		<link>https://creativeindividual.co.uk/2012/01/8-take-away-thoughts-from-new-adventures-2012/</link>
		<comments>https://creativeindividual.co.uk/2012/01/8-take-away-thoughts-from-new-adventures-2012/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 21:02:41 +0000</pubDate>
		<dc:creator>Laura Montgomery</dc:creator>
				<category><![CDATA[Professional Knowledge]]></category>

		<guid isPermaLink="false">http://creativeindividual.co.uk/?p=351</guid>
		<description><![CDATA[<a href="/2012/01/8-take-away-thoughts-from-new-adventures-2012" title="New Adventure in Web Design conference 2012"><img src="/wp-content/uploads/2012/01/naconf.jpg" /></a>

A few days ago I attended the <strong>New Adventures in Web Design</strong> conference 2012 in Nottingham. This was my first conference so I didn't really know what to expect or what I would get out of the experience. Therefore I'm not going to compare this experience to a previous conference or comment on what they could have done or should not have done as I am not aware of the usual conference status quo. Plus I think the team behind the conference did such a wonderful job and I really cannot fault them on any area.

Instead I've decided to write about what I took away from the conference in terms of inspiration and professional knowledge. There were 8 speakers at the conference so I thought that I should write about the main point that I took away from each talk. These are of course my own take away thoughts and not necessarily the focus of each talk - although generally speaking, that is the case.]]></description>
			<content:encoded><![CDATA[<p><a href="http://2012.newadventuresconf.com/"><img class="alignnone size-full wp-image-352" title="New Adventure in Web Design conference 2012" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/naconf.jpg" alt="" width="648" height="190" /></a></p>
<p>A few days ago I attended the <strong>New Adventures in Web Design</strong> conference 2012 in Nottingham. This was my first conference so I didn&#8217;t really know what to expect or what I would get out of the experience. Therefore I&#8217;m not going to compare this experience to a previous conference or comment on what they could have done or should not have done as I am not aware of the usual conference status quo. Plus I think the team behind the conference did such a wonderful job and I really cannot fault them on any area.</p>
<p>Instead I&#8217;ve decided to write about what I took away from the conference in terms of inspiration and professional knowledge. There were 8 speakers at the conference so I thought that I should write about the main point that I took away from each talk. These are of course my own take away thoughts and not necessarily the focus of each talk &#8211; although generally speaking, that is the case.</p>
<h2>1. Design-ish: Behind, beneath, and between the comps</h2>
<p><strong>Speaker:</strong> Dan Mall</p>
<p>To constantly evolve and re-think my design process and my interactions with clients and colleagues. How can I change my process to come to a better solution? How can I create an end product that not only meets the brief but meets the needs the client didn&#8217;t even know they (or their audience) had. And this isn&#8217;t necessarily to do with the artwork, or the code, or the CMS used; but could be in the <strong>Invisible Deliverables</strong> &#8211; things like grids, design briefs, flow concepts, animation concepts. To tinker with the process and to <strong>look beyond the obvious</strong>.</p>
<h2>2. Going Beyond</h2>
<p><strong>Speaker:</strong> Naomi Atkinson</p>
<p>Generally as designers we suck at self-promotion and self-branding. We don&#8217;t understand the role of the client, and yet get frustrated with clients when they don&#8217;t fulfil their role correctly. We forget that good self-branding allows us to mold how the world sees us. By evolving and developing our logo, our tone of voice, our style, our writing, <strong>we can change how the world perceives us</strong>. This also gives us the power to change the world and do something good and worth while.</p>
<h2>3. We Used to Build Forts</h2>
<p><strong>Speaker:</strong> Travis Schmeisser</p>
<p>Sometimes its good to relax, chill out and remember why we got into design in the first place, to go back to our creative roots. With the endless responsibilities and deadlines of client work and even life, we forget how <strong>we used to create for the love of it</strong> and because on some level, we needed to. As designers we need to loosen up and let the natural creative process occur. Use personal projects as a chance to experiment and make mistakes, and use this growth in our client work. Re-find our creative identity and create for the sake of creating.</p>
<h2>4. The Mindful Designer</h2>
<p><strong>Speaker:</strong> Robbie Manson</p>
<p>To re-claim your most powerful tool &#8211; your brain. To allow a concept or thought to develop away from tools, such as the computer. To become a mature and mindful designer by using mindful thinking &#8211; that is, to allow for experimentations and happy accidents, and to <strong>let mistakes teach you how to make successes</strong>. It is only by experience that we can make informed decisions.</p>
<h2>5. Break Everything</h2>
<p><strong>Speaker:</strong> Trent Walton</p>
<p>To be innovative, we need to break things. This is how we can truly understand how they work and therefore how we can push them to their limits, and of course, how we can make them better. We need to <strong>put aside the fear of experimentation and failure</strong> because there are lessons to be learnt in failing. And in each failing we come a step closer to success, to true innovation.</p>
<h2>6. The Potential Impact of Design</h2>
<p><strong>Speaker:</strong> Cameron Koczon</p>
<p>Each of us has the ability to have an affect on the world around us, and even the world at large, to have an impact, to change things. That change doesn&#8217;t have to be big but we should do it while <strong>doing something that we love</strong>. Make this year count!</p>
<h2>7. Your Brain on Creativity</h2>
<p><strong>Speaker:</strong> Denise Jacobs</p>
<p>The core of this message was that <strong>&#8216;All work and no play makes Jack a dull boy&#8217;</strong>. Basically that in order to reach our potential, to be creative, we need to have down-time. Time away from work, from technology, from stress. We need to play, to laugh, to take time to breathe so that we can reset our batteries and get the two sides of our brain to re-sync again. Because it is only when they are working together that we can be creative and can do ourselves justice. It is time to stop over-thinking and time to <strong>banish our inner critic</strong> and allow ourselves to reach our creative potential.</p>
<h2>8. It Moves</h2>
<p><strong>Speaker:</strong> Frank Chimero</p>
<p>A designer is anyone who wants to make things better, who can find the exceptional and is not distracted by the everyday. Good design is game-changing, even life-changing. When a design is exceptional, when it is so good, we don&#8217;t even notice it. Good design takes on a life of its own, it grows and spreads &#8211; <strong>it moves</strong>. Everything in our world moves and changes. And perhaps nowhere more so than in the web design industry where things are constantly changing, where every two years the whole industry has essentially re-invented itself. To be a good designer and to stay a good one, we need to accept, <strong>to embrace the ever-changing industry we work in</strong> and to move with it.</p>
<h3>Want to know more?</h3>
<p>Did the conference sound like something you really would have enjoyed and you&#8217;re gutted that you missed it? While here&#8217;s some useful links to this year&#8217;s website where you can read up on the event and even download this year&#8217;s newspaper &#8211; its only £1 and definitely worth it. Go on, be a sport!</p>
<p><strong>Website:</strong> <a href="http://2012.newadventuresconf.com/">http://2012.newadventuresconf.com/</a><br />
<strong>Newspaper:</strong> <a href="http://2012.newadventuresconf.com/paper/">http://2012.newadventuresconf.com/paper/</a><br />
<strong>Twitter:</strong> @naconf and #naconf</p>
<p>And I&#8217;d like to take this opportunity to thank everyone involved for making the event such a success. Such a great first conference experience &#8211; I&#8217;ll definitely be back!</p>
]]></content:encoded>
			<wfw:commentRss>https://creativeindividual.co.uk/2012/01/8-take-away-thoughts-from-new-adventures-2012/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mid-week Inspiration #9</title>
		<link>https://creativeindividual.co.uk/2012/01/mid-week-inspiration-9/</link>
		<comments>https://creativeindividual.co.uk/2012/01/mid-week-inspiration-9/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 08:00:46 +0000</pubDate>
		<dc:creator>Laura Montgomery</dc:creator>
				<category><![CDATA[Showcases]]></category>

		<guid isPermaLink="false">http://creativeindividual.co.uk/?p=320</guid>
		<description><![CDATA[<a href="/2012/01/mid-week-inspiration-9" title="Mid-week Inspiration #9"><img src="/wp-content/uploads/2012/01/banner.jpg" /></a>

It's that time of the week again, time for some mid-week inspiration from Creative Individual. This week I've put together a bit of a mixed bunch - there's lots of different styles on show in this week's collection. From fun and simple, to highly polished with an impressive amount of illustrative detail, and others somewhere in-between - there's something to suit everyone's tastes and styles.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s that time of the week again, time for some mid-week inspiration from Creative Individual. This week I&#8217;ve put together a bit of a mixed bunch &#8211; there&#8217;s lots of different styles on show in this week&#8217;s collection. From fun and simple, to highly polished with an impressive amount of illustrative detail, and others somewhere in-between &#8211; there&#8217;s something to suit everyone&#8217;s tastes and styles.</p>
<p>Check out the sites featured this week below, and as always, feel free to leave your thoughts and feedback below in the comments.</p>
<p><em>Enjoy!</em></p>
<p><a href="http://www.giftrocket.com/"><img class="alignnone size-full wp-image-324" title="GiftRocket" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/giftrocket.jpg" alt="" width="648" height="407" /></a></p>
<p><a title="GiftRocket" href="http://www.giftrocket.com/">http://www.giftrocket.com/</a></p>
<p><a href="http://www.studio7designs.com/"><img class="alignnone size-full wp-image-329" title="Studio7Designs" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/studio7designs.jpg" alt="" width="648" height="407" /></a></p>
<p><a title="Studio7Designs" href="http://www.studio7designs.com/">http://www.studio7designs.com/</a></p>
<p><a href="http://liftux.com/"><img class="alignnone size-full wp-image-325" title="Lift UX" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/lift.jpg" alt="" width="648" height="407" /></a></p>
<p><a title="Lift UX" href="http://liftux.com/">http://liftux.com/</a></p>
<p><a href="http://tradeomics.com/"><img class="alignnone size-full wp-image-321" title="Tradeomics" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/tradeomics.jpg" alt="" width="648" height="407" /></a></p>
<p><a title="Tradeomics" href="http://tradeomics.com/">http://tradeomics.com/</a></p>
<p><a href="https://popularise.com/home"><img class="alignnone size-full wp-image-327" title="Popularise" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/popularise.jpg" alt="" width="648" height="407" /></a></p>
<p><a title="Popularise" href="https://popularise.com/home">https://popularise.com/home</a></p>
<p><a href="http://www.offroadstudios.com/"><img class="alignnone size-full wp-image-326" title="Off-Road Studios" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/offraodstudios.jpg" alt="" width="648" height="407" /></a></p>
<p><a title="Off-Road Studios" href="http://www.offroadstudios.com/">http://www.offroadstudios.com/</a></p>
<p><a href="http://www.renderwave.it/en/"><img class="alignnone size-full wp-image-328" title="Renderwave" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/renderwave.jpg" alt="" width="648" height="407" /></a></p>
<p><a title="Renderwave" href="http://www.renderwave.it/en/">http://www.renderwave.it/en/</a></p>
<p><a href="http://www.discoverireland.ie/"><img class="alignnone size-full wp-image-323" title="Discover Ireland" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/discoverireland.jpg" alt="" width="648" height="407" /></a></p>
<p><a title="Discover Ireland" href="http://www.discoverireland.ie/">http://www.discoverireland.ie/</a></p>
<p>What did you think of this week’s collection of Mid-week Inspiration? Which sites are your favourites? And can you recommend any beautifully designed sites for other visitors to check out? Please leave your thoughts and feedback in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>https://creativeindividual.co.uk/2012/01/mid-week-inspiration-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photography Showcase: The Four Elements Part 1: Earth</title>
		<link>https://creativeindividual.co.uk/2012/01/photography-showcase-the-four-elements-part-1-earth/</link>
		<comments>https://creativeindividual.co.uk/2012/01/photography-showcase-the-four-elements-part-1-earth/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 17:07:05 +0000</pubDate>
		<dc:creator>Laura Montgomery</dc:creator>
				<category><![CDATA[Showcases]]></category>

		<guid isPermaLink="false">http://creativeindividual.co.uk/?p=330</guid>
		<description><![CDATA[<a href="/2012/01/photography-showcase-the-four-elements-part-1-earth" title="Photography Showcase: The Four Elements Part 1: Earth"><img src="/wp-content/uploads/2012/01/earth-element-banner.jpg" /></a>

This is the first photography showcase on Creative Individual and I've decided to make it the first in a four-part series. The series is The <strong>Four Elements</strong> - namely earth, wind, fire and water. And in part one, I've put together some interesting and inspirational images around the subject matter of <strong>Earth</strong>. More specifically I've selected images of rocks, cliffs and rock formations.]]></description>
			<content:encoded><![CDATA[<p>This is the first photography showcase on Creative Individual and I&#8217;ve decided to make it the first in a four-part series. The series is <strong>The Four Elements</strong> - namely earth, wind, fire and water. And in part one, I&#8217;ve put together some interesting and inspirational images around the subject matter of <strong>Earth</strong>. More specifically I&#8217;ve selected images of rocks, cliffs and rock formations.</p>
<p><em>Enjoy!</em></p>
<p><a href="http://www.flickr.com/photos/mikkashar/5992512605/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-347" title="White mineral formations above the lake | by mikkashar" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/5992512605_f21f2d2120_b.jpg" alt="" width="648" height="486" /></a></p>
<p><a title="White mineral formations above the lake | by mikkashar" href="http://www.flickr.com/photos/mikkashar/5992512605/sizes/l/in/photostream/">White mineral formations above the lake | by mikkashar</a></p>
<p><a href="http://www.flickr.com/photos/25228175@N08/5579879094/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-346" title="Left foot in Yoshua Tree | by zilverbat." src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/5579879094_b530df1d55_b.jpg" alt="" width="648" height="433" /></a></p>
<p><a title="Left foot in Yoshua Tree | by zilverbat." href="http://www.flickr.com/photos/25228175@N08/5579879094/sizes/l/in/photostream/">Left foot in Yoshua Tree | by zilverbat.</a></p>
<p><a href="http://www.flickr.com/photos/pilosopongfroilan/5476791519/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-345" title="Stone Formations 2 | by pilosopongfroilan" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/5476791519_0650a26e2b_b.jpg" alt="" width="648" height="430" /></a></p>
<p><a title="Stone Formations 2 | by pilosopongfroilan" href="http://www.flickr.com/photos/pilosopongfroilan/5476791519/sizes/l/in/photostream/">Stone Formations 2 | by pilosopongfroilan</a></p>
<p><a href="http://www.flickr.com/photos/makipon/5076651596/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-344" title="Antelope Canyon | by makipon" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/5076651596_49a56ef266_b.jpg" alt="" width="648" height="486" /></a></p>
<p><a title="Antelope Canyon | by makipon" href="http://www.flickr.com/photos/makipon/5076651596/sizes/l/in/photostream/">Antelope Canyon | by makipon</a></p>
<p><a href="http://www.flickr.com/photos/orkomedix/4350542575/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-343" title="Cango Cave Formation | by orkomedix" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/4350542575_947195193d_b.jpg" alt="" width="648" height="432" /></a></p>
<p><a title="Cango Cave Formation | by orkomedix" href="http://www.flickr.com/photos/orkomedix/4350542575/sizes/l/in/photostream/">Cango Cave Formation | by orkomedix</a></p>
<p><a href="http://www.flickr.com/photos/alexyee/4236565799/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-342" title="Rock Formations - Muscat, Sultanate of Oman | by Alexander R. Yee" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/4236565799_0bb69f15fe_b.jpg" alt="" width="648" height="432" /></a></p>
<p><a title=" Rock Formations - Muscat, Sultanate of Oman | by Alexander R. Yee" href="http://www.flickr.com/photos/alexyee/4236565799/sizes/l/in/photostream/"> Rock Formations &#8211; Muscat, Sultanate of Oman | by Alexander R. Yee</a></p>
<p><a href="http://www.flickr.com/photos/whltravel/4184948612/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-341" title="Swards Valley - Cappadocia, Turkey | by whl.travel" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/4184948612_07a28ba650_b.jpg" alt="" width="648" height="486" /></a></p>
<p><a title=" Swards Valley - Cappadocia, Turkey | by whl.travel" href="http://www.flickr.com/photos/whltravel/4184948612/sizes/l/in/photostream/"> Swards Valley &#8211; Cappadocia, Turkey | by whl.travel</a></p>
<p><a href="http://www.flickr.com/photos/mgrig/3522478489/sizes/o/in/photostream/"><img class="alignnone size-full wp-image-340" title="Natural stone formations | by mgrig7005" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/3522478489_f8d2b6e08a_o.jpg" alt="" width="648" height="435" /></a></p>
<p><a title="Natural stone formations | by mgrig7005" href="http://www.flickr.com/photos/mgrig/3522478489/sizes/o/in/photostream/">Natural stone formations | by mgrig7005</a></p>
<p><a href="http://www.flickr.com/photos/mgrig/3522477767/sizes/o/in/photostream/"><img class="alignnone size-full wp-image-339" title="It's raining stone | by mgrig7005" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/3522477767_12b8b89ea3_o.jpg" alt="" width="648" height="435" /></a></p>
<p><a title="It's raining stone | by mgrig7005" href="http://www.flickr.com/photos/mgrig/3522477767/sizes/o/in/photostream/">It&#8217;s raining stone | by mgrig7005</a></p>
<p><a href="http://www.flickr.com/photos/uxud/3297915085/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-338" title="Venus | by GS+" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/3297915085_7cd5d4bc75_b.jpg" alt="" width="648" height="402" /></a></p>
<p><a title="Venus | by GS+" href="http://www.flickr.com/photos/uxud/3297915085/sizes/l/in/photostream/">Venus | by GS+</a></p>
<p><a href="http://www.flickr.com/photos/mikebaird/2928025358/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-337" title="2 of 3 Rock Formations off Point Buchon Trail just south of Montana | by mikebaird" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/2928025358_171a126de3_b.jpg" alt="" width="648" height="486" /></a></p>
<p><a title="2 of 3 Rock Formations off Point Buchon Trail just south of Montana | by mikebaird" href="http://www.flickr.com/photos/mikebaird/2928025358/sizes/l/in/photostream/">2 of 3 Rock Formations off Point Buchon Trail just south of Montana | by mikebaird</a></p>
<p><a href="http://www.flickr.com/photos/mexicanwave/2770608617/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-336" title="Logan Rock &amp; Pednvounder beach | by Mexicanwave" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/2770608617_2545757d2b_b.jpg" alt="" width="648" height="532" /></a></p>
<p><a title="Logan Rock &amp; Pednvounder beach | by Mexicanwave" href="http://www.flickr.com/photos/mexicanwave/2770608617/sizes/l/in/photostream/"> Logan Rock &amp; Pednvounder beach | by Mexicanwave</a></p>
<p><a href="http://www.flickr.com/photos/alanenglish/491915309/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-335" title="Grand Canyon - Thunder River Trail - rock formation on Esplanade | by Al_HikesAZ" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/491915309_0b3c30e0a4_b.jpg" alt="" width="648" height="486" /></a></p>
<p><a title="Grand Canyon - Thunder River Trail - rock formation on Esplanade | by Al_HikesAZ" href="http://www.flickr.com/photos/alanenglish/491915309/sizes/l/in/photostream/">Grand Canyon &#8211; Thunder River Trail &#8211; rock formation on Esplanade | by Al_HikesAZ</a></p>
<p><a href="http://www.flickr.com/photos/mac_filko/453789007/sizes/z/in/photostream/"><img class="alignnone size-full wp-image-334" title="Stones | by mac_filko" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/453789007_e300c43fdc_z.jpg" alt="" width="648" height="486" /></a></p>
<p><a title="Stones | by mac_filko" href="http://www.flickr.com/photos/mac_filko/453789007/sizes/z/in/photostream/">Stones | by mac_filko</a></p>
<p><a href="http://www.flickr.com/photos/andigirl/361779767/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-333" title="Natural stone formation | by andigirl" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/361779767_f346b2b8fe_b.jpg" alt="" width="648" height="864" /></a></p>
<p><a title="Natural stone formation | by andigirl" href="http://www.flickr.com/photos/andigirl/361779767/sizes/l/in/photostream/">Natural stone formation | by andigirl</a></p>
<p><a href="http://www.flickr.com/photos/gullevek/291488262/sizes/o/in/photostream/"><img class="alignnone size-full wp-image-332" title="Stone formation | by gullevek" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/291488262_8f806f17b6_o.jpg" alt="" width="648" height="432" /></a></p>
<p><a title="Stone formation | by gullevek" href="http://www.flickr.com/photos/gullevek/291488262/sizes/o/in/photostream/">Stone formation | by gullevek</a></p>
<p><a href="http://www.flickr.com/photos/photographyxttp/6165826925/sizes/l/in/photostream/"><img class="alignnone size-full wp-image-331" title="stone formation | by paul_xttp *busy*" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/6165826925_5839c3ccd7_b.jpg" alt="" width="648" height="918" /></a></p>
<p><a title=" stone formation | by paul_xttp *busy*" href="http://www.flickr.com/photos/photographyxttp/6165826925/sizes/l/in/photostream/"> stone formation | by paul_xttp *busy*</a></p>
<p>Did you enjoy this collection of Earth element photographs? And do you think the series idea of <strong>The Four Elements</strong> is a good one? Let me know what you think in the comments below. And don&#8217;t forget to share links to your own images.</p>
<p>Also, the next collection in the series will be looking at the <strong>Wind</strong> element, so if you have any images that you think should appear in the collection then please share in the comments and I&#8217;ll be sure to add you to the next collection.</p>
]]></content:encoded>
			<wfw:commentRss>https://creativeindividual.co.uk/2012/01/photography-showcase-the-four-elements-part-1-earth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just For Fun: The Kerning Game</title>
		<link>https://creativeindividual.co.uk/2012/01/just-for-fun-the-kerning-game/</link>
		<comments>https://creativeindividual.co.uk/2012/01/just-for-fun-the-kerning-game/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 12:28:51 +0000</pubDate>
		<dc:creator>Laura Montgomery</dc:creator>
				<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://creativeindividual.co.uk/?p=317</guid>
		<description><![CDATA[<a href="http://creativeindividual.co.uk/2012/01/just-for-fun-the-kerning-game/"><img class="alignnone size-full wp-image-318" title="The Kerning Game" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/kerning-game.jpg" alt="" width="648" height="190" /></a>

I recently came across the Kerning Game and felt I just had to share it. It is a great game for graphic designers and those interested in typography.

The object of the game is simple: move the middle letters in each word to make the text both visually pleasant and, more importantly, easily readable. Or in other words, kern the text. You then receive points according to how well you did.]]></description>
			<content:encoded><![CDATA[<p><a href="http://type.method.ac/"><img class="alignnone size-full wp-image-318" title="The Kerning Game" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/kerning-game.jpg" alt="" width="648" height="190" /></a></p>
<p>I recently came across the Kerning Game and felt I just had to share it. It is a great game for graphic designers and those interested in typography.</p>
<p>The object of the game is simple: move the middle letters in each word to make the text both visually pleasant and, more importantly, easily readable. Or in other words, kern the text. You then receive points according to how well you did.</p>
<p><strong>Why not try it yourself:</strong> <a href="http://type.method.ac/">http://type.method.ac/</a></p>
<p>In case you&#8217;re wondering, I scored 94/100 so there is plenty of room for a seasoned typographer to bet me. Why not share your score below when you&#8217;ve finished.</p>
]]></content:encoded>
			<wfw:commentRss>https://creativeindividual.co.uk/2012/01/just-for-fun-the-kerning-game/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mid-week Inspiration #8 – 10 Fresh Sites</title>
		<link>https://creativeindividual.co.uk/2012/01/mid-week-inspiration-8-%e2%80%93-10-fresh-sites/</link>
		<comments>https://creativeindividual.co.uk/2012/01/mid-week-inspiration-8-%e2%80%93-10-fresh-sites/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 19:29:13 +0000</pubDate>
		<dc:creator>Laura Montgomery</dc:creator>
				<category><![CDATA[Showcases]]></category>

		<guid isPermaLink="false">http://creativeindividual.co.uk/?p=303</guid>
		<description><![CDATA[<a href="/2012/01/mid-week-inspiration-8-–-10-fresh-sites" title="Mid-week Inspiration #8 – 10 Fresh Sites"><img src="/wp-content/uploads/2012/01/dash-banner.jpg" /></a>

Happy New Year and welcome to the first edition of Mid-week Inspiration in 2012. To get you inspired after the long christmas/new year break I've put together 10 sites which are fresh, clean, and a little bit different - helping you get those creative juices flowing!]]></description>
			<content:encoded><![CDATA[<p>Happy New Year and welcome to the first edition of Mid-week Inspiration in 2012. To get you inspired after the long christmas/new year break I&#8217;ve put together 10 sites which are fresh, clean, and a little bit different &#8211; helping you get those creative juices flowing!</p>
<p>Check out the sites featured this week below, and as always, feel free to leave your thoughts and feedback below in the comments.</p>
<p><em>Enjoy!</em></p>
<p><a href="http://hatbox.co/"><img class="alignnone size-full wp-image-308" title="HatBox" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/hatbox.jpg" alt="" width="648" height="394" /></a></p>
<p><a href="http://hatbox.co/">http://hatbox.co/</a></p>
<p><a href="http://www.vignettebrandcommunications.com/"><img class="alignnone size-full wp-image-305" title="Vignette Brand Communication" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/vignette.jpg" alt="" width="648" height="407" /></a></p>
<p><a href="http://www.vignettebrandcommunications.com/">http://www.vignettebrandcommunications.com/</a></p>
<p><a href="http://thrivesolo.com/"><img class="alignnone size-full wp-image-314" title="Solo" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/solo.jpg" alt="" width="648" height="407" /></a></p>
<p><a href="http://thrivesolo.com/">http://thrivesolo.com/</a></p>
<p><a href="http://onedesigncompany.com/"><img class="alignnone size-full wp-image-313" title="One Design Company" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/one.jpg" alt="" width="648" height="394" /></a></p>
<p><a href="http://onedesigncompany.com/">http://onedesigncompany.com/</a></p>
<p><a href="http://www.griplimited.com/"><img class="alignnone size-full wp-image-307" title="Grip Limited" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/grip.jpg" alt="" width="648" height="389" /></a></p>
<p><a href="http://www.griplimited.com/">http://www.griplimited.com/</a></p>
<p><a href="http://captaindash.com/"><img class="alignnone size-full wp-image-306" title="Captain Dash" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/dash.jpg" alt="" width="648" height="394" /></a></p>
<p><a href="http://captaindash.com/">http://captaindash.com/</a></p>
<p><a href="http://www.nest.com/"><img class="alignnone size-full wp-image-312" title="Nest" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/nest.jpg" alt="" width="648" height="394" /></a></p>
<p><a href="http://www.nest.com/">http://www.nest.com/</a></p>
<p><a href="http://lifeinmyshoes.org/"><img class="alignnone size-full wp-image-311" title="Life in my Shoes" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/life-shoes.jpg" alt="" width="648" height="394" /></a></p>
<p><a href="http://lifeinmyshoes.org/">http://lifeinmyshoes.org/</a></p>
<p><a href="http://www.operaliege.be/fr"><img class="alignnone size-full wp-image-310" title="Opera Royal de Liege Wallonie" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/liege.jpg" alt="" width="648" height="394" /></a></p>
<p><a href="http://www.operaliege.be/fr">http://www.operaliege.be/fr</a></p>
<p><a href="http://www.jibevisuals.com/"><img class="alignnone size-full wp-image-309" title="Jibe" src="http://creativeindividual.co.uk/wp-content/uploads/2012/01/jibe.jpg" alt="" width="648" height="394" /></a></p>
<p><a href="http://www.jibevisuals.com/">http://www.jibevisuals.com/</a></p>
<p>What did you think of this week’s collection of Mid-week Inspiration? Which sites are your favourites? And can you recommend any beautifully designed sites for other visitors to check out? Please leave your thoughts and feedback in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>https://creativeindividual.co.uk/2012/01/mid-week-inspiration-8-%e2%80%93-10-fresh-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mid-week Inspiration #7 &#8211; Diagonal Lines &amp; Animation</title>
		<link>https://creativeindividual.co.uk/2011/11/mid-week-inspiration-7-diagonal-lines-animation/</link>
		<comments>https://creativeindividual.co.uk/2011/11/mid-week-inspiration-7-diagonal-lines-animation/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 08:30:35 +0000</pubDate>
		<dc:creator>Laura Montgomery</dc:creator>
				<category><![CDATA[Showcases]]></category>

		<guid isPermaLink="false">http://creativeindividual.co.uk/?p=296</guid>
		<description><![CDATA[<a href="/2011/11/mid-week-inspiration-7-diagonal-lines-animation" title="Mid-Week Inspiration 7 - Diagonal Lines &#038; Animation"><img src="/wp-content/uploads/2011/11/banner.jpg" /></a>

This week's mid-week inspiration is a small collection of only 3 sites but ones which I think are good enough to stand up as prime examples of an emerging trend.

Recently I came across the Citroën DS5 website which blew my mind. Using bold diagonals and lots of CSS3 transitions and Javascript to create some mind boggling animations, this site shows what can be done when technical capability and extraordinary imagination meets the guts to give it a go.

Check out this week's short, but very sweet, collection of inspirational sites which use diagonal lines and animation to drive home their message.]]></description>
			<content:encoded><![CDATA[<p>This week&#8217;s mid-week inspiration is a small collection of only 3 sites but ones which I think are good enough to stand up as prime examples of an emerging trend.</p>
<p>Recently I came across the Citroën DS5 website which blew my mind. Using bold diagonals and lots of CSS3 transitions and Javascript to create some mind boggling animations, this site shows what can be done when technical capability and extraordinary imagination meets the guts to give it a go.</p>
<p>Check out this week&#8217;s short, but very sweet, collection of inspirational sites which use diagonal lines and animation to drive home their message:</p>
<h2>Citroën DS5</h2>
<p><a href="http://www.ds5.citroen.co.uk/uk/"><img class="alignnone size-full wp-image-297" title="Citroën DS5" src="http://creativeindividual.co.uk/wp-content/uploads/2011/11/ds5.jpg" alt="" width="648" height="357" /></a></p>
<p>Starting with the site that brought my attention to this trend, the Citroën DS5 website uses smooth, sliding animations, fades, and zooming effects to create a truly interactive experience. The key messages fade in on page load, while images and body text slide in when you scroll down the page. Plus there&#8217;s some layering and parallax style effects with page elements floating above and beneath one another. They have even taken the diagonal element into the site navigation.</p>
<p><a href="http://www.ds5.citroen.co.uk/uk/">http://www.ds5.citroen.co.uk/uk/</a></p>
<h2>Redirect Digital Marketing</h2>
<p><a href="http://www.redirectdigital.com.br/"><img class="alignnone size-full wp-image-298" title="Redirect Digital Marketing" src="http://creativeindividual.co.uk/wp-content/uploads/2011/11/redirect.jpg" alt="" width="648" height="357" /></a></p>
<p>This example from Redirect Digital Marketing combines stylised illustration from Jonathan Calugi with similar effects that we previously seen in the Citroën DS5 site. The animations and illustrations really bring out the company&#8217;s personality, and shows that they are at the forefront of online design and development. What better showcase could an agency ask for?</p>
<p><a href="http://www.redirectdigital.com.br/">http://www.redirectdigital.com.br/</a></p>
<h2>Hyundai Veloster</h2>
<p><a href="http://www.hyundai-veloster.eu"><img class="alignnone size-full wp-image-299" title="Hyundai Veloster" src="http://creativeindividual.co.uk/wp-content/uploads/2011/11/veloster.jpg" alt="" width="648" height="357" /></a></p>
<p>Not only have the designers of the Hyundai website used great animation effects but they have also used a simple and effect design too. I personally love how they have played with the (mostly) diagonal line to create different dimensions and floors for the car graphics to site on. Plus some beautiful typography really finishes the design off. Good work!</p>
<p><a href="http://www.hyundai-veloster.eu/">http://www.hyundai-veloster.eu/</a></p>
<h2>Conclusion</h2>
<p>I will be the first to admit that this trend won&#8217;t work for every site, in fact I think very few sites could pull it off! However for those projects which can accommodation such a daring design, what better way to showcase your product or company than with a site that is so exciting and engaging? This is one trend that I love.</p>
<p>What did you think of this week’s collection of Mid-week Inspiration? Which site is your favourite? Do you know of any other sites using this style to communicate? Please share them in the comments below along with your thoughts on the trend.</p>
]]></content:encoded>
			<wfw:commentRss>https://creativeindividual.co.uk/2011/11/mid-week-inspiration-7-diagonal-lines-animation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 Sources of Online Inspiration You Can’t Live Without</title>
		<link>https://creativeindividual.co.uk/2011/10/5-sources-of-online-inspiration-you-can%e2%80%99t-live-without/</link>
		<comments>https://creativeindividual.co.uk/2011/10/5-sources-of-online-inspiration-you-can%e2%80%99t-live-without/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 08:30:56 +0000</pubDate>
		<dc:creator>Laura Montgomery</dc:creator>
				<category><![CDATA[5 You Can't Live Without]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://creativeindividual.co.uk/?p=287</guid>
		<description><![CDATA[<a href="/2011/10/5-sources-of-online-inspiration-you-can’t-live-without" title="5 Sources of Online Inspiration You Can’t Live Without"><img src="/wp-content/uploads/2011/10/awwwards-banner.jpg" /></a>

Welcome to the second edition of <strong>5 You Can't Live Without</strong>. In this edition I am going to share 5 sources of online inspiration that I recommend every website designer is familiar with. The focus of the websites I've included is particular to following design trends and developing your own style.

This one was an interesting list to put together with so many great online sources out there and that is why I have decided to focus on the artwork angle in particular. So, let's find out what sites have made my Top 5 list, and which one I consider to be number 1.]]></description>
			<content:encoded><![CDATA[<p>Welcome to the second edition of <strong>5 You Can&#8217;t Live Without</strong>. In this edition I am going to share 5 sources of online inspiration that I recommend every website designer is familiar with. The focus of the websites I&#8217;ve included is particular to following design trends and developing your own style.</p>
<p>This one was an interesting list to put together with so many great online sources out there and that is why I have decided to focus on the artwork angle in particular. So, let&#8217;s find out what sites have made my Top 5 list, and which one I consider to be number 1.</p>
<h2>5. Forrst</h2>
<p><a href="http://forrst.com/"><img class="alignnone size-full wp-image-292" title="Forrst" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/forrst.jpg" alt="Forrst" width="648" height="407" /></a></p>
<p><strong>Website:</strong> <a href="http://forrst.com/">http://forrst.com/</a></p>
<p>The first of our critic websites, Forrst is useful as a source of inspiration even if you are not a member. You can see what leading designers (and developers) are up to, get a measure of the level of the craft at the top of the design game, and if you are a member, you can also receive thoughtful critiques of your work and give helpful comments on the work of others.</p>
<h2>4. Dribbble</h2>
<p><a href="http://dribbble.com/"><img class="alignnone size-full wp-image-291" title="Dribbble" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/dribbble.jpg" alt="Dribbble" width="648" height="407" /></a></p>
<p><strong>Website:</strong> <a href="http://dribbble.com/">http://dribbble.com/</a></p>
<p>The second of our critic websites, and the more widely known one too. Dribble describes itself as a &#8216;show and tell for creatives&#8217; and its here that you can sample the <em>crème de la crème</em> of the design world. Just like Forrst, it is still useful even if you haven&#8217;t received that elusive invite as you can still view the work of others in your field and browse and search the site for relevant content.</p>
<h2>3. Noupe</h2>
<p><a href="http://www.noupe.com/"><img class="alignnone size-full wp-image-294" title="Noupe" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/noupe.jpg" alt="Noupe" width="648" height="407" /></a></p>
<p><strong>Website:</strong> <a href="http://www.noupe.com/">http://www.noupe.com/</a></p>
<p>Noupe is part of the Smashing Network (the people who bring you <a title="Smashing Magazine" href="http://www.smashingmagazine.com/">Smashing Magazine</a> amongst many other great quality sites and books) and describes itself as &#8216;The Curious Side of Smashing Magazine&#8217;. The site is very design focused and as well as posts showcasing great examples of artwork, typography, photography, patterns, illustration and themes, it also promotes useful online resources and publishes articles on design theory and design tutorials.</p>
<h2>2. CSS Awards</h2>
<p><a href="http://www.awwwards.com/"><img class="alignnone size-full wp-image-288" title="Awwwards" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/awwwards.jpg" alt="Awwwards" width="648" height="407" /></a></p>
<p><strong>Website:</strong> <a href="http://www.awwwards.com/">http://www.awwwards.com/</a></p>
<p>With the prestigious award of &#8216;Site of the Day&#8217; available, you can be sure that this website is continually updated with great design from around the world. It is bursting with examples of great design work and should be more than enough to spark some creative ideas of your own.</p>
<h2>1. Designer &amp; Blogger Chris Spooner</h2>
<p>For the number 1 position on my list, I have decided to select a designer rather than a site. The reason for this is because Chris Spooner is a very productive designer, with at least 4 blogs that he manages (including one for his <a title="Jake the Lab" href="http://jakethelab.com/">four-legged friend Jake</a>). And the two of his sites that I have selected as great online resources for designers are:</p>
<p><a href="http://line25.com/"><img class="alignnone size-full wp-image-293" title="Line25" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/line-25.jpg" alt="Line25" width="648" height="407" /></a></p>
<p><strong>Website:</strong> <a href="http://line25.com/">http://line25.com/</a></p>
<p><a href="http://www.blog.spoongraphics.co.uk/"><img class="alignnone size-full wp-image-290" title="Blog.SpoonGraphics" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/blog-spoon-graphics.jpg" alt="Blog.SpoonGraphics" width="648" height="407" /></a></p>
<p><strong>Website:</strong> <a href="http://www.blog.spoongraphics.co.uk/">http://www.blog.spoongraphics.co.uk/</a></p>
<p>Proof in itself that Chris is an inspirational character is the fact that Blog.Spoongraphics is the first blog that I ever followed, and still follow to this day. And also the fact that being continually inspired by Chris&#8217;s multiple weekly posts is what made me want to start my own design blog.</p>
<p>I don&#8217;t think anyone else online has inspired me half as much as what Chris does and that is why without a doubt he is my number one online source for inspiration.</p>
<p><em>What did you think of the post? Are there any other online sources that you would add to the list? What sites makes your Top 5 List of Online Sources of Inspiration? Share your thoughts in the comments below.</em></p>
]]></content:encoded>
			<wfw:commentRss>https://creativeindividual.co.uk/2011/10/5-sources-of-online-inspiration-you-can%e2%80%99t-live-without/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Designing for Humans</title>
		<link>https://creativeindividual.co.uk/2011/10/designing-for-humans/</link>
		<comments>https://creativeindividual.co.uk/2011/10/designing-for-humans/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 11:40:36 +0000</pubDate>
		<dc:creator>Laura Montgomery</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Professional Knowledge]]></category>

		<guid isPermaLink="false">http://creativeindividual.co.uk/?p=278</guid>
		<description><![CDATA[<a href="/2011/10/designing-for-humans" title="Designing for Humans"><img src="/wp-content/uploads/2011/10/banner.jpg" /></a>

By it's nature the web can be a pretty cold place. Reading on screen can be hard and websites can look boring at times; and at worst, confusing and uninviting.

When we come across a site that's different for all the right reasons, it often sticks in our head because it was an enjoyable experience. Can you remember a site that was warm and welcoming? Where the text was clear and easy to read? The navigation was easy to follow? <strong>That site was well-designed.</strong> Its designer had the end-user in mind at all times during the design process.

There are not always set ingredients which make the perfect website cake, but there's certainly plenty of ways to improve your website, and in turn, a user's experience; to make your site a nicer place to be.]]></description>
			<content:encoded><![CDATA[<p>By it&#8217;s nature the web can be a pretty cold place. Reading on screen can be hard and websites can look boring at times; and at worst, confusing and uninviting.</p>
<p>When we come across a site that&#8217;s different for all the right reasons, it often sticks in our head because it was an enjoyable experience. Can you remember a site that was warm and welcoming? Where the text was clear and easy to read? The navigation was easy to follow? <strong>That site was well-designed.</strong> Its designer had the end-user in mind at all times during the design process.</p>
<p><a href="http://www.keithcakes.com.au/"><img class="size-full wp-image-279 alignnone" title="Keith Homemade Cakes" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/keith-homemade-cakes.jpg" alt="Keith Homemade Cakes" width="648" height="407" /></a></p>
<p>There are not always set ingredients which make the perfect website cake, but there&#8217;s certainly plenty of ways to improve your website, and in turn, a user&#8217;s experience; to make your site a nicer place to be.</p>
<h2>The Design Devil is in the Detail</h2>
<p>Without the extra attention to detail, websites can be pretty flat and boring, even &#8216;samey&#8217;. A lot of times they can look nothing like the world around us, making them hard to relate to and the online experience poor. <strong>This is a problem.</strong></p>
<p>This is where we as designers need to take the extra step and design websites that people can relate to. When we design for humans, for the people who are actually going to be using our websites, we create better solutions to the design and communication problem we have been set. And often, designs appear simpler, cleaner and more elegant.</p>
<p><a href="http://www.autoglymhdwax.co.uk/"><img class="alignnone size-full wp-image-281" title="Autoglym - Make It Bead" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/auto-glym.jpg" alt="Autoglym - Make It Bead" width="648" height="407" /></a></p>
<p>Already a lot of designers have taken this step and are designing websites that just make sense. Without the continuous changes in the web industry &#8211; the developments that have been made to figure out what works and what doesn&#8217;t &#8211; the internet would still be in its infancy in design terms. It was not so very long ago that we threw every trick we had into every website we designed and built; <strong>just because we could, and not because we should</strong>.</p>
<p>Dare I say it &#8211; we could still have an online world were animated gifs of glitter unicorns and bright green text on a black background are still the norm! Thankfully we have move on from this. But there is still much we can do to improve.</p>
<h2>Design you can Relate to</h2>
<p>This is where designing for humans comes into play. There are lots of articles which talk about User Experience (UX) and the User Interface (UI). And that&#8217;s not quite what I am about to explain. If you want to read about this, here are a few resources to get you started:</p>
<ul>
<li><a href="http://www.inspireux.com/">inspireUX</a> &#8211; User Experience quotes and articles</li>
<li><a href="http://www.sitepoint.com/quantify-user-experience/">SitePoint</a> &#8211; How to Quantify the User Experience</li>
<li><a href="http://www.useit.com/alertbox/9605.html">Jakob Nielsen&#8217;s Alertbox</a> &#8211; Top 10 Mistakes in Web Design</li>
<li><a href="http://www.webdesignerdepot.com/2011/08/strengthening-behavioral-cues-in-ux-web-design-with-gestalt-principles/">Webdesigner Depot</a> &#8211; Strengthening Behavioural Cues in UX Web Design with Gestalt Principles</li>
</ul>
<p>What I want to talk about is designing websites which look familiar to us, which look like the real world, which even have depth and dimension and actually &#8216;feel&#8217; tactile. It&#8217;s these elements of design which make a visitor feel at home when they arrive at your website door.</p>
<p><strong>So how can we achieve this?</strong></p>
<h3>1. Create a Light Source</h3>
<p>In our lives away from the computer screen, our world has many light sources &#8211; the sun, moon, stars, street lights, lamps, candles, TV, etc. These create highlights and shadows on the multitude of objects in the world. They create different tones and shades of colour. And this gives our world <strong>depth and dimension</strong> &#8211; something not easily replicated on a flat surface such as a sheet of paper&#8230; or a computer screen.</p>
<p>We can however replicate the effect of light using gradients and drop-shadows, to create the highlights and multitude of tones we see in the real world. Drop-shadows give us a sense of depth and allow us to place objects above and below others, creating a <strong>stacking effect</strong> and even a sense of third dimension.</p>
<p><a href="http://www.trentcruising.com/"><img class="alignnone size-full wp-image-283" title="Trent River Cruises Nottingham" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/trent-cruising.jpg" alt="Trent River Cruises Nottingham" width="648" height="407" /></a></p>
<p>Plus as designers we can use this effect to give objects priority over others; to draw the visitor&#8217;s attention towards a particular goal, such as a call-to-action.</p>
<p>Even with all this depth something can still seem missing.</p>
<h3>2. Add Texture</h3>
<p>Everything in our world has a texture. Whether rough or smooth, furry, soft, hard, cold, sharp or a whole host of other possibilities, everything is tactile and has its own unique feel.</p>
<p>Unfortunately we can&#8217;t re-create the actual tactile-ness of our world on screen (but how great would that be?) so instead we need to use <strong>visual clues of texture</strong> to convey the concept and to trigger the memory of texture in the mind of the site visitor.</p>
<p><a href="http://www.rxbalance.com/"><img class="alignnone size-full wp-image-282" title="RX Balance" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/rx-balance.jpg" alt="RX Balance" width="648" height="407" /></a></p>
<p>Well use textures are often subtle, so we need to be careful not to over-do-it. But when used well, texture can really set a website apart. Whether its the promise of sand between your toes from a holiday accommodation website or the prospect of great views and dirty shoes from an outdoor adventure centre site, texture can be a great asset in reinforcing the message in your site&#8217;s text, and the propose of the website itself.</p>
<h3>3. Make it Look Real</h3>
<p>People relate best to what they know. If a visitor comes to your website and has to learn a new visual language, chances are you&#8217;ve lost them.</p>
<p>By making your design elements look familiar, by basing them on their <strong>real-world counter-parts</strong>, you are placing your visitor into a world that they are familiar with and where they feel at home, rather than on an alien planet.</p>
<p>There are many ways to achieve this. It could be image slides that look like a stack of Polaroids, an events calendar that looks like a wall calendar, or the use of icons to represent information, such as telephone, email and postal address.</p>
<p><a href="http://www.aaugh.it/"><img class="alignnone size-full wp-image-284" title="Aaugh Comunicazione Creativa" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/aaugh.jpg" alt="Aaugh Comunicazione Creativa" width="648" height="407" /></a></p>
<p>Some designers have even went a step further and created a website environment which looks and behaves like the real world. This solution isn&#8217;t easy to achieve, and nor will it be suitable for every design problem, but when it works, it really works!</p>
<h3>4. Don&#8217;t Forget the White Space</h3>
<p>So easy to get wrong, both by not spacing your content or by in fact over-doing-it. White space is just like a room &#8211; most of us can&#8217;t work in a messy room, so <strong>don&#8217;t make your site visitors read cluttered content</strong>. Because quite simply, they won&#8217;t.</p>
<p>On a pole to that, I believe that too much white space can also be a bad thing. Ever been in an empty white room? Talk about boring! Also by spacing out your content too much you can break the flow and make your page fragmented. Worse still, visitors might not even realise that there is any more content!</p>
<p><em><strong>Note:</strong> White space is not empty space &#8211; it is a key element to great design and therefore should be carefully thought-out. It also does not have to be white.</em></p>
<h3>5. Create a Hierarchy</h3>
<p>This is where careful consideration of your content comes into play. Whatever you&#8217;ve got &#8211; images, text, video, diagrams, even music &#8211; it all has to work together in a way that flows and makes sense. In its simplest terms, you&#8217;ll want to take a visitor from an initial simple concept, to overview content, to detailed content.</p>
<p>Take the example of a website promoting a product. Often you&#8217;ll have a simple line or two of text along with the &#8216;hero image&#8217; which explains the product (or its purpose) on a very simple level. If the visitor likes this, they often get 3-4 key features of the product, maybe a demo video, maybe a testimonial, and in certain cases a bit about the company. If any of these is of interest to the visitor, they can usually read more on a new page which goes into detail.</p>
<p><a href="http://www.klpersonaltrainer.co.uk/"><img class="alignnone size-full wp-image-285" title="Kiera Lacey Personal Trainer" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/kiera-lacey.jpg" alt="Kiera Lacey Personal Trainer" width="648" height="407" /></a></p>
<p>The visitor gets the information that they want, in the level of detail that they want, and the <strong>content flows</strong> easily from one level to another. This is effective use of hierarchy in your website content.</p>
<h3>6. Make it Legible</h3>
<p>Building on the previous two points, make sure the visitor can read the content. No matter how great your site&#8217;s design is, chances are that the visitor is there for the content. By making effective use of layout, white space and hierarchy, you can <strong>make content more accessible</strong> to the visitor.</p>
<p>Other simpler considerations we as designers need to be aware of are font size, use of titles to break up text and create sections, and contrast between the text and the background (and remember that too much contrast can also be a bad thing).</p>
<h3>7. Push Your Unique Selling Point</h3>
<p>As much as we like things that are familiar to us, we also like it when we come across something that is different or even unique. If your website has a unique selling point, or is selling a product or service that is doing something different, use this to your advantage and push its unique selling point to its limits.</p>
<p><a href="http://sophiehardach.com/"><img class="alignnone size-full wp-image-280" title="Sophie Hardach" src="http://creativeindividual.co.uk/wp-content/uploads/2011/10/sophie-hardach.jpg" alt="Sophie Hardach" width="648" height="407" /></a></p>
<p>However if you are creating a website where the subject matter is fairly run-of-the-mill, then you may want to find a different design solution to communicate to the site visitor, to help you <strong>stand out from the crowd</strong>.</p>
<p>After all, variety is the spice of life!</p>
<h2>In the End, It&#8217;s All About the Site Visitor</h2>
<p>Design considerations which keep the end-user in mind can go from fairly skin deep decisions, such as text and background colour, to more thought-out and carefully considered decisions that can affect the whole site&#8217;s layout.</p>
<p>What I have discussed above is by no means an extensive list but points which I hope highlight the <strong>importance of good design choices</strong> in order to make a successful website that people will want to spend time on.</p>
<p>I am sure that there are many more points which come into play in your design process, some of which I may not have even considered. And I hope that you&#8217;ll share these in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>https://creativeindividual.co.uk/2011/10/designing-for-humans/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
