<?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>Web Design, Belfast, Northern Ireland - Simple Line Design</title>
	<atom:link href="http://www.simplelinedesign.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.simplelinedesign.co.uk</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 14 Jul 2010 19:55:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>100% Wide Navigation</title>
		<link>http://www.simplelinedesign.co.uk/blog/100-wide-navigation/</link>
		<comments>http://www.simplelinedesign.co.uk/blog/100-wide-navigation/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 19:54:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.simplelinedesign.co.uk/?p=72</guid>
		<description><![CDATA[I have always had a problem with setting full width navigation using unordered lists and have ended up using very complicated hacks to get it to work. When each of the list elements is set to display:inline-block; there is always a margin added on the right hand side that causes the navigation to never fit in the navigation are just right, either leaving space or overrunning the navigation area.]]></description>
			<content:encoded><![CDATA[<p>I have always had a problem with setting full width navigation using unordered lists and have ended up using very complicated hacks to get it to work. When each of the list elements is set to display:inline-block; there is always a margin added on the right hand side that causes the navigation to never fit in the navigation are just right, either leaving space or overrunning the navigation area.</p>
<p><img src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/07/nav_problem.png" alt="" title="nav_problem" width="620" height="180" class="aligncenter size-full wp-image-73" /></p>
<p>I have only recently found out how to fix this problem, and it is deceptively easy. When creating an unordered list, I always put each list item on a seperate line to avoid confusion and allow me to move/modify the items easily. It turns out that by putting the list elements on each line it causes this extra right margin to be added. A quick fix for this is to simply put all the navigation elements in the list side by side on the same line.</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;nav&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/ul.html"><span style="color: #000000; font-weight: bold;">ul</span></a>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span>Home<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;&lt;<a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span>About<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;&lt;<a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span>Blog<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;&lt;<a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span>Contact<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/ul.html"><span style="color: #000000; font-weight: bold;">ul</span></a>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span>nav&gt;</span></div></div>
<p>If, however, there is alot of information on the one line and you would really prefer to have the code on seperate lines, the same thing as above can be achieved by &#8216;commenting out&#8217; the line break as can be seen below.</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;nav&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/ul.html"><span style="color: #000000; font-weight: bold;">ul</span></a>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span>Home<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--</span><br />
<span style="color: #808080; font-style: italic;"> &nbsp; &nbsp;--&gt;</span><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span>About<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--</span><br />
<span style="color: #808080; font-style: italic;"> &nbsp; &nbsp;--&gt;</span><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span>Blog<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--</span><br />
<span style="color: #808080; font-style: italic;"> &nbsp; &nbsp;--&gt;</span><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span>Contact<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/li.html"><span style="color: #000000; font-weight: bold;">li</span></a>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/ul.html"><span style="color: #000000; font-weight: bold;">ul</span></a>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span>nav&gt;</span></div></div>
<p>I can now set a percentage value width for each of the list tags and it will fit the width perfectly.</p>
<p><img src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/07/nav_fix.png" alt="" title="nav_fix" width="620" height="180" class="aligncenter size-full wp-image-74" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simplelinedesign.co.uk/blog/100-wide-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where to go from here?</title>
		<link>http://www.simplelinedesign.co.uk/blog/where-to-go-from-here/</link>
		<comments>http://www.simplelinedesign.co.uk/blog/where-to-go-from-here/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 12:23:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.simplelinedesign.co.uk/?p=71</guid>
		<description><![CDATA[I have recently finished my degree course in Interactive Multimedia Design and I now have to decide what is the best thing for me to do for my future.]]></description>
			<content:encoded><![CDATA[<p>I have recently finished my degree course in Interactive Multimedia Design and I now have to decide what is the best thing for me to do for my future.</p>
<p>Initially I applied for a number of jobs in the web design industry, hoping to gain employment and start working. Unfortunately at this time there was not a great deal of job places available so I had to concentrate on doing something else. I did not want to go into a temporary job position where I would be doing a job that I did not want to do and would not enjoy doing. With this in mind, I started to look around for anywhere that I could gain some freelance employment.</p>
<p>The main place that I started with was on Gumtree, it is free to place an advertisement and allows prospective clients to find you without having to search and cold call yourself. This is how I got my first freelance position.</p>
<p>Another method that I found worked was simply to ask people that you know. A quick question to them asking if they know of anyone requiring the services can sometimes end up with a job, this can also work if or when they run into someone who is interested in having some design work done. Word of mouth and recommendations are free, and trusted, advertising.</p>
<p>I have been accepted to continue to the Masters course in University of Ulster and in doing so have decided to form a &#8216;design collective&#8217; with other members of the Masters course. This will allow us to pitch for larger jobs, as there will be more of us available to work on them, and will also provided an area of support when working on larger and more daunting tasks. This may not be for everyone but it seems to make sense for the direction that I am going in at the moment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simplelinedesign.co.uk/blog/where-to-go-from-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AD?HD</title>
		<link>http://www.simplelinedesign.co.uk/downloads/adhd/</link>
		<comments>http://www.simplelinedesign.co.uk/downloads/adhd/#comments</comments>
		<pubDate>Sun, 30 May 2010 14:22:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://www.simplelinedesign.co.uk/?p=67</guid>
		<description><![CDATA[
I found this font for free on a website and instantly knew I had to do something with it. As there was no good reason to incorporate it into any of my designs I had a play with it instead.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/adhd.png"><img src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/adhd_620.png" alt="" title="adhd_620" width="620" height="180" class="aligncenter size-full wp-image-69" /></a></p>
<p>I found this font for free on a website and instantly knew I had to do something with it. As there was no good reason to incorporate it into any of my designs I had a play with it instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simplelinedesign.co.uk/downloads/adhd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Not my type</title>
		<link>http://www.simplelinedesign.co.uk/downloads/not-my-type/</link>
		<comments>http://www.simplelinedesign.co.uk/downloads/not-my-type/#comments</comments>
		<pubDate>Sun, 30 May 2010 14:02:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://www.simplelinedesign.co.uk/?p=64</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/not_my_type.png"><img src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/not_my_type_620.png" alt="" title="not_my_type_620" width="621" height="180" class="aligncenter size-full wp-image-66" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simplelinedesign.co.uk/downloads/not-my-type/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We&#8217;re nuts!</title>
		<link>http://www.simplelinedesign.co.uk/downloads/were-nuts/</link>
		<comments>http://www.simplelinedesign.co.uk/downloads/were-nuts/#comments</comments>
		<pubDate>Sun, 30 May 2010 13:37:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://www.simplelinedesign.co.uk/?p=59</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/nuts.png"><img src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/nuts_6201.png" alt="" title="nuts_620" width="620" height="180" class="aligncenter size-full wp-image-63" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simplelinedesign.co.uk/downloads/were-nuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Talent is a Myth</title>
		<link>http://www.simplelinedesign.co.uk/blog/talent-is-a-myth/</link>
		<comments>http://www.simplelinedesign.co.uk/blog/talent-is-a-myth/#comments</comments>
		<pubDate>Sun, 30 May 2010 13:29:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.simplelinedesign.co.uk/?p=57</guid>
		<description><![CDATA[It is often heard when talking about a prominent figure in a field to hear people saying things along the lines of "They're lucky they're so talented, it's so easy for them". This is such an incredible cop out. The reason that these people have talent is because of one thing and one thing only, practice.]]></description>
			<content:encoded><![CDATA[<p>It is often heard when talking about a prominent figure in a field to hear people saying things along the lines of &#8220;They&#8217;re lucky they&#8217;re so talented, it&#8217;s so easy for them&#8221;. This is such an incredible cop out. The reason that these people have talent is because of one thing and one thing only, practice. These are the people who have already put in their hours of work, and the really amazing ones are the ones who have put in so many more hours than that. One quote that I always found funny was Jeffery Zeldmans quote where he calls Andy Clarke a &#8220;triple talented bastard&#8221;, while a great quote, &#8220;a triple hard-working bastard&#8221; may be more appropriate.</p>
<p>According to Malcolm Gladwell it takes 10,000 hours to become an expert in something. As a 9-5 work day, that is 1250 days, 250 weeks or in an easier to comprehend unit, just under 5 years of working 40 hours a week. This means that for someone to become an expert, they need at the very least 5 years experience in their field.</p>
<p>The reason that some people in a field are seen as &#8216;talented&#8217;, the young designers that appear to be prodigys, is because these are the people who have reached their 10,000 hours mark early. The ones that instead of working 8 hours a day,  are working 14 hours a day, and the reason that they can work for 14 hours a day is because they are genuinely interested and fascinated by the field in which they work.</p>
<p>It therefore becomes obvious that the only way to become &#8216;talented&#8217; in your chosen field of profession is to be almost obsessivly interested in it and want to do it every day to become better. This also seems to reinforce the saying &#8220;do what you love and success will follow&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simplelinedesign.co.uk/blog/talent-is-a-myth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eureka Tweet</title>
		<link>http://www.simplelinedesign.co.uk/portfolio/eureka-tweet/</link>
		<comments>http://www.simplelinedesign.co.uk/portfolio/eureka-tweet/#comments</comments>
		<pubDate>Mon, 10 May 2010 11:04:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.simplelinedesign.co.uk/?p=55</guid>
		<description><![CDATA[Created as part of my dissertation project for University, Eureka Tweet takes the idea that there are many designers on twitter who post interesting and inspirational links every day to web sites and images that I would usually never encounter.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.eurekatweet.com"><img class="aligncenter size-full wp-image-56" title="Eureka_Tweet" src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/Eureka_Tweet.png" alt="" width="620" height="180" /></a></p>
<p>Created as part of my dissertation project for University, Eureka Tweet takes the idea that there are many designers on twitter who post interesting and inspirational links every day to web sites and images that I would usually never encounter. Some of these designers I follow, and therefore can find the links and the inspiration, but there are many designers out there that I have not had the chance to discover yet, and the inspirational links that they post are lost to me. Eureka Tweet searches the the public timeline for tweets that are relevent to some of the areas of design that I have chosen for section headers, these tweets are then filtered to only display those that contain links and are then displayed.</p>
<p>When creating this project I realised that I had the opportunity to really experiment with the design. This project was not for a client, so I could effectively ignore limitations such as bandwidth and really experiment into using multiple textures together to create an atmosphere on the site. Inspired by bar-room textures, I used a basic collection of only four textures to create the entire site. Apart from the runner bar at the top of the screen, all of the design elements on the site were created by hand using a combination of Illustrator and Photoshop. This project really let me try new things and develop my skills in these programs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simplelinedesign.co.uk/portfolio/eureka-tweet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Learning the Basics</title>
		<link>http://www.simplelinedesign.co.uk/blog/learning-the-basics/</link>
		<comments>http://www.simplelinedesign.co.uk/blog/learning-the-basics/#comments</comments>
		<pubDate>Fri, 07 May 2010 13:26:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.simplelinedesign.co.uk/?p=49</guid>
		<description><![CDATA[Recently I took a trip to the National Print Museum in Dublin and took a day course in letterpress printing. It is a course that is only run twice a year and is a dying art. Recently the art of letterpress has had somewhat of a resurgence, mostly with designers who want their business cards to stand out a little from the crowd.

I would recommend that any person who is in education in, or is currently working in, a field that is involved in digital design or digital art to spend some time thinking about the way that their particular discipline was plied before the computer came along.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/wood_type.jpg"><img class="size-full wp-image-50 aligncenter" title="Wood type" src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/wood_type.jpg" alt="Wood type" width="620" height="180" /></a></p>
<p>Recently I took a trip to the National Print Museum in Dublin and took a day course in letterpress printing. It is a course that is only run twice a year and is a dying art. Recently the art of letterpress has had somewhat of a resurgence, mostly with designers who want their business cards to stand out a little from the crowd.</p>
<p>I would recommend that any person who is in education in, or is currently working in, a field that is involved in digital design or digital art to spend some time thinking about the way that their particular discipline was plied before the computer came along.</p>
<h3>Inkjet killed the letterpress star.</h3>
<p>When working on a computer to create a design the &#8220;ctrl+z&#8221; is only a stretch of the fingers away, so there is an enormous amount of trial and error. It is so easy to type the copy into a program and try a number of different fonts in a program, experimenting with different styles to see what looks best.</p>
<p><a href="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/print_sign.jpg"><img class="aligncenter size-full wp-image-52" title="print_sign" src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/print_sign.jpg" alt="Sign to print museum" width="620" height="180" /></a></p>
<p>On my trip to the print museum I was given the chance to experience how type was set before the computer came on the scene. It was an insight into a trade that went into decline about the same time as the first Apple Macintosh computers were making their ways into design studios.</p>
<h3>Methods and Madness.</h3>
<p>From the first few minutes I became instantly aware at how much time was taken with planning out the designs. We were given a stack of blank business cards and a pen and told to think about some layouts that we would like to try out. As a designer who is used to doing a quick sketch on paper then opening Illustrator and experimenting, this was a little frustrating, as I just want to get started. We were told to seriously consider what fonts, and what font sizes, we would like to use for each item on the cards. Normally when doing designs I have a rough idea of what font I am going to use but this could change and be experimented with, with the click of a mouse.</p>
<p><a href="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/lead_type.jpg"><img class="aligncenter size-full wp-image-53" title="lead_type" src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/lead_type.jpg" alt="Lead type set" width="620" height="180" /></a></p>
<p>When we finally got around to setting the type it became clear very quickly why so much planning was required before getting stuck in. Setting type by hand is a very precise and time consuming activity, and if the wrong size of font is chosen and it doesn&#8217;t fit into the available space, the type needs to be removed, replaced in the case boxes and reset using a smaller font size. This took up to 30 minutes for each line of text, so after messing up one line of text, you made sure it didn&#8217;t happen again.</p>
<p>Even with planning everything out correctly, things were bound to go wrong and at one point I knocked over two lines of type that I had spent quite a while putting together, meaning the type had to be sorted through and the type reset.</p>
<h3>Sense of Achievement.</h3>
<p><a href="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/hand_press.jpg"><img class="aligncenter size-full wp-image-54" title="hand_press" src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/05/hand_press.jpg" alt="Hand printing press" width="620" height="180" /></a></p>
<p>Even though the setting of the type took a lot of thought, precision and hard work, when the type was finally set properly and securely held in a frame there is something very satisfying about hand printing and seeing the instant outcome with the ink still wet on the cards.</p>
<p>At the end of the day, with ink on our skin and sweat on our back it felt good to get away from the glow of the monitor and do something that really changes your perspective on how design has progressed. Since the workshop I have spent far more time planning than I ever did before, and I think that due to this my designs have improved. I would recommend days like this to everyone.</p>
<p>All of the pictures that I took on this day can be seen at <a href="http://www.flickr.com/photos/simplelinedesign/sets/72157623790613817/">my flickr</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simplelinedesign.co.uk/blog/learning-the-basics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Designers with Style</title>
		<link>http://www.simplelinedesign.co.uk/blog/designers-with-style/</link>
		<comments>http://www.simplelinedesign.co.uk/blog/designers-with-style/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 10:02:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.simplelinedesign.co.uk/?p=47</guid>
		<description><![CDATA[Should designers have a style, or should they try and create a design that suits the clients requests? Are designers more comfortable creating in a certain style or are they really expected to be 'pixel pushers' and be entirely at the whim of the client?]]></description>
			<content:encoded><![CDATA[<p>Should designers have a style, or should they try and create a design that suits the clients requests? Are designers more comfortable creating in a certain style or are they really expected to be &#8216;pixel pushers&#8217; and be entirely at the whim of the client, turning their hand to any genre that they are requested to do. Could or should the same designer one day create a site aimed to encourage learning for children and the next create a design for a speed metal band?</p>
<p>In every other area of creativity, artists have a personal &#8217;style&#8217; which distinguishes them from others. Musicians work is categorised into certain genres and writers tend to write only for one genre. Illustrators and painters tend to have a little more of a broader spectrum and their work can often be seen to have influences from a number of genres, but it is then pigeonholed into a genre of its own.</p>
<p>With this in mind, would it make sense for a designer to have a genre? It is often seen in portfolio sites that the designers create &#8216;clean and beautiful&#8217; designs, but what does this really mean? Beauty is in the eye of the beholder so what may be beautiful for one person may not be to the taste of another. This line is there to try and let a prospective client know that the designer is good at their job, that they create sites that are not so much &#8216;clean and beautiful&#8217;, but more often than not they create sites that are &#8216;usable and useful&#8217; and this is really no bad thing. I believe that any site should be designed to be usable and useful before the aesthetics are even thought about. In this case, as long as the content can be read, found and understood it does not really matter what genre the site is being created for.</p>
<p>Sometimes designers feel more comfortable designing in a style that is more familiar to them, because the designer has an interest in football, they would spend a lot of time on sites containing information on football and would therefore become more influenced by that style of design than a designer more interested in metal music. Experience and influence will have an impact on what style is more identifiable for each designer.</p>
<p>It would be interesting to find then, if designers do believe that they have a style or genre, would they then pass on work that they feel they are less suited to work on because they truly feel that a designer with a more applicable &#8217;style&#8217; would do a better job for the client? Or would they keep the job and do their best, producing a design that could have been better?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simplelinedesign.co.uk/blog/designers-with-style/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Breaking the grid</title>
		<link>http://www.simplelinedesign.co.uk/blog/breaking-the-grid/</link>
		<comments>http://www.simplelinedesign.co.uk/blog/breaking-the-grid/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 00:57:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.simplelinedesign.co.uk/?p=41</guid>
		<description><![CDATA[I have been reading a lot into grid design and I have two words regarding it… “BREAK IT”.]]></description>
			<content:encoded><![CDATA[<p>I have been reading a lot into grid design and I have two words regarding it… “BREAK IT”.</p>
<p><a href="#"><img class="aligncenter size-full wp-image-43" title="breakgrid" src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/03/breakgrid.png" alt="" width="620" height="180" /></a></p>
<p>That is not quite right, there is much to be learned from grid designs and they are very useful to all forms of layout design, it gives a structure on which to build a great layout, but after this is learned it can be greatly beneficial to break the grid that has been formed.</p>
<p>Breaking the grid allows for certain elements of your design to stand out and become more influential than other areas.</p>
<p><a href="www.gowalla.com"><img class="aligncenter size-full wp-image-44" title="gowalla" src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/03/gowalla.png" alt="" width="620" height="180" /></a></p>
<p>Structuring a design properly is extremely important and gives a sense of purpose to the content. The point of breaking the grid is to create interest in a particular element and make it stand out to the user. One area where this has proven very popular is its use in navigation elements, with the elements that have been selected, or the current page, being slightly of set from the others around it.</p>
<p><a href="www.iampaddy.com"><img class="aligncenter size-full wp-image-45" title="paddydonnelly" src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/03/paddydonnelly.png" alt="" width="620" height="180" /></a></p>
<p>There is a current small trend in designing more ‘organically’ laid out sites, and the majority of these are also using a more ‘magazine’ style for the concept of the sites. Some noticeable designers using this style are Jason Santa Maria and more recently Paddy Donelly, who have spent the time to individually design each of their blog posts. This style will not be applicable for every design and is perhaps an extreme example of the idea, but the idea can be used to provide a way to accentuate certain features of more traditional designs.</p>
<p>There are a number of simple and subtle ways to do this. A proportional offset of the logo, or the navigational elements can be used to attract the users attention and guide them to that area of the site. Large images can be used as background images to provide a sense of a flow to the design and even the footers can be offset to indicate that they are separate from the main content and an area of interest.</p>
<p><a href="http://www.voypiccareguides.org"><img class="aligncenter size-full wp-image-46" title="voypic" src="http://www.simplelinedesign.co.uk/wp-content/uploads/2010/03/voypic1.png" alt="" width="620" height="180" /></a></p>
<p>Obviously these techniques should be used sparingly but can be greatly effective when used properly. When done incorrectly the offset element can become an eyesore and break the flow of the rest of the site., when done correctly, the offset element can assist in both the flow of the overall design and in the usability of the site as a whole.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simplelinedesign.co.uk/blog/breaking-the-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
