<?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>Mark Cossey - Graphic and Web Designer &#187; How I make</title>
	<atom:link href="http://www.burning.me/category/how-i-make/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.burning.me</link>
	<description>I&#039;m a freelance Graphic and Web Designer based in Brighton and Hove</description>
	<lastBuildDate>Wed, 01 Feb 2012 14:42:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>My Journey to a Responsive Website</title>
		<link>http://www.burning.me/2011/12/my-journey-to-a-responsive-website/</link>
		<comments>http://www.burning.me/2011/12/my-journey-to-a-responsive-website/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 10:14:13 +0000</pubDate>
		<dc:creator>Mark Cossey</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[How I make]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Things I like]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Responsive]]></category>

		<guid isPermaLink="false">http://www.burning.me/?p=1492</guid>
		<description><![CDATA[Armed with a copy of <a href="http://www.abookapart.com/products/mobile-first" title="Mobile First">Mobile First</a> by <a href="http://www.lukew.com/ff/entry.asp?933">Luke Wroblewski</a> and <a href="http://hardboiledwebdesign.com/" title="Hardboiled Web Design">Hardboiled Web Design</a> by Andy Clarke I set about making my site <a href="http://www.smashingmagazine.com/responsive-web-design-guidelines-tutorials/">responsive</a>. 


<a href="http://www.burning.me/2011/12/my-journey-to-a-responsive-website"><img src="http://www.burning.me/wp-content/uploads/2011/12/responsive-site-iphone.jpg" alt="Site on iPhone" title="Site on iPhone"></a>]]></description>
			<content:encoded><![CDATA[<p>Armed with a copy of <a href="http://www.abookapart.com/products/mobile-first" title="Mobile First">Mobile First</a> by <a href="http://www.lukew.com/ff/entry.asp?933">Luke Wroblewski</a> and <a href="http://hardboiledwebdesign.com/" title="Hardboiled Web Design">Hardboiled Web Design</a> by Andy Clarke I set about making my site <a href="http://www.smashingmagazine.com/responsive-web-design-guidelines-tutorials/">responsive</a>. </p>
<p>Before I share the details of my journey, I&#8217;d like to add that the two books mentioned above were annoyingly good. Annoying in the fact that after reading each page I had to put the book down and try out what I&#8217;d just read. </p>
<h2>The Objective</h2>
<p>I was getting tired of my old site. There was content and functionality on there that I didn&#8217;t like and my analytics suggested that users were not finding certain things useful either. As well as the obvious responsivness, I wanted to:</p>
<ul>
<li>Reduce HTTP requests</li>
<li>Simplify core colour palette to use a single green colour and black</li>
<li>Develop stronger visual identity</li>
<li>Improve typographical hierarchy</li>
<li>Reduce portfolio items to better demonstrate my competencies and skills</li>
<li>Start to use HTML5 markup standards</li>
<li>Improve mobile and tablet usabilty</li>
</ul>
<p><img src="http://www.burning.me/wp-content/uploads/2011/12/old-site.jpg" alt="Old site" title="old-site"></p>
<h2>Reducing HTTP requests</h2>
<p>My old site had a bunch of plugins activated so I culled all but the ones that I really thought were essential. I was happy to see jQuery Colorbox go as it added a huge chunk of code to each of my pages and I didn&#8217;t feel that the functionality was needed any longer for my responsive site. I just removed image dimensions throughout and used:</p>
<p><code>img {<br />
	width: 100%;<br />
	height: 100%;<br />
}</code></p>
<p>The CSS above allows my images to scale depending on the users screen resolution.</p>
<p>I also removed a lot of the single image files that were used in my CSS and combined to create sprites e.g. the icons I use for my social links are actually one file and the CSS positions it accordingly.</p>
<p><strong>Sprite:</strong></p>
<p><img src="http://www.burning.me/wp-content/themes/burning-responsive/images/social-sprites.png" alt="Sprite"></p>
<p><strong>CSS example:</strong></p>
<p><code>.social-linkedin a {<br />
	float:left;<br />
	display:block;<br />
	width: 36px;<br />
	height: 36px;<br />
	margin-right:8px;<br />
	padding:0px;<br />
	text-decoration: none;<br />
	background-image: url(images/social-sprites.png);<br />
	background-repeat: no-repeat;<br />
	background-position: -141px 0;<br />
	-moz-transition: all 0.2s ease-in 0s;<br />
	-webkit-transition: all 0.2s ease-in 0s;<br />
	opacity:0.6;<br />
	filter:alpha(opacity=60);<br />
}</code></p>
<p>So you&#8217;ll notice that the class above will only show the LinkedIn icon due to the overall width and height and the background position of the image. My CSS uses a different class for each icon but each time the same &#8216;social-sprites.png&#8217; is used.</p>
<p>For my existing video content I added the following CSS (<a href="http://webdesignerwall.com/tutorials/css-elastic-videos">found here</a>):<br />
<code>.video-container {<br />
	position: relative;<br />
	padding-bottom: 56.25%;<br />
	padding-top: 30px;<br />
	height: 0;<br />
	overflow: hidden;<br />
}</p>
<p>.video-container iframe,<br />
.video-container object,<br />
.video-container embed {<br />
	position: absolute;<br />
	top: 0;<br />
	left: 0;<br />
	width: 100%;<br />
	height: 100%;<br />
}</code><br />
I then wrapped my video embed code like this:<br />
<code>&lt;div class="video-container"&gt;<br />
	&lt;iframe src="http://player.vimeo.com/video/6284199?title=0&amp;byline=0&amp;portrait=0" width="800" height="450" frameborder="0"&gt;&lt;/iframe&gt;<br />
&lt;/div&gt;</code></p>
<p>By deactivating lots of my previous plugins I&#8217;ve also managed to limit the number of CSS files used in my site. I can still reduce this down to one single file but at the moment, the plugin that creates my page numbers (on my blog list page and search results) also uses another CSS file.</p>
<p>I also removed lots of content from the sidebar (Facebook widget, generic text, blog categories) which has helped to removed page bloat.</p>
<h2>Core colour palette and visual identity</h2>
<p>My old site used multiple shades of green and I didn&#8217;t feel it was working very well. I&#8217;d also introduced a third purple colour but wasn&#8217;t happy with that.</p>
<p>For the new design I limited myself to a single green colour value (#6ECF50) and then solid black. This helped me create a stronger visual identity and also added more contrast which was one of my other objectives. My old site used more washed out greens and was a bit inconsistent.</p>
<p><img src="http://www.burning.me/wp-content/uploads/2011/12/new-logo.jpg" alt="New Logo" title="new-logo" ></p>
<p>I used the same colour values for my logo re-design and I wanted to create a logo that worked well as a central asset and was high contrast.</p>
<h2>Improve typographical hierarchy</h2>
<p>I&#8217;m a big fan of <a href="https://typekit.com/" title="Typekit">Typekit</a> and I use their font service for my custom fonts. My H1 and H2 tag use <a href="https://typekit.com/fonts/league-gothic">League Gothic</a>. I use H1 for all my page headings and H2 for sub headings. Any other heading that gets used in a page is simple wrapped with a <code><strong></code> tag. My body text is set at 14px and uses a font family or Helvetica, Arial, Lucida Grand and then sans-serif. I set the body text to a very dark grey (#333333) rather than black to help with readability &#8211; I just feel it reads better than using a solid black). I use a larger font for the date (18px) and lighter shade of grey again (#666666) to maintain the content hierarchy. For links I use my same green value (#6ECF50). By simplifying my font styles I hoped to meet the objective of improving my typographical hierarchy.</p>
<h2>Reduce portfolio items to better demonstrate my competencies and skills</h2>
<p>My previous portfolio had become bloated with items that showed a wide range of skills. I felt there were too many thumbnails and too much variety that could be confusing to prospective employers or clients. It was hard to see what it was that I actually did. </p>
<p>I decided to pick 3 main projects which used various skills and simply used thumbnails and a short paragraph of text to give and overview. If the user wanted to find out more, I included a link to a dedicated landing page for each project. Hopefully that will make it simpler for the user and also highlight my skills better.</p>
<h2>Start to use HTML5 markup standards</h2>
<p>I&#8217;m still really scrathching the surface of HTML5 capabilities so haven&#8217;t used any of the more advanced features. What I have tried to do is use the correct tags and markup to organise my content. My header, footer and sidebar are wrapped with <code>&lt;section&gt;</code> and my individual blog posts are wrapped with <code>&lt;article&gt;</code>. I also use <code>&lt;nav&gt;</code> wrapped around my top navigation bar, <code>&lt;header&gt;</code> wrapped around all the content in my header section and then <code>&lt;footer&gt;</code>, you guessed it, around all the content in my footer. It&#8217;s quite handy that WordPress splits it&#8217;s templates up like this too.</p>
<p>I&#8217;ve also used some HTML5 form features to help with my mobile experience too. Using <code>type="email"</code> and <code>type="url"</code> will make sure that the correct keyboard is displayed in iOS.</p>
<p>I used the <a href="http://html5boilerplate.com/">HTML5 boilerplate template</a> to help get me started but I spent time reading through the documentation so that I understood the best I could what each part does.</p>
<h2>Using a responsive design to improve mobile and tablet usability</h2>
<p>This was a major objective for me. I&#8217;d previously used the WPTouch plugin to display my site on mobile devices but felt as though I didn&#8217;t have full control over it. I wanted to design my site from the ground up for each device, in portrait and landscape and retain full visual identity.</p>
<p>I spent a long time looking at sites like <a href="http://mediaqueri.es/">Media Queries</a> that lists the best responsive web designs. I wanted to see how other people were designing for mobile, tablet and desktop combined.</p>
<p>With the knowledge that I&#8217;d picked up in Mobile First I ran with Luke&#8217;s theory of a mobile user having one thumb and one eyeball. This theory suggests that a user viewing content on a mobile device is likely to be doing so whilst also looking around them and will only be using one thumb to navigate. For this reason I increased the size of my smallest buttons to be minimum of 22px in height and width with a minimum of 4 pixels of clearance between buttons. In practice, most of my content buttons and main navigation buttons much bigger than this.</p>
<p><img src="http://www.burning.me/wp-content/uploads/2011/12/new-nav.jpg" alt="New buttons" title="new-nav" ></p>
<p>I also decided to reduce the amount of content I displayed on mobile devices on my homepage. I go from showing 1 main image, 3 thumbs and some text (per portfolio item) at desktop (or iPad lanscape) to 1 main image, 1 thumb and some text at iPhone landscape. I then reduce further to 1 main image and some text at iPhone portrait size. At each size I always show the &#8216;More&#8217; button that will take the user to the full content page which has full information no matter what device they use. I do this by using <a href="http://www.w3.org/TR/css3-mediaqueries/">media queries</a> in my CSS and alter sizes, visibility and positioning accordingly. If you&#8217;re viewing this post on a laptop or desktop with a modern browser, you can resize the browser window to see these designs appear at various break-points.</p>
<p>I also moved content around at various sizes to make the most of the screen sizes. Navigation goes from being left aligned at desktop size to centred on iPhone and iPad (portrait). My footer content goes from 3 colums to 1 column at the smaller sizes too. I adjusted margins and padding to improve my vertical grid.</p>
<p>I spent time making sure my content and font sizes were readable at various sizes but also paid attention to forms to make sure the fields were accessible when iOS keyboards appeared etc.</p>
<h2>Feeback</h2>
<p>When I was at a comfortable stage with my design asked around for feedback and was given some great tips by <a href="http://www.thomasprior.co.uk/">Tom Prior</a> who made some great suggestions for my top navigation. </p>
<p>I&#8217;de also like to ask you, if you&#8217;ve taken the time to read this, to also feedback on what you think of the design. All suggestions very welcome.</p>
<p><img src="http://www.burning.me/wp-content/uploads/2011/12/responsive-site-iphone.jpg" alt="Site on iPhone" title="Site on iPhone"></p>
<div class="video-container">
<iframe src="http://player.vimeo.com/video/25548033?title=0&amp;byline=0&amp;portrait=0" width="600" height="338" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://www.burning.me/2011/12/my-journey-to-a-responsive-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Design Jam &#8211; What to expect</title>
		<link>http://www.burning.me/2011/11/design-jam-what-to-expect/</link>
		<comments>http://www.burning.me/2011/11/design-jam-what-to-expect/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 23:39:15 +0000</pubDate>
		<dc:creator>Mark Cossey</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[How I make]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Things I like]]></category>
		<category><![CDATA[Brighton]]></category>
		<category><![CDATA[Design Jam]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://www.burning.me/?p=1404</guid>
		<description><![CDATA[On Saturday 5th November 2011 I attended <a href="http://www.designjams.org/wiki/Design_Jam_Brighton">Design Jam Brighton</a>. It was my first time attending an event like this so I didn't really know what to expect.

From the <a href="http://www.designjams.org/wiki/Main_Page">Design Jam Wiki page</a> it explained that: "Design Jams are one-or-two-day design sessions, during which people team up to tackle engaging User Experience (UX) challenges."

<a href="http://www.burning.me/2011/11/design-jam-what-to-expect"><img src="http://www.burning.me/wp-content/uploads/2011/11/image-02.jpg" alt="" title="Design Jam Brighton"  /></a>]]></description>
			<content:encoded><![CDATA[<p>On Saturday 5th November 2011 I attended <a href="http://www.designjams.org/wiki/Design_Jam_Brighton">Design Jam Brighton</a>. It was my first time attending an event like this so I didn&#8217;t really know what to expect.</p>
<p>From the <a href="http://www.designjams.org/wiki/Main_Page">Design Jam Wiki page</a> it explained that:</p>
<blockquote><p><strong>&#8220;Design Jams are one-or-two-day design sessions, during which people team up to tackle engaging User Experience (UX) challenges.&#8221;</strong></p></blockquote>
<p>And the Design Jam Brighton wiki page had a little more information:</p>
<blockquote><p><strong>&#8220;Attendees will form groups based on the skills they contribute and what they’d like to learn. Teams will then work to answer a design brief unveiled on the day. Teams are self-organising and can work however they like, be that conducting research, sketching, running guerrilla usability tests, creating visual mockups and so on.&#8221;</strong></p></blockquote>
<p>Upon arrival we were given a brief run-through and timetable for the day and then instructed to make our way to a table which would then make up our team. We ended up with roughly 9 teams of 5 so it was a very well attended event (with a waiting list to boot).</p>
<p>Each team was handed the same brief and we had a short amount of time to decide on and prepare our elevator pitch. Once agreed, each team took their turn to present to everyone their chosen idea. The rest of the day was then left to us to design our solution and prepare a presentation for the end of the day.</p>
<p><a href="http://www.flickr.com/photos/wyebirds/6314886027/in/photostream"><img src="http://www.burning.me/wp-content/uploads/2011/11/image-02.jpg" alt="" title="Design Jam Brighton"  /></a></p>
<p>I don&#8217;t want to go into much detail about the brief and solutions because, as from the title of this post suggests, I&#8217;d like to concentrate on what to expect and my experience of the event.</p>
<p>It was a breath of fresh air to be handed such a wide open brief with few limitations and financial restrictions. Our team had the opportunity to think openly and freely and this in itself was the essence of the event. An amazing group of mentors were on hand to offer suggestions and advice on moving our projects through tricky terrain and they did so with careful thought and knowledge. Being surrounded by so many like-minded people who all had a desire to design and create was pretty thrilling.</p>
<p>I should mention too that these events are free and are supported by volunteers and this event in particular was hosted by a local digital agency Cogapp. </p>
<p><a href="http://www.flickr.com/photos/wyebirds/6314852003/in/photostream"><img src="http://www.burning.me/wp-content/uploads/2011/11/image-01.jpg" alt="" title="Design Jam Brighton" /></a></p>
<p><a href="http://www.flickr.com/photos/cogapp/6323081678/in/pool-1689784@N24/"><img src="http://www.burning.me/wp-content/uploads/2011/11/image-03.jpg" alt="" title="Design Jam Brighton" /></a></p>
<p><a href="http://www.flickr.com/photos/cogapp/6323082204/in/pool-1689784@N24/"><img src="http://www.burning.me/wp-content/uploads/2011/11/image-04.jpg" alt="" title="Design Jam Brighton" /></a></p>
<h2>Getting the most out of the event</h2>
<p>As is usually the case, you get out what you put in so be active and have an open mind. Here are some other tips:</p>
<ul>
<li>Make the most of the mentors and ask for feedback when you feel you need to. </li>
<li>Although time is limited, try and find a few minutes to chat to other teams and find out how they work too. </li>
<li>Take on a task or role in your group that differs from your normal job or skill-set.</li>
<li>Take photos and video throughout the course of the day.</li>
<li>Share your ideas, processes and experience.</li>
</ul>
<h2>People who made it happen</h2>
<p><strong>Hosts</strong><br />
<a href="http://www.cogapp.com">Cogapp</a></p>
<p><strong>Mentors</strong><br />
Claire Rowland &#8211; <a href="http://www.twitter.com/@clurr ">@clurr</a><br />
Ben Bashford &#8211; <a href="http://www.twitter.com/@bashford  ">@bashford </a><br />
Vanessa Harden &#8211; <a href="http://www.twitter.com/@vanessaharden">@vanessaharden </a><br />
Greg Hadfield &#8211; <a href="http://www.twitter.com/@GregHadfield">@GregHadfield</a> </p>
<p><strong>Organisers</strong><br />
Danny Hope &#8211; <a href="http://www.twitter.com/@yandle">@yandle</a><br />
Alison Austin &#8211; <a href="http://twitter.com/#!/alicenwondrlnd">@alicenwondrlnd</a><br />
Patrick Sansom &#8211; <a href="http://twitter.com/#!/Patrick_Sansom">@Patrick_Sansom</a><br />
Gavin Wye &#8211; <a href="http://twitter.com/#!/gavinwye">@gavinwye</a><br />
Cennydd Bowles &#8211; <a href="http://twitter.com/#!/Cennydd">@Cennydd</a></p>
<p><strong>Sponsors</strong><br />
<a href="http://www.think.eu/">TH_NK</a><br />
<a href="http://www.cogapp.com/">Cogapp</a><br />
<a href="http://www.madgex.com/">Madgex</a><br />
<a href="http://www.brighton.ac.uk/">University of Brighton</a></p>
<p>Fancy giving it a try? Keep checking <a href="http://www.designjams.org/wiki/Design_Jam_Brighton">http://www.designjams.org/wiki/Design_Jam_Brighton</a> for the next event in Brighton or follow <a href="http://www.twitter.com/designjambri">@designjambri</a>. International events can be found here: <a href="http://www.designjams.org/wiki/Main_Page">http://www.designjams.org/wiki/Main_Page</a>.</p>
<h2>Further reading</h2>
<p>Flickr <a href="http://www.flickr.com/groups/designjambrighton/">http://www.flickr.com/groups/designjambrighton/</a><br />
Lanyrd <a href="http://lanyrd.com/2011/design-jam-brighton ">http://lanyrd.com/2011/design-jam-brighton </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.burning.me/2011/11/design-jam-what-to-expect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing with CSS3 animations and HTML5</title>
		<link>http://www.burning.me/2011/07/playing-with-css3-animations-and-html5/</link>
		<comments>http://www.burning.me/2011/07/playing-with-css3-animations-and-html5/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 23:00:09 +0000</pubDate>
		<dc:creator>Mark Cossey</dc:creator>
				<category><![CDATA[How I make]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.burning.me/?p=1357</guid>
		<description><![CDATA[Just been having a little play with some CSS3 <strong>animation</strong> and <strong>transform</strong> (and a tiny bit of HTML5). I used <a href="http://net.tutsplus.com/tutorials/html-css-techniques/html-5-and-css-3-the-techniques-youll-soon-be-using/">this</a> and <a href="http://www.the-art-of-web.com/css/css-animation/">this</a> for information. Only viewable in Firefox, Chrome, Safari and possible Opera(?) though.

Click to see <a href="http://www.burning.me/type-test/font-test.html">demo</a>.

<a href="http://www.burning.me/type-test/font-test.html"><img src="http://www.burning.me/wp-content/uploads/2011/07/html5.jpg" alt="CSS3 animations and HTML5" title="CSS3 animations and HTML5"  /></a>]]></description>
			<content:encoded><![CDATA[<p>Just been having a little play with some CSS3 <strong>animation</strong> and <strong>transform</strong> (and a tiny bit of HTML5). I used <a href="http://net.tutsplus.com/tutorials/html-css-techniques/html-5-and-css-3-the-techniques-youll-soon-be-using/">this</a> and <a href="http://www.the-art-of-web.com/css/css-animation/">this</a> for information. Only viewable in Firefox, Chrome, Safari and possible Opera(?) though.</p>
<p>Click to see <a href="http://www.burning.me/type-test/font-test.html">demo</a>.</p>
<p><a href="http://www.burning.me/type-test/font-test.html"><img src="http://www.burning.me/wp-content/uploads/2011/07/html5.jpg" alt="CSS3 animations and HTML5" title="CSS3 animations and HTML5" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.burning.me/2011/07/playing-with-css3-animations-and-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are you thinking?</title>
		<link>http://www.burning.me/2011/07/what-are-you-thinking/</link>
		<comments>http://www.burning.me/2011/07/what-are-you-thinking/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 14:06:47 +0000</pubDate>
		<dc:creator>Mark Cossey</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[How I make]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[logo design]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://www.burning.me/?p=1322</guid>
		<description><![CDATA[I designed a logo for a client recently and I thought the idea I came up with was great. The design ticked all the right boxes (or so I thought) but what excited me most about it was it's versatility. I could see parts of the logo that would really develop the clients visual identity and I felt it would work well across many mediums. The logo worked well big, small, reversed and in full colour. The icon used in the logo could be used on it's own to enhance branding and create something which I felt was a modern and forward thinking design.

<a href="http://www.burning.me/2011/07/what-are-you-thinking/"><img src="http://www.burning.me/wp-content/uploads/2011/07/rubble-600x450.jpg" alt="What are you thinking?" title="rubble" /></a>]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;You are not normal. Sorry but that&#8217;s the way it is. You design for people that are normal but you don&#8217;t fit into that category as, by definition, you don&#8217;t conform to the normal or standard type. You are abnormal. It&#8217;s not easy being abnormal and day-to-day life can sometimes be a struggle. </p>
<p>Your thoughts and ideas are so different to those of normal people that interaction in the form of conversation or debate with said normal people can be almost impossible. Sure, you do a good job of producing things for normal people but that doesn&#8217;t make you normal and the production line is far from easy. If you were normal, you&#8217;d have no idea what it was you were making or who it was for.&#8221;</em></p>
<h2>Look what I&#8217;m making for you</h2>
<p>I designed a logo for a client recently and I thought the idea I came up with was great. The design ticked all the right boxes (or so I thought) but what excited me most about it was it&#8217;s versatility. I could see parts of the logo that would really develop the clients visual identity and I felt it would work well across many mediums. The logo worked well big, small, reversed and in full colour. The icon used in the logo could be used on it&#8217;s own to enhance branding and create something which I felt was a modern and forward thinking design.</p>
<p><a href="http://www.flickr.com/photos/mbk/489220891/"><img src="http://www.burning.me/wp-content/uploads/2011/07/rubble-600x450.jpg" alt="rubble" title="rubble" /></a></p>
<p>Great. Awesome. Cool. Whooppeedooo. These are the words I didn&#8217;t hear upon presenting the logo in it&#8217;s early stages. I don&#8217;t remember the exact words but the general feeling was fairly underwhelming, there was possibly the mention of not liking the colour but I don&#8217;t remember exactly. What I do remember was the client clearly not sharing my excitement and enthusiasm for the design.</p>
<h2>What was I thinking?</h2>
<p>See, I&#8217;d made a mistake with my design process as I wanted to make my client feel empowered and involved with what I was doing. I think this is normally good practice with larger projects that are slightly more evolved but when it comes to concepts and ideas it&#8217;s important to remember that you and I are abnormal. All those ideas and thoughts of clever logo usage and evolution of the clients visual identity are all well and good, but they are of no use to anyone except you whilst they bounce around your abnormal head. I un-fairly expected my client to share my design vision when showing them where I was at with their logo in it&#8217;s infancy &#8211; <strong>What was I thinking?</strong></p>
<p>I should add that I don&#8217;t normally work like this. I think I must have read an article somewhere about involving clients in your design process and decided to give it a try. As I mentioned before I&#8217;ve no doubt this practice works in certain situations but <strong>don&#8217;t think for one minute other people will see what&#8217;s not there</strong>. I saw it, and I&#8217;m sure you would have seen it (at least I hope you would have) but we are a bit abnormal upstairs when it comes to this sort of thing remember.</p>
<h2>Don&#8217;t fix it if it aint broken&#8230; oh wait, its broken</h2>
<p>I&#8217;m going back to my tried and tested way of doing things, especially with logo design. Projects are like child births &#8211; the initial plan is pretty much the same but they all end up different in the end. I would suggest the following when it comes to presenting your ideas:</p>
<p><a href="http://www.burning.me/wp-content/uploads/2011/07/you-the-man2.gif"><img src="http://www.burning.me/wp-content/uploads/2011/07/you-the-man2-600x600.gif" alt="Yout the man" title="you-the-man" /></a></p>
<p>Keep certain stuff back from the client &#8211; they don&#8217;t need to see the nuts and bolts and it will probably have a negative impact on the whole project. Don&#8217;t forget that <strong>they are paying you to do something that they can&#8217;t do</strong> and by involving them too much might make them think they need to, or are being encouraged to chip in &#8211; even worse, they might think you are ballsing the whole thing up. </p>
<p><strong>Now back to your felt-tips, weirdo&#8230;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.burning.me/2011/07/what-are-you-thinking/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using tinted grey colours in web design</title>
		<link>http://www.burning.me/2011/07/using-tinted-grey-colours-in-web-design/</link>
		<comments>http://www.burning.me/2011/07/using-tinted-grey-colours-in-web-design/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 12:57:19 +0000</pubDate>
		<dc:creator>Mark Cossey</dc:creator>
				<category><![CDATA[How I make]]></category>
		<category><![CDATA[Colour]]></category>
		<category><![CDATA[desgn]]></category>
		<category><![CDATA[grey]]></category>
		<category><![CDATA[greys]]></category>
		<category><![CDATA[harmony]]></category>
		<category><![CDATA[tints]]></category>

		<guid isPermaLink="false">http://www.burning.me/?p=1297</guid>
		<description><![CDATA[Grey tints have always been tricky in web design and are probably some of the colours that are consistently inconsistent in the way they display across monitors and devices using various profiles and settings. With that being said greys are still frequently used in web design for backgrounds and interface elements.

There are times when straight up greys just aren’t working with a design and appear to making the layout flat and lifeless. If you reach this point then it might be worth introducing a very subtle tint of one of your other primary or secondary colours into the grey.

<a href="http://www.burning.me/2011/07/using-tinted-grey-colours-in-web-design"><img src="http://www.burning.me/wp-content/uploads/2011/07/grey-colours-tinted-600x591.jpg" alt="Tinted grey colours" title="Tinted grey colours" /></a>]]></description>
			<content:encoded><![CDATA[<p>Grey tints have always been tricky in web design and are probably some of the colours that are consistently inconsistent in the way they display across monitors and devices using various profiles and settings. With that being said greys are still frequently used in web design for backgrounds and interface elements.</p>
<p>There are times when straight up greys just aren’t working with a design and appear to making the layout flat and lifeless. If you reach this point then it might be worth introducing a very subtle tint of one of your other primary or secondary colours into the grey.</p>
<p>I use Photoshop to mock-up designs so the images below show how I use the eyedropper tool to select a colour value that shares the same contrast as my original grey but also includes a very subtle hint of my secondary colour (in this case green).</p>
<h2>Original grey colours</h2>
<p>These original greys appeared too flat and didn’t work well with the overall colour harmony.</p>
<p><a href="http://www.burning.me/wp-content/uploads/2011/07/grey-colours-untinted1.jpg"><img src="http://www.burning.me/wp-content/uploads/2011/07/grey-colours-untinted1-600x591.jpg" alt="Un tinted greys" title="Un tinted greys" /></a></p>
<h2>Tinted grey colours</h2>
<p>The new colour values share the contrast but have subtle hints of my secondary (green) colour.</p>
<p><a href="http://www.burning.me/wp-content/uploads/2011/07/grey-colours-tinted.jpg"><img src="http://www.burning.me/wp-content/uploads/2011/07/grey-colours-tinted-600x591.jpg" alt="Tinted grey colours" title="Tinted grey colours" /></a></p>
<h2>Other sites using tinted greys</h2>
<p><a href="http://unfold.no"><img src="http://www.burning.me/wp-content/uploads/2011/07/unfold-no-600x450.jpg" alt="http://unfold.no" title="http://unfold.no" /></a></p>
<p><a href="http://unfold.no">http://unfold.no</a></p>
<p><a href="http://typekit.com/libraries/full"><img src="http://www.burning.me/wp-content/uploads/2011/07/typekit-600x450.jpg" alt="http://typekit.com/libraries/full" title="http://typekit.com/libraries/full" /></a></p>
<p><a href="http://typekit.com/libraries/full">http://typekit.com/libraries/full</a> (used in the dark font display menu bar)</p>
<p><a href="http://www.egopop.net/"><img src="http://www.burning.me/wp-content/uploads/2011/07/egopop-600x450.jpg" alt="http://www.egopop.net/" title="http://www.egopop.net/" /></a></p>
<p><a href="http://www.egopop.net/">http://www.egopop.net/</a></p>
<p><a href="http://nizoapp.com/"><img src="http://www.burning.me/wp-content/uploads/2011/07/nizo-app-600x450.jpg" alt="http://nizoapp.com/" title="http://nizoapp.com/" /></a></p>
<p><a href="http://nizoapp.com/">http://nizoapp.com/</a></p>
<h2>Tips</h2>
<p> &#8211; Keep the colour tints really subtle i.e. just about noticeable<br />
 &#8211; Technique works best for designs that only use a 2 or 3 colour hierarchy<br />
 &#8211; Experiment with the tint and keep reviewing the overall design<br />
 &#8211; A little bit of &#8216;noise&#8217; texture on the greys can also help lift the design</p>
<p>I&#8217;m on the look-out for other sites that use greys well so if you know of any please do comment with a link below (thanks).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.burning.me/2011/07/using-tinted-grey-colours-in-web-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Playing with type</title>
		<link>http://www.burning.me/2011/06/playing-with-type/</link>
		<comments>http://www.burning.me/2011/06/playing-with-type/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 08:42:54 +0000</pubDate>
		<dc:creator>Mark Cossey</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[How I make]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[poster]]></category>
		<category><![CDATA[Type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.burning.me/?p=1260</guid>
		<description><![CDATA[I've been playing around with some ideas for a personal typography project. The idea started as a follow on from my <a href="http://www.burning.me/about/#infographic">infographic</a> project which was a visual representation of my skill-set.

<a href="http://www.burning.me/2011/06/playing-with-type/"><img src="http://www.burning.me/wp-content/uploads/2011/06/type-small.jpg" alt="type-small" title="type-small"  /></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing around with some ideas for a personal typography project. The idea started as a follow on from my <a href="http://www.burning.me/about/#infographic">infographic</a> project which was a visual representation of my skill-set.</p>
<p><a href="http://www.flickr.com/photos/incendios/5828158997/sizes/o/in/photostream/"><img src="http://www.burning.me/wp-content/uploads/2011/06/type-small.jpg" alt="type-small" title="type-small" /></a><br />
<small><a href="http://www.flickr.com/photos/incendios/5828158997/sizes/o/in/photostream/">See full size on Flickr here</a></small></p>
<p><a href="http://www.flickr.com/photos/incendios/5828158997/sizes/o/in/photostream/"><img src="http://www.burning.me/wp-content/uploads/2011/06/type-small-detail.jpg" alt="" title="type-small-detail" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.burning.me/2011/06/playing-with-type/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a logo usage guide</title>
		<link>http://www.burning.me/2011/04/creating-a-logo-usage-guide/</link>
		<comments>http://www.burning.me/2011/04/creating-a-logo-usage-guide/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 23:06:45 +0000</pubDate>
		<dc:creator>Mark Cossey</dc:creator>
				<category><![CDATA[How I make]]></category>
		<category><![CDATA[guidelines]]></category>
		<category><![CDATA[Logo usage guide]]></category>
		<category><![CDATA[Style]]></category>

		<guid isPermaLink="false">http://www.burning.me/?p=1188</guid>
		<description><![CDATA[I recently completed a logo design project for a client, and part of the original specification was to produce an accompanying logo usage guide. The guide was produced in a PDF format and contained comprehensive information on the structure, font usage and colouring of the logo as well as how the logo should be placed when used in various situations. The guide also detailed information on the file formats I supplied when delivering the completed project.

<img src="http://www.burning.me/wp-content/uploads/2011/04/image01-600x374.jpg" alt="Creating a logo usage guide" title="Creating a logo usage guide"  />]]></description>
			<content:encoded><![CDATA[<p>I recently completed a logo design project for a client, and part of the original specification was to produce an accompanying logo usage guide. The guide was produced in a PDF format and contained comprehensive information on the structure, font usage and colouring of the logo as well as how the logo should be placed when used in various situations. The guide also detailed information on the file formats I supplied when delivering the completed project.</p>
<p><img src="http://www.burning.me/wp-content/uploads/2011/04/image01-600x374.jpg" alt="Creating a logo usage guide" title="Creating a logo usage guide" /></p>
<h2>Structuring the guide</h2>
<p>The guide was structured as follows:</p>
<ul>
<li>Anatomy </li>
<li>Colour versions </li>
</ul>
<p><strong>How to use</strong></p>
<ul>
<li>Spacing</li>
<li>Sizing</li>
<li>Background</li>
</ul>
<p><strong>File formats</strong></p>
<ul>
<li>Supplied formats</li>
<li>What should I use? </li>
<li>How not to use the logo </li>
</ul>
<h2>Anatomy</h2>
<p>This section breaks the logo down and details each part. Colour values for both print and screen (Pantone, CMYK, HEX and RGB) were included and in this case I also listed the fonts used in the logo.</p>
<h2>Colour versions</h2>
<p>For this particular logo design I provided 3 colour versions of the same logo design. The versions were full colour, black and reversed (white). For this section of the guide I illustrated these so that it was an easy reference for the client.<br />
<img src="http://www.burning.me/wp-content/uploads/2011/04/image02-600x374.jpg" alt="Colour versions" title="Colour versions" /></p>
<h2>How to use</h2>
<p>The how to use section details correct use of spacing, sizing and selecting the correct logo depending on the background.</p>
<p><strong>Spacing</strong><br />
Here I detail what the minimum clearance should be from the edge of the logo to edge of the container it will be used in. I also suggest how the logo should be placed on a page or document.<br />
<img src="http://www.burning.me/wp-content/uploads/2011/04/image03-600x374.jpg" alt="Spacing" title="Spacing" /></p>
<p><strong>Sizing</strong><br />
Details on the minimum size the logo should used at in both pixels and millimetres.<br />
<img src="http://www.burning.me/wp-content/uploads/2011/04/image04-600x374.jpg" alt="Sizing" title="Sizing" /></p>
<p><strong>Background</strong><br />
When the logo will be used on a coloured background I suggest which version of the logo should be used. I also include examples.<br />
<img src="http://www.burning.me/wp-content/uploads/2011/04/image05-600x374.jpg" alt="Background" title="Background" /></p>
<h2>File formats</h2>
<p>The logo was supplied in a number of different file formats for web and print use. This page details the file names and also use thumbnails for easy reference.<br />
<img src="http://www.burning.me/wp-content/uploads/2011/04/image06-600x374.jpg" alt="File formats" title="File formats" /></p>
<p><strong>What should I use?</strong><br />
To make it easy for the client to choose which file format should be used in certain situations, I included a page with examples.<br />
<img src="http://www.burning.me/wp-content/uploads/2011/04/image07-600x374.jpg" alt="What should I use" title="What should I use" /></p>
<p><strong>How not to use the logo</strong><br />
To finish the document I included a page with some example thumbnails of how the logo shouldn&#8217;t be used. This included things like squashing the logo, using incorrect spacing or changing the logo colours.<br />
<img src="http://www.burning.me/wp-content/uploads/2011/04/image08-600x374.jpg" alt="How not to use the logo" title="How not to use the logo" /></p>
<h2>Conclusion</h2>
<p>Delivering these documents with your finished logo design can add a great deal of value for the client. When dealing with larger companies it can be handy for the client to make this document available internally to avoid mistakes being made.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.burning.me/2011/04/creating-a-logo-usage-guide/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A logo design for Joel Richmonds Accountants</title>
		<link>http://www.burning.me/2011/01/a-logo-design-for-joel-richmonds-accountants/</link>
		<comments>http://www.burning.me/2011/01/a-logo-design-for-joel-richmonds-accountants/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 00:02:40 +0000</pubDate>
		<dc:creator>Mark Cossey</dc:creator>
				<category><![CDATA[How I make]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[logo design]]></category>

		<guid isPermaLink="false">http://www.burning.me/?p=1091</guid>
		<description><![CDATA[I did some work for a new accountancy firm based in London recently. I wanted to try and create an interesting icon from the letters 'j' and 'r' whilst keeping the overall feel simple and clean. This is the end result (though the client never went for it):

<a href="http://www.burning.me/2011/01/a-logo-design-for-joel-richmonds-accountants"><img src="http://www.burning.me/wp-content/uploads/2011/01/joel-richmond-large-600x409.jpg" alt="Joel Richmond Accountants Logo Design" title="Joel Richmond Accountants Logo Design" /></a>]]></description>
			<content:encoded><![CDATA[<p>I did some work for a new accountancy firm based in London recently. I wanted to try and create an interesting icon from the letters &#8216;j&#8217; and &#8216;r&#8217; whilst keeping the overall feel simple and clean. This is the end result (though the client never went for it):</p>
<p><a href="http://www.burning.me/wp-content/uploads/2011/01/joel-richmond-large.jpg"><img src="http://www.burning.me/wp-content/uploads/2011/01/joel-richmond-large-600x409.jpg" alt="Joel Richmond Accountants Logo Design" title="Joel Richmond Accountants Logo Design" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.burning.me/2011/01/a-logo-design-for-joel-richmonds-accountants/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s wrong with this poster?</title>
		<link>http://www.burning.me/2011/01/whats-wrong-with-this-poster/</link>
		<comments>http://www.burning.me/2011/01/whats-wrong-with-this-poster/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 22:00:12 +0000</pubDate>
		<dc:creator>Mark Cossey</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[How I make]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[poster design]]></category>

		<guid isPermaLink="false">http://www.burning.me/?p=1044</guid>
		<description><![CDATA[My route to the office takes me underneath a railway viaduct and I pass the same advertising billboard everyday. There are a number of billboards just underneath the viaduct and the space gets bought up by smaller local businesses and the larger national corporates. The quality of the posters is generally pretty good and the environment has been been considered. 

<a href="http://www.burning.me/2011/01/whats-wrong-with-this-poster"><img src="http://www.burning.me/wp-content/uploads/2010/12/photos-compiled-large-600x387.jpg" alt="What's wrong with this poster?" title="David Rhodes Fruiterers and Florist Poster" /></a>]]></description>
			<content:encoded><![CDATA[<p>My route to the office takes me underneath a railway viaduct and I pass the same advertising billboard everyday. There are a number of billboards just underneath the viaduct and the space gets bought up by smaller local businesses and the larger national corporates. The quality of the posters is generally pretty good and the environment has been been considered. I make a point of the environment as the street gets lots of traffic and passing pedestrians but as you can see from Google Street View below, the road is not that wide:</p>
<p><iframe width="600" height="250" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=New+England+Street,+Brighton,+United+Kingdom&amp;sll=50.597186,2.702637&amp;sspn=6.737527,19.753418&amp;ie=UTF8&amp;hq=&amp;hnear=New+England+St,+Brighton,+Brighton+and+Hove+BN1+4,+United+Kingdom&amp;layer=c&amp;cbll=50.833315,-0.141726&amp;panoid=Yu_IyAKn0kjTZGVc5QXlMg&amp;cbp=13,71.61,,0,10.31&amp;ll=50.828453,-0.141706&amp;spn=0.017023,0.051498&amp;z=14&amp;output=svembed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=New+England+Street,+Brighton,+United+Kingdom&amp;sll=50.597186,2.702637&amp;sspn=6.737527,19.753418&amp;ie=UTF8&amp;hq=&amp;hnear=New+England+St,+Brighton,+Brighton+and+Hove+BN1+4,+United+Kingdom&amp;layer=c&amp;cbll=50.833315,-0.141726&amp;panoid=Yu_IyAKn0kjTZGVc5QXlMg&amp;cbp=13,71.61,,0,10.31&amp;ll=50.828453,-0.141706&amp;spn=0.017023,0.051498&amp;z=14" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p>There has been a poster up recently which caught my eye. The poster is for a local Fruiterers and Florist called David Rhodes and David has a few outlets around Brighton including one on the street where I live. I know he sells good stuff as I&#8217;ve seen the quality of his stock, but if I didn&#8217;t know that and the poster was the first experience I&#8217;d had of his business, I wouldn&#8217;t get that message.</p>
<p>The poster is so overloaded with text content that it&#8217;s pretty hard to even see what it&#8217;s advertising. Even the web address forms a kind of optical illusion and makes reading it impossible because it&#8217;s so long.</p>
<p><a href="http://www.burning.me/wp-content/uploads/2010/12/photos-compiled-large.jpg"><img src="http://www.burning.me/wp-content/uploads/2010/12/photos-compiled-large-600x387.jpg" alt="David Rhodes Fruiterers and Florist Poster" title="David Rhodes Fruiterers and Florist Poster" /></a></p>
<h2>Can the poster be improved?</h2>
<p>So we have an idea of what&#8217;s wrong with the poster:</p>
<ul>
<li>Too much text content</li>
<li>Too little emphasis on what is being advertised</li>
<li>Incorrect importance given to key information</li>
<li>Small images</li>
<li>No directions to shops</li>
<li>Hard to find contact details</li>
</ul>
<p>The first thing I&#8217;m going to do is strip the text content right back. My new main text content will be as follows:</p>
<p><strong>David Rhodes &#8211; Award winning Fruiterers and Florist<br />
Supplying Sussex with Fruit, Vegetables and Flowers for nearly 30 years</strong></p>
<p>The secondary &#8216;next step&#8217; information will be as follows:<br />
<strong>Drop in to your nearest store for a full range of fruit, vegetables, flowers and fresh organic produce (arrow right). 300 yards and second right on Preston Circus. Others stores on Portland Road and Western Road in Hove too.</strong></p>
<p>I would word other contact information like this:<br />
<strong>Shop online at drfruit.co.uk (new domain) or call 01273 325998. Wholesale to caterers also available.</strong></p>
<p>Now that I have my first draft text written, I&#8217;d start to think about the design. I already know that I want to use much bigger and better quality photos. Close up professional photography of fruit and veg would make it much more obvious what was being advertised and get the message across quicker. With bigger budgets you can get your own photography commissioned which would probably produce really good results, but as this is a hypothetical experiment (I haven&#8217;t been commissioned by David Rhodes), lets head over to istockphoto.com and see what stock photography is available: <a href="http://www.istockphoto.com/search/text/fruit/source/basic/#/f40ac8">http://www.istockphoto.com/search/text/fruit/source/basic/#/f40ac8</a></p>
<p>I&#8217;m happy with <a href="http://www.istockphoto.com/stock-photo-4461830-mixed-fruits-and-vegetables.php">this</a> photo. It shows a good range of fruit, looks fresh and has plenty of colour. I&#8217;m not going to worry too much about the flowers, nuts and garden centre items as I&#8217;d like to concentrate on the main aspect of David Rhodes&#8217; business to keep the message clear.</p>
<p>The first draft of the new poster looks like this:</p>
<p><a href="http://www.burning.me/wp-content/uploads/2011/01/new-poster1.jpg"><img src="http://www.burning.me/wp-content/uploads/2011/01/new-poster1-600x845.jpg" alt="New David Rhodes poster" title="New David Rhodes poster" /></a></p>
<p><a href="http://www.burning.me/wp-content/uploads/2011/01/new-photos-compiled1.jpg"><img src="http://www.burning.me/wp-content/uploads/2011/01/new-photos-compiled1-600x387.jpg" alt="New David Rhodes poster in place" title="New David Rhodes poster in place" /></a></p>
<h2>Conclusion</h2>
<p>Most of the tweaks have come about from re-writing the copy. Whilst I&#8217;m not a marketing expert I did feel the original poster had too much copy. I also felt the the &#8216;next step&#8217; or &#8216;call to action&#8217; points were non existent or unclear in the original. The main problem though was the first visual experience of the original poster didn&#8217;t suggest what the advertisement was about. I&#8217;m hoping that by simply using a bigger image of the focus of the business, the poster has more impact.</p>
<p><strong>Let me know what you think by commenting below.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.burning.me/2011/01/whats-wrong-with-this-poster/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Presenting your logo design to the client in an effective way</title>
		<link>http://www.burning.me/2010/09/presenting-your-logo-design-to-the-client-in-an-effective-way/</link>
		<comments>http://www.burning.me/2010/09/presenting-your-logo-design-to-the-client-in-an-effective-way/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 21:37:15 +0000</pubDate>
		<dc:creator>Mark Cossey</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[How I make]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[logo design]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://www.burning.me/?p=918</guid>
		<description><![CDATA[So you've been briefed, done your research, sketched and put together a few logo ideas for your client. But what now? What's the best way of presenting these to the client?

In my experience attaching a few jpegs to an email with a short "here are my ideas..." message doesn't normally cut it. You have spent time on your ideas and looked at various options and applications of the logo so it's important that you communicate that information in a visual way. 

<a href="http://www.burning.me/2010/09/presenting-your-logo-design-to-the-client"><img src="http://www.burning.me/wp-content/uploads/2010/09/pages-thumb.jpg" alt="Logo presentation" title="Logo presentation"  /></a>]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;ve been briefed, done your research, sketched and put together a few logo ideas for your client. But what now? What&#8217;s the best way of presenting these to the client?</p>
<p>In my experience attaching a few jpegs to an email with a short &#8220;here are my ideas&#8230;&#8221; message doesn&#8217;t normally cut it. You have spent time on your ideas and looked at various options and applications of the logo so it&#8217;s important that you communicate that information in a visual way. </p>
<p>I normally provide the client with a maximum of 3 ideas for their logo. I try to stick to a similar idea and colour scheme but make them different enough to show some exploration i.e. don&#8217;t just show a different font or colour scheme.</p>
<p>For the purpose of this blog post I&#8217;ll assume that you are presenting your ideas remotely in the form of a <a href="http://en.wikipedia.org/wiki/Portable_Document_Format">PDF</a> but if you do have the opportunity to present face-to-face, still produce a PDF, but also make print outs of each page and mount them onto <a href="http://en.wikipedia.org/wiki/Foamcore">Foam Board</a> at A3 size. You can email them the PDF after the presentation.</p>
<h2>Layout of your PDF presentation</h2>
<p>The first page in your PDF should be a plain black or white page with the project name, your clients name and the date.</p>
<p><a href="http://www.burning.me/downloads/cliff-king-logos.pdf"><img src="http://www.burning.me/wp-content/uploads/2010/09/pages-thumb.jpg" alt="Logo presentation" title="Logo presentation" /></a></p>
<p><strong>Page 2:</strong> A simple paragraph of text summarising the brief</p>
<p><strong>Page 3:</strong> Your prefered logo design (on the colour background you assume it will be used on most)</p>
<p><strong>Page 4:</strong> Your second favourite design</p>
<p><strong>Page 5:</strong> Your least favourite design</p>
<p><strong>Page 6:</strong> Your preferred logo design in full colour, single colour and reversed out</p>
<p><strong>Page 7:</strong> Your colour palette and perhaps some simple ideas behind the designs</p>
<p><strong>Page 8:</strong> The logo mocked up in various applications. Be mindful of where you choose to mock the logo up and think about your clients business. No point in putting the logo onto a t-shirt if your client is a lawyer for example.</p>
<p><strong>Page 9:</strong> Your contact details</p>
<p>The info on page 8 will be of great use to your client as it&#8217;s sometimes difficult for people that aren&#8217;t designers to visualise how and where the logo will be used. By spending a bit longer on this page you find yourself winning a little extra business in the longrun.</p>
<p>Putting your contact details on the last page is good practice as you never know where the PDF might end up. This might be another opportunity for promoting yourself to whoever your client chooses to share the PDF with. It might sound odd but I guarantee your client will share that PDF with their friends, family members and colleagues to canvas opinion.</p>
<p>Each scenario is different and this is just a suggested way of presenting but here are some brief tips:</p>
<h3>Try not to</h3>
<ul>
<li>present too many ideas, it will confuse the client
</li>
<li>although not presenting enough ideas with little backup info may lead your client to think you haven&#8217;t thought about the project
</li>
<li>Be too technical i.e. listing Pantone colours, HEX codes and dimensions should be left for the style guide
</li>
</ul>
<h3>Try to</h3>
<ul>
<li>be clear in your thought process
</li>
<li>support ideas with research
</li>
<li>explain colour choices
</li>
<li>show logos in use in relevant ways
</li>
</ul>
<p><strong>Have you got any good tips for me? What works or doesn&#8217;t work for you? Please comment below.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.burning.me/2010/09/presenting-your-logo-design-to-the-client-in-an-effective-way/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

