<?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>Freelance Web Designer  // Authentic Style Blog</title>
	<atom:link href="http://www.authenticstyle.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.authenticstyle.co.uk/blog</link>
	<description>Freelance Web Designer Blog of Authentic Style</description>
	<lastBuildDate>Fri, 11 May 2012 14:09:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Responsive Web Design</title>
		<link>http://www.authenticstyle.co.uk/blog/responsive-web-design/</link>
		<comments>http://www.authenticstyle.co.uk/blog/responsive-web-design/#comments</comments>
		<pubDate>Thu, 10 May 2012 12:29:56 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Responsive Design]]></category>

		<guid isPermaLink="false">http://www.authenticstyle.co.uk/blog/?p=1050</guid>
		<description><![CDATA[Now is a very exciting time to be a web designer. Why? Because things are changing with the way in which we go about building websites, and it&#8217;s here to stay. The change is called &#8216;Responsive Web Design&#8217; and I&#8217;m fully embracing it! Why the change? The shift towards responsive web design has been brought [...]]]></description>
			<content:encoded><![CDATA[<p>Now is a very exciting time to be a web designer. Why? Because things are changing with the way in which we go about building websites, and it&#8217;s here to stay. <span id="more-1050"></span></p>
<p>The change is called &#8216;Responsive Web Design&#8217; and I&#8217;m fully embracing it!</p>
<h4>Why the change?</h4>
<p>The shift towards responsive web design has been brought about by the rapid growth in the mobile and tablet industry, and the fact that millions of people are now accessing the web on mobile devices. We can no longer assume that everyone is going to be viewing our websites on a desktop computer. In fact, by 2014 mobile internet usage could very well overtake desktop internet usage.</p>
<p>This momentum in the growth of tablets and mobile phones accessing the internet means a change in the way in which us web designers design, build and generally approach our web design projects.</p>
<p>Change is always hard to embrace, especially when you&#8217;re used to doing things a certain way. But it&#8217;s something I love about being in this industry, the fact that you can never get comfortable for too long and you&#8217;re quite often kept on your toes!</p>
<h4>What exactly is Responsive Design?</h4>
<p>In a nutshell responsive web designs are designs that adjust to the dimensions of the device you&#8217;re viewing them on, and perhaps more importantly, they deliver an <strong>optimised viewing experience specific to that device</strong>.</p>
<p><img class="alignnone size-full wp-image-1093" title="responsive-design-devices" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/05/responsive-design-devices.png" alt="" width="714" height="334" /></p>
<p>I think the last part of the sentence above (in bold) really strikes a chord. The whole point of responsive design in my opinion is to deliver a better experience to users viewing your website on a device with a smaller screen.</p>
<h4>Some history&#8230;</h4>
<p>Responsive Design was first brought to the fore-front of the web design community by Ethan Marcotte and his <a title="Responsive Web Design" href="http://www.abookapart.com/products/responsive-web-design" target="_blank">aptly named book &#8220;Responsive Web Design&#8221;</a>. The first time I read it I was a little daunted &#8211; I won&#8217;t lie. But after reading so much on the subject, and also the fact that the design community is so helpful and has released a <a title="Twitter Bootstrap" href="http://twitter.github.com/bootstrap/" target="_blank">number</a> <a title="Less Framework" href="http://lessframework.com/" target="_blank">of</a> <a title="Skeleton" href="http://getskeleton.com/" target="_blank">different</a> <a title="15 Responsive Design Frameworks To Consider" href="http://speckyboy.com/2011/11/17/15-responsive-css-frameworks-worth-considering/" target="_blank">frameworks</a> that we can use for kick-starting the development of our web projects, it&#8217;s relatively easy to get started building responsive websites.</p>
<p><img class="alignnone size-full wp-image-1092" title="responsive-design-book" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/05/responsive-design-book.png" alt="" width="714" height="487" /></p>
<h4>Here&#8217;s an example</h4>
<p><a title="Responsive Web Design Example" href="http://www.authenticstyle.co.uk/responsive-design/" target="_blank">Here&#8217;s a quick example of a responsive template</a> I put together using the responsive framework <a title="Skeleton Responsive Design Framework" href="http://getskeleton.com/" target="_blank">Skeleton</a>. Try resizing your browser window to simulate the viewport widths of a tablet and mobile phone (I.E. making your browser window smaller and smaller) and you&#8217;ll see how the layout responds. Basically it has a few &#8216;breakpoints&#8217;. These are points at which the design changes for viewing on the various devices mentioned above.</p>
<p><img class="alignnone size-full wp-image-1094" title="three-layouts" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/05/three-layouts.png" alt="" width="714" height="409" /></p>
<h4>Media Queries</h4>
<p>These &#8216;breakpoints&#8217; are achieved via media queries. Media Queries are the back-bone of responsive design. They&#8217;ve actually been around for years, but have only really found their calling with the popularity of responsive web design.</p>
<p>We can use media queries to tell the browser to use a modified set of CSS rules based on the browsers viewport (it&#8217;s dimensions). Here&#8217;s an example of how a media query might look:</p>
<p><code> @media only screen and (min-width: 768px) and (max-width: 959px) {<br />
/* CSS declarations go here */<br />
}</code></p>
<p>The above media query is targeting the viewport of a tablet (possibly an iPad). As you can see the max-width is 959 pixels (one pixel less than the maximum width of our design for desktop &#8211; 960 pixels) and the min-width is 768 pixels, as anything below that is venturing into the mobile phone viewport size and there&#8217;s a seperate media query set up to handle the layout at those dimensions.</p>
<p>Any CSS that we put within this media query above would be reflected in the browser when the viewport of the device you were viewing the website on was less than 960 pixels wide. Hence you can see that placing adjustments to the layout and structure of your site within these media queries can make it easy to optimise the layout of a website for different device sizes.</p>
<h4>Flexible Images</h4>
<p>When our responsively designed website is viewed on an iPhone versus a desktop computer, we need to adjust the image sizes accordingly</p>
<p>We can do that easily by applying a max-width of 100% to them. If the image happens to be wider than it&#8217;s container, then max-width snaps the image back in line and forces it to be the same width as it&#8217;s container.</p>
<p><code> img {<br />
max-width: 100%;<br />
}<br />
</code></p>
<p>If you need support in IE6 and below then you&#8217;d need to include some conditional CSS only for IE6 and below:</p>
<p><code> img {<br />
width: 100%;<br />
}<br />
</code></p>
<p>It&#8217;s also worth noting that you can serve up totally different images using your media queries. Just bear in mind that these get loaded when the webpage loads along with other images, so there can be a performance factor involved.</p>
<p>There are a number of techniques you can apply to work around this though. The most popular right now seems to be<a title="Adaptive Images" href="http://adaptive-images.com/" target="_blank"> &#8216;adaptive images&#8217;</a>.</p>
<p><img class="alignnone size-full wp-image-1120" title="adaptive-images" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/05/adaptive-images.png" alt="" width="714" height="378" /></p>
<p>Also now with higher density displays (the Retina display in the iPhone 4 and new iPad) considerations need to be made for showing higher res images for these devices only. I&#8217;ll try and write more on this in a separate blog post. As you can see, with responsive design comes a number of other things us designers need to consider and factor in to our work.</p>
<h4>Fluid Grids &amp; The Future</h4>
<p>A truly fluid grid is a grid that doesn&#8217;t have fixed widths. E.g. the  widths aren&#8217;t specified in pixels, but instead are specified in percentages, which  allow the layout to increase in size if you viewed it on a very wide desktop monitor.</p>
<p>Although Skeleton doesn&#8217;t have a truly &#8216;fluid&#8217; grid, it is flexible and adjustments are made to the pixel based widths of the grid within the media queries to change the layout and make it responsive. It doesn&#8217;t however cater for responsive design where our design adapts to really wide resolution desktop monitors &#8211; i.e. the design expanding outwards to fill all of the available space.</p>
<p>I think in the future us designers will have to take more consideration to how our designs look on really large monitors, as well as small handheld devices. Instead of setting a page container of 960-1,000 pixels, we&#8217;ll have to move up past the 1,200 pixelmark and maybe even use 100% of the width of the browser window (although I&#8217;m keeping my fingers crossed that doesn&#8217;t happen!)</p>
<p>If you&#8217;d like <a title="Fluid Grids" href="http://www.alistapart.com/articles/fluidgrids/" target="_blank">more info on fluid grids, then check this great article out</a>.</p>
<h4>Awesome Responsive Navigation Technique</h4>
<p>Amongst all of this, for devices with smaller screens, one of the main elements you need to adjust is your navigation. Sometimes its not enough to just stack your main nav items on top of each other. You need to keep in mind the &#8216;press-ability&#8217; and space.</p>
<p>You may have noticed that on the <a title="Responsive Web Design" href="http://authenticstyle.co.uk/responsive-design/" target="_blank">mobile version of my example</a>, the navigation gets replaced by a &#8216;select&#8217; dropdown form field. This is an increasingly popular technique as it&#8217;s so easy to use on a mobile device, as opposed to trying to press small text links with your fingers. It&#8217;s also a great space saver.</p>
<p><img class="alignnone size-full wp-image-1090" title="responsive-design-navigation" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/05/responsive-design-navigation.png" alt="" width="714" height="569" /></p>
<p>The &#8216;select&#8217; form field is set up to be injected into the code using jQuery. Below you can see that I&#8217;m using &#8216;appendTo&#8217; to place the form field inside the &#8216;responsive-nav&#8217; div:</p>
<p><img class="alignnone size-full wp-image-1068" title="responsive-design-jquery-1" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/04/responsive-design-jquery-1.png" alt="" width="499" height="68" /></p>
<p>From there we need to create the option in the form menu that says &#8216;Go to&#8230;&#8217; by default. This helps from a usability point of view, as having the item automatically show the text &#8216;Home&#8217; may be confusing for the user. Here&#8217;s the code to do that:</p>
<p><img class="alignnone size-full wp-image-1069" title="responsive-design-jquery-2" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/04/responsive-design-jquery-2.png" alt="" width="499" height="147" /></p>
<p>Then we just need to populate that dropdown form field we&#8217;ve created with our navigation items. Doing it this way means that we only have one menu to maintain. E.g. if we add another main navigation item, it will automatically get shown in our dropdown.</p>
<p><img class="alignnone size-full wp-image-1070" title="responsive-design-jquery-3" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/04/responsive-design-jquery-3.png" alt="" width="499" height="164" /></p>
<p>Here&#8217;s the full jQuery:</p>
<p><img class="alignnone size-full wp-image-1071" title="responsive-design-jquery-full" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/04/responsive-design-jquery-full.png" alt="" width="554" height="551" /></p>
<p>Finally, we just need to look in our stylesheet for the  @media only screen and (max-width: 767px)  media query, and hide the main &#8216;.navigation&#8217; unordered list that we want displaying only for our desktop version, and style our form field to make it more easily press-able on mobile &#8211; like so:</p>
<p><img class="alignnone size-full wp-image-1073" title="responsive-design-css" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/04/responsive-design-css.png" alt="" width="514" height="354" /></p>
<h4>The Future&#8230;</h4>
<p>Responsive design is definitely here to stay and its pretty exciting to be getting involved in it relatively early on. I haven&#8217;t yet had an opportunity to mess around with layouts that grow much past the 960 pixel / 1000 pixel mark, but it&#8217;s on my to-do list!</p>
<p>Below are some links to other resources which might help if you&#8217;re a designer looking to get started with responsive designs, or you just want to find out a bit more on the subject.</p>
<p>I&#8217;d also love to hear your experiences getting to grips with &#8216;responsive&#8217; in the comments below.</p>
<h4>Resources</h4>
<ul>
<li><a href="http://www.mobilewebbestpractices.com" target="_blank">Mobile Web Best Practices</a></li>
<li><a href="http://css-tricks.com/convert-menu-to-dropdown/" target="_blank">Convert a Navigation Menu to a Dropdown for Small Screens</a></li>
<li><a href="http://adaptive-images.com/" target="_blank">Adaptive Images</a></li>
<li><a href="http://speckyboy.com/2011/11/17/15-responsive-css-frameworks-worth-considering/" target="_blank">15 Responsive CSS Frameworks Worth Considering</a></li>
<li><a href="http://www.alistapart.com/articles/fluidgrids/" target="_blank">Fluid Grids</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.authenticstyle.co.uk/blog/responsive-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ToucanBox Case Study</title>
		<link>http://www.authenticstyle.co.uk/blog/toucanbox-case-study/</link>
		<comments>http://www.authenticstyle.co.uk/blog/toucanbox-case-study/#comments</comments>
		<pubDate>Wed, 21 Mar 2012 14:49:50 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Case Study]]></category>

		<guid isPermaLink="false">http://www.authenticstyle.co.uk/blog/?p=1013</guid>
		<description><![CDATA[ToucanBox approached Authentic Style to create a fresh new logo and website design for it’s fantastic service. Here&#8217;s a quick case study. So, what is ToucanBox? Before I launch straight into the case study, I’ll give you a little background about ToucanBox and what it offers. Put simply, parents pay a subscription to receive monthly [...]]]></description>
			<content:encoded><![CDATA[<p>ToucanBox approached Authentic Style to create a fresh new logo and website design for it’s fantastic service. Here&#8217;s a quick case study. <span id="more-1013"></span></p>
<h4>So, what is ToucanBox?</h4>
<p>Before I launch straight into the case study, I’ll give you a little background about ToucanBox and what it offers. Put simply, parents pay a subscription to receive monthly activity boxes for their children through the post each month.</p>
<p>It’s all about spending quality time as a parent interacting with your kids, whilst the activities, arts &amp; crafts and games inside each box are actually aiding your child’s development at the same time. Many of the books and activities in the boxes have actually been designed by child development experts with that purpose in mind.</p>
<p>If you&#8217;d just like to view the designs, then click the button below. If not, then please read on to find out how the project was approached.</p>
<p><a title="View the ToucanBox Designs" href="http://projects.authenticstyle.co.uk/toucanbox/" target="_blank"><img class="alignnone size-full wp-image-1027" title="button" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/03/button.png" alt="" width="173" height="34" /></a></p>
<h4>Stage 1: The Logo</h4>
<p>The first step was to start by creating a revised logo for ToucanBox. The old logo looked good as a starting point and I could see it had potential, but myself and the client agreed that the box in which the Toucan character was sitting was too formal, and didn’t really fit in with the rest of the “feel” that ToucanBox was aiming for. We also felt that the Toucan character itself could be refreshed significantly and have a classy children&#8217;s story book illustrated feel, rather than being really bright and glossy.</p>
<p>With that in mind I enlisted the help of a fantastic illustrator, <a title="Freelance Illustrator" href="http://www.vickigausden.co.uk/" target="_blank">Vicki Gausden</a>. Not being an illustrator myself I knew that whilst I could have created something good, having Vicki (whose style was exactly the vision myself and the client had for the new logo) would get the best results.</p>
<p>Below you can see the old logo versus the new logo. Myself and the client were really impressed with the finished result. It was vibrant, but in a more professional way than the existing logo and we could see it being instantly recognisable to children when printed on a box arriving at their home. The new character had personality, but a the same time it was giving a much more professional feel of a trustworthy company, which we hoped would appeal to the parents of those children.</p>
<p><img class="alignnone size-full wp-image-1019" title="logo" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/03/logo.png" alt="" width="714" height="365" /></p>
<h4>Stage 2: Information Architecture / Wireframing</h4>
<p>Moving on, the next stage was to think about the information architecture and produce wireframes for the main page types of the site. With this particular ecommerce site there were no limitations imposed by the platform that the site would be developed on. The development company the client was using were going to develop the site in Ruby, meaning that I had a totally free reign when producing designs for the checkout process and the site in general.</p>
<p>The ToucanBox homepage needed to get across several things:</p>
<p>1. What ToucanBox is &#8211; e.g. a subscription based service<br />
2. Pricing / Info on how to get started<br />
2. How it actually works<br />
3. Whats in the boxes that get delivered<br />
4. Some info about the boxes actually being beneficial for child development<br />
5. Credibility (press logos)<br />
6. Social Interaction (Facebook / Twitter)</p>
<p>Having made a list pretty similar to the one you just read, I set about creating a wireframe which you can see below. One other element that was important to include was a nice big sliding banner, showing kids actually playing with the product itself.</p>
<p><img class="alignnone size-full wp-image-1020" title="wireframe-home" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/03/wireframe-home.png" alt="" width="714" height="651" /></p>
<p>Some of the other main page types were the</p>
<ul>
<li>‘<a href="http://projects.authenticstyle.co.uk/toucanbox/boxes.html" target="_blank">Boxes</a>’ page, which needed to clearly outline what activities were inside two example boxes that the client wanted to showcase.</li>
<li>The ‘<a href="http://projects.authenticstyle.co.uk/toucanbox/getstarted.html" target="_blank">Get Started</a>’ page, which had to quickly convey the different subscription options in a clear and concise way.</li>
<li>And also the ‘<a href="http://projects.authenticstyle.co.uk/toucanbox/howitworks.html" target="_blank">How it works</a>’ page, which obviously needed to show in three simple steps how the ToucanBox service works.</li>
</ul>
<p>Here are some snippets from wireframes for some the other main pages:</p>
<p><img class="alignnone size-full wp-image-1021" title="wireframes-other" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/03/wireframes-other.png" alt="" width="714" height="651" /></p>
<p>Once the wireframes were all signed-off it was time to move onto the design. Thanks to Vicki’s great work on the logo I had a fantastic, vibrant, playful colour palette to work with.</p>
<h4>Stage 3: The Design</h4>
<p>The key element which I knew would impact greatly on ToucanBox’s success would be to achieve a design that was:</p>
<p>1. Professional enough to give trust to parents to commit and subscribe to the service, and;<br />
2. At the same time be playful and exciting enough to appeal to parents and show that ToucanBox would be a fun product and also beneficial for their children.</p>
<p>Font choice was crucial to help achieve this. I wanted to use a playful typeface, balanced out with something a little more serious. After searching Google Web Fonts, I settled on <a href="http://www.google.com/webfonts/specimen/Dosis" target="_blank">Terminal Dosis</a> and <a href="http://www.google.com/webfonts/specimen/Neucha" target="_blank">Neucha</a>, which I think really complement each other well in the design.</p>
<p><a title="View the design" href="http://projects.authenticstyle.co.uk/toucanbox/index2.html" target="_blank"><img class="alignnone size-full wp-image-1023" title="home-web-design" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/03/home-web-design.png" alt="" width="714" height="784" /></a></p>
<p>Another element that would help get across the playful and less formal look and feel would be the use of hand drawn / erased lines. I felt that having lines in the design that weren’t straight and formal would help get across the playful, child-like feeling. I also tried to achieve this feel with some hand drawn sketches on the homepage to help illustrate the ‘How it works, What’s Inside, and Child Development’ content blocks. I took it a step further by doing something similar with the hangdowns on some of the other page designs, the banner area on the homepage and on other parts of the design too.</p>
<p><img class="alignnone size-full wp-image-1024" title="design-parts" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/03/design-parts.png" alt="" width="714" height="651" /></p>
<p><strong>Checkout Process</strong><br />
The <a href="http://projects.authenticstyle.co.uk/toucanbox/checkout.html" target="_blank">checkout design</a> was a crucial page to get right. The process had to be easy to use and the form had to be easily understandable and easily usable.</p>
<p>With that in mind I set about breaking the form up into various sections and laying the fields out in a way that would allow users to work their way through it with ease. I also wanted to eliminate all distractions during the checkout process, so I removed the navigation and created a minimal layout that simply focused on the checkout form &#8211; nothing else.</p>
<p><a href="http://projects.authenticstyle.co.uk/toucanbox/checkout.html" target="_blank"><img class="alignnone size-full wp-image-1026" title="checkout-design" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/03/checkout-design.png" alt="" width="714" height="532" /></a></p>
<p>Below is a link to view designs for the entire ToucanBox project as images in your browser. I’d love to hear your thoughts in the comments below.</p>
<p><a title="View the ToucanBox Designs" href="http://projects.authenticstyle.co.uk/toucanbox/" target="_blank"><img class="alignnone size-full wp-image-1027" title="button" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2012/03/button.png" alt="" width="173" height="34" /></a></p>
<h4>To Conclude&#8230;</h4>
<p>Now that the project is finished I’ll be offering advice to the development company and providing them with any additional graphical elements that they might need as they build the site.</p>
<p>All in all ToucanBox was a fantastic project to work on, and Virginie (the client) was an absolute pleasure to do business with. She trusted my judgement, offered up great suggestions and fed back concisely and promptly. Pretty much the perfect client!</p>
<p>Here’s her take on the project and working with Authentic Style:</p>
<blockquote><p>&#8220;I found Will after a careful search process and I immediately liked his style: simple and elegant. Will was a pleasure to work with, he laid out the plan at the beginning of the project and stuck to it. He managed to turn my vision into an engaging, professional looking website, all with very little directions from us. I&#8217;m extremely pleased with the result and looking forward to working with Authentic Style again on future projects.&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.authenticstyle.co.uk/blog/toucanbox-case-study/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Face-Jack Me iPhone App Design</title>
		<link>http://www.authenticstyle.co.uk/blog/face-jack-me-iphone-app-design/</link>
		<comments>http://www.authenticstyle.co.uk/blog/face-jack-me-iphone-app-design/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 15:25:02 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Case Study]]></category>
		<category><![CDATA[iPhone App Design]]></category>

		<guid isPermaLink="false">http://www.authenticstyle.co.uk/blog/?p=980</guid>
		<description><![CDATA[Face-Jack Me, a fun face modification iPhone app that I designed, went live in the app store recently. Here a short case study about the project. Background The premise of the Face-Jack Me app isn&#8217;t an original one &#8211; I&#8217;m sure the client won&#8217;t mind me saying that, and for that reason at the beginning [...]]]></description>
			<content:encoded><![CDATA[<p>Face-Jack Me, a fun face modification iPhone app that I designed, went live in the app store recently. Here a short case study about the project.<span id="more-980"></span></p>
<h4>Background</h4>
<p>The premise of the Face-Jack Me app isn&#8217;t an original one &#8211; I&#8217;m sure the client won&#8217;t mind me saying that, and for that reason at the beginning of the project I had some doubts about it. Essentially you take a picture of yourself, or someone else, that photo is then broken up into 3 segments, and you swipe your finger left and right to shuffle through different face combinations. There are sample faces that come with the app, or you can take more photos of your friends or family and combine your face with theirs for some really quite funny outcomes.</p>
<p>Whilst doing some research it was clear that this idea had been done before. From looking at and playing around with some similar apps, I felt that the slick look and feel and simplistic ease of use of these existing offerings was missing and due to that there was a definite gap that this app could fill if done well. In short to make this iPhone app a success it had to be easier to use and better looking.</p>
<h4>Planning / Wireframing</h4>
<p>As always the first stage consisted of wireframing the main screens of the application. This was so important because it allowed myself, the client and also the developer (Kriss Bennett of <a href="http://www.createful.com/" target="_blank">Createful</a>) to spot any shortcomings before we&#8217;d got to the design stage and beyond. It also allowed me to come up with a &#8216;process&#8217; for &#8216;Face-Jacking&#8217; a photo that I felt was much easier than how any of the other apps did it, with buttons in easy to notice places, ways to quickly take a step back in the photo capture/editing process, and a way of making the app social too.</p>
<p>Here are a few screenshots of the wireframes that were presented to the client:</p>
<p><img class="alignnone size-full wp-image-984" title="iPhone-app-design-wireframes" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/12/iPhone-app-design-wireframes.png" alt="" width="714" height="600" /></p>
<p>Some key features were the ability to save your ordinary photos into one gallery and your &#8216;Face-Jacked&#8217; photos into another gallery. We also wanted to let people share the funny faces they&#8217;d created on Twitter or Facebook.</p>
<p>The main thing though was coming up with a really easy to use process for taking and modifying a photo, and also making it immediately obvious how to get started as soon as the app loaded up. This process turned out to be refined and modified during the development as it became clear that we hadn&#8217;t quite accounted for everything. Kriss (the developer) released several test versions of the app on TestFlight to allow us to test it and see what was missing.</p>
<h4>Icon Design</h4>
<p>The icon design was something that I was a little nervous about initially. Usually for an iPhone app icon I&#8217;ll try and create a shape or simple illustration that gets across the premise of the app. <a href="http://www.authenticstyle.co.uk/blog/sea-urchin-fishing-iphone-application-design/">See the Sea Urchin app icon I created</a>. Here though the client also wanted to see a version using photos of faces. Having looked at a few other apps that used photos in their icons for inspiration, honestly I thought they looked like they&#8217;d been thrown together in five minutes.</p>
<p>With that in mind I set about creating some ideas:</p>
<p><img class="alignnone size-full wp-image-986" title="app-icon-ideas" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/12/app-icon-ideas.png" alt="" width="714" height="262" /></p>
<p>The photo icon was starting to look good and the client really liked it. I wanted to combine several faces to get across what the app does and stagger them to show the user they&#8217;re adjustable. I then combined this with a simple &#8216;FJ&#8217; combined to create something that I and the client really loved. Here&#8217;s the finished icon.</p>
<p><img class="alignnone size-full wp-image-983" title="iphone-app-icon-final" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/12/iphone-app-icon-final.png" alt="" width="714" height="262" /></p>
<h4>The App User Interface Design</h4>
<p>The client had initially requested a red and black colour scheme, but after some experimentation during the icon design, I thought a blue would work well. Usually red and blue would be a colour combination I&#8217;d steer clear of, but somehow it works here. It feels fun and vibrant. The &#8216;feel&#8217; from the icon needed to follow through into the design of the app as a whole.</p>
<p>The homescreen of the app had to be simple and just let the user get started straight away. I wanted the Face-Jack button to be clearly &#8216;pressable&#8217; and also point the user right to the button with some kind of visual cue. It had to be really obvious how to get started.</p>
<p><img class="alignnone size-full wp-image-989" title="iphone-app-design-homescreen" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/12/iphone-app-design-homescreen.png" alt="" width="714" height="600" /></p>
<p>From here the photo capture/editing process had to be designed. It had changed a little from the initial wireframe, and even during the development Kriss and I refined the process a little adding and taking away buttons to make sure the whole process was as easy to carry out as possible. We also wanted to keep the branding strong when a user plays around adjusting the segments, so we added a frame to the photo that included the Face-Jack Me logo.</p>
<p><img class="alignnone size-full wp-image-991" title="iphone-app-other-screens" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/12/iphone-app-other-screens.png" alt="" width="714" height="390" /></p>
<p>Above you can also see the gallery where you can save your creations, and also some of the other screens.</p>
<h4>Overall</h4>
<p>The client was very happy with the finished outcome and so were myself and Kriss. We think the app is well worth 69p, so <a title="Download the app" href="http://itunes.apple.com/gb/app/face-jack-me/id484011226?mt=8" target="_blank">go over to iTunes and download a copy </a>- it&#8217;s had some great reviews already. Honestly its really funny to take some pictures of your mates down the pub and start mixing them together.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.authenticstyle.co.uk/blog/face-jack-me-iphone-app-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Improvements Based on Actual Data</title>
		<link>http://www.authenticstyle.co.uk/blog/making-design-improvements-based-on-real-visitor-data/</link>
		<comments>http://www.authenticstyle.co.uk/blog/making-design-improvements-based-on-real-visitor-data/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 14:42:24 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Process]]></category>

		<guid isPermaLink="false">http://www.authenticstyle.co.uk/blog/?p=965</guid>
		<description><![CDATA[Find out a how I approach the &#8216;manage&#8217; stage in my four step project process by using CrazyEgg to continually improve my clients websites based on how visitors are interacting with it. Creating a great design is only part of a successful web design project. Once a site has launched it&#8217;s essential to install analytics [...]]]></description>
			<content:encoded><![CDATA[<p>Find out a how I approach the &#8216;manage&#8217; stage in my four step <a href="http://authenticstyle.co.uk/#process">project process</a> by using CrazyEgg to continually improve my clients websites based on how visitors are interacting with it. <span id="more-965"></span></p>
<p>Creating a great design is only part of a successful web design project. Once a site has launched it&#8217;s essential to install analytics so you can start to see how visitors are interacting with the website, and if you&#8217;re even getting the number of visits you or your client hoped for in the first place.</p>
<p><img class="alignnone size-full wp-image-973" title="graph" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/10/graph1.png" alt="" width="714" height="169" /></p>
<p>Having produced lots of designs for a leading conversion rate optimisation company, I&#8217;ve got a pretty good understanding of where to place calls to action and what to include in a design to give visitors confidence and trust to buy your product (if you&#8217;re selling something), or contact you regarding a service if your site is a lead generation tool. Sometimes though its difficult to predetermine how visitors are going to use your website. Your visitors are human and we&#8217;re all different after all. Out of 10 people to visit your site you can bet that 2 or 3 are going to pose a question you didn&#8217;t see coming if you sat next to them whilst they used it, or totally miss the phone number in the sidebar of the site that you thought was so bold it was going to slap them round the face!</p>
<p>User testing a prototype of your clients website is the best way to go to ensure that you cover those points listed above (and of course many more), but lets face it, not every client has the budget/time for their designer to produce a full on prototype of their site before designing and building it for real.</p>
<p>The next best step &#8211; and one that I always undertake &#8211; is to wireframe the site. Ideally if you have access to your client&#8217;s customers, then show those wireframes on paper to them &#8211; take their feedback on board and make changes based on what they say. In an ideal world it should be an agile process &#8211; quick iterations and changes based on feedback provided by the client&#8217;s users or people from the same demographic. However, even if you or your designer has gone to all those lengths you can&#8217;t sit back and leave you&#8217;re site. There are always improvements to be made once it&#8217;s out there.</p>
<p>One bit of kit I&#8217;ve been installing on my client&#8217;s websites of late is CrazyEgg. Its a web app that allows you to see an overlay of where people are clicking &#8211; literally anywhere on the site, even if its not a link &#8211; and you&#8217;ll be suprised to find some people clicking things that you think are obviously not links. There is also a scrollmap which shows how far people are scrolling down the page, which is particularly handy if you&#8217;ve got a long page with some calls to action or maybe a form further down the page.</p>
<p><img class="alignnone size-full wp-image-969" title="crazyegg" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/10/crazyegg.png" alt="" width="714" height="454" /></p>
<p>There&#8217;s a few more useful features too, but even armed with the simple overlay its easy to make design improvements and minor modifications to a website to improve its success. Below you can see what the scrollmap looks like.</p>
<p><img class="alignnone size-full wp-image-971" title="scrollmap" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/10/scrollmap.png" alt="" width="714" height="374" /></p>
<p>Take a site I&#8217;m working on at the moment. It launched a while back and its not quite getting the traffic that my client hoped for. We&#8217;re just starting an on-page SEO campaign to improve that, but out of interest I installed CrazyEgg on the homepage of their site to see how the visitors they were getting were interacting with the site. The homepage is literally where all of their visitors are landing from Google.</p>
<p>Now the homepage isn&#8217;t your typical homepage, in that there isn&#8217;t a main navigation as such &#8211; the client didn&#8217;t want that. There are just 3 logos to access the different divisions to their business, above that the logo and strapline and then under the 3 logos links to special offers and bookings. Once you get into the three main areas then the site becomes more typical and a main navigation bar appears.</p>
<p><img class="alignnone size-full wp-image-970" title="rdavery" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/10/rdavery.png" alt="" width="714" height="454" /></p>
<p>What CrazyEgg revealed was that actually visitors didn&#8217;t seem interested in clicking to &#8216;enter&#8217; the various divisions of the clients site, or seeing the special offers right away, they just wanted to read about my clients business and get their contact details. Those links were only accessible in the footer on the homepage. CrazyEgg showed me exactly the number of people clicking these links and proved that my initial concerns about excluding these links prominently on the homepage had been justified.</p>
<p>Based on that data I have been able to make suggestions to my client about how we can go about making some minor changes to make that information more easily accessible for their visitors. I&#8217;m literally about to make these changes in the next week or so, and I&#8217;m really excited to measure these changes to see if they out perform the previous version of the site.</p>
<p>So, thats a little insight into the final step in my 4 step process &#8211; Plan, Design, Build, Manage. Managing a completed site and improving the way it works is an essential part of the service I offer, but something I&#8217;m not sure ever web designer thinks about.</p>
<p>If you&#8217;re reading this and not a client of mine, then please <a href="http://authenticstyle.co.uk/#hire">feel free to get in touch</a> and I&#8217;ll be happy to help you get started improving your website based on actual data of how your visitors are interacting with your website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.authenticstyle.co.uk/blog/making-design-improvements-based-on-real-visitor-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hiring a Web Designer / Front-End Developer</title>
		<link>http://www.authenticstyle.co.uk/blog/hiring-a-web-designer-front-end-developer/</link>
		<comments>http://www.authenticstyle.co.uk/blog/hiring-a-web-designer-front-end-developer/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 16:02:40 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Job Vacancies]]></category>

		<guid isPermaLink="false">http://www.authenticstyle.co.uk/blog/?p=948</guid>
		<description><![CDATA[I&#8217;m looking for a creative, up and coming web designer / front-end developer to help work with me on a range of exciting web design and development projects.﻿ Sound like you? Then read on! ATTENTION: This position has now been filled. Thank you for your interest. About Authentic Style Authentic Style is the web design [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m looking for a creative, up and coming web designer / front-end developer to help work with me on a range of exciting web design and development projects.﻿ Sound like you? Then read on!<span id="more-948"></span></p>
<p><img src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/10/im-hiring-main.png" alt="" title="im-hiring-main" width="714" height="319" class="alignnone size-full wp-image-958" /></p>
<p><strong>ATTENTION: This position has now been filled. Thank you for your interest.</strong></p>
<h4>About Authentic Style</h4>
<p>Authentic Style is the web design and development company of freelancer Will Smith. Based in office space located in Shaftesbury, Dorset, Will has been freelancing successfully for 3 years and has built a reputation for creating beautifully designed websites, iPhone apps and email newsletter for his clients.</p>
<p>Prior to that Will worked at several agencies and has 7 years experience in the industry, having produced design work for clients such as Vodafone, Google, 888 and AOL as well as smaller businesses and start-up companies from London to as far away as Tokyo, and also many of the places in between. ﻿</p>
<h4>Responsibilities</h4>
<p>As the first member of the Authentic Style design team, you will be expected to produce original web design concepts for current and new clients using Adobe Photoshop. You will also be responsible for turning these design concepts into fully functioning websites, built using semantic HTML5/CSS3 to W3C standards. You will also be responsible for producing iPhone application designs for new and existing clients.</p>
<p>You will be required to work enthusiastically with existing and new clients alike, and encouraged to have first hand contact with them, participating in meetings and phone calls.</p>
<p>You’ll be someone who enjoys managing their own time, is passionate about design for the web and iPhone, who is looking for an opportunity to join a very small company on the rise and is able to commute to an office located in Shaftesbury, Dorset UK.﻿</p>
<h4>Essential Skills / Traits:</h4>
<ul>
<li>Designing website concepts in Adobe Photoshop</li>
<li>Coding these designs using HTML5/CSS3 that is valid and semantic.</li>
<li>Experience using WordPress to build content managed websites.</li>
<li>Willingness to keep up to date with the latest goings on  &#8211; reading blogs, articles etc</li>
<li>The ability to manage your own time and prioritise.</li>
<li>Being able to cost up jobs from briefs (written or verbal) from a client.</li>
<li>Confidence talking to clients over the phone and in face to face meetings.</li>
<li>Most of all &#8211; raw design talent and a passion to learn.﻿</li>
</ul>
<h4>Nice to haves&#8230;</h4>
<ul>
<li>Using jQuery to enrich user experience</li>
<li>Experience working with PHP.</li>
<li>Print design experience using Adobe InDesign</li>
<li>Experience designing for iPhone.</li>
<li>Knowledge of mobile web design/dev best practises</li>
<li>Email Newsletter design experience.﻿</li>
</ul>
<p><strong>Salary:</strong> Negotiable based on experience.</p>
<h4>Perks</h4>
<ul>
<li>A new iMac to work on.</li>
<li>An office Spotify account for inspirational tunes whilst working</li>
<li>A relaxed and friendly working environment with no strict dress code.</li>
<li>The chance to potentially work on some in house web design / iPhone app projects as well as client work</li>
</ul>
<h4>Want to Apply?</h4>
<p>Great! Please send an email to will[at]authenticstyle.co.uk, with examples of your work and a link to your online portfolio. I look forward to hearing from you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.authenticstyle.co.uk/blog/hiring-a-web-designer-front-end-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nannies Like Us Website Launched</title>
		<link>http://www.authenticstyle.co.uk/blog/nannies-like-us-website-launched/</link>
		<comments>http://www.authenticstyle.co.uk/blog/nannies-like-us-website-launched/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 13:37:17 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Case Study]]></category>

		<guid isPermaLink="false">http://www.authenticstyle.co.uk/blog/?p=919</guid>
		<description><![CDATA[A few days ago I launched a new website for a small nanny agency starting up in Salisbury and Bath. Here I&#8217;ll explain a little about the project and how I approached it. Nannies Like Us (NLU) contacted me to design and develop a simple static website that would enable them to start taking inquires [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago I launched a new website for a small nanny agency starting up in Salisbury and Bath. Here I&#8217;ll explain a little about the project and how I approached it. <span id="more-919"></span></p>
<p>Nannies Like Us (NLU) contacted me to design and develop a simple static website that would enable them to start taking inquires and help generate some new business for them. Here&#8217;s a quick snapshot of the homepage (click the image to visit the site)</p>
<p><a href="http://www.nannieslikeus.com" target="_blank"><img class="alignnone size-full wp-image-925" title="design" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/08/design.png" alt="" width="714" height="758" /></a></p>
<h4>Starting out with a meeting&#8230;</h4>
<p>Initially we started with a meeting and spent some time discussing what pages the site should have and what kind of content would be displayed on these pages. Everything needed to be kept pretty simple to keep within the clients budget, but I wanted to try and add a few touches that gave a slick, professional look to the site, while at the same time having a slightly playful feel as after all this site was about nannies looking after and caring for children.</p>
<h4>Simple Logo</h4>
<p>Before I was able to start wireframing the homepage of the site we had a slight set back as the original name for the company had been taken by another company who had seemingly cropped up over night. This mean&#8217;t a new logo needed to be created &#8211; just something simple and colourful. My client sent me over a sketch of a typographic logo arranged in a circle, which I then recreated and tidied up in Illustrator. It was nothing groundbreaking in terms of design (I&#8217;m sure they won&#8217;t mind me saying that!), but we all felt it was playful in colour and would work well on the website and in print.</p>
<p>I think its important to understand that not all companies/businesses need to spend a fortune on branding, and although usually I like to spend slightly over a day producing a variety of logo concepts and then more time developing those further, that isn&#8217;t necessarily the right solution for everyone. Sometimes something much more straight forward will fulfill the client&#8217;s needs.</p>
<h4>Wireframes</h4>
<p>Once the logo was finalised I quickly moved on to producing a wireframe for the homepage and internal pages of the site. As the logo was circular I saw this as a perfect opportunity to place the logo in the middle of the page and have the navigation options arranged either side of it. My client immediately liked the idea and signed off the wireframes with next to no amendments.</p>
<p><img class="alignnone size-full wp-image-920" title="home-wireframe" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/08/home-wireframe.png" alt="" width="714" height="634" /></p>
<p>During our meeting I&#8217;d determined that NLU offered a free one hour consultation &#8211; a pretty good selling point I thought. With that in mind I wanted to include this on all the pages of the site.</p>
<p>The main purpose of the site was for people to get in touch so we needed the contact details to be easily accessible. The only issue was that with the logo being positioned in the centre with the navigation options either side, a telephone number above this (the typical place for these details to be found, as opposed to being listed on a contact page) needed to be balanced out equally with something else the other side. That didn&#8217;t quite work, so I opted for a phone icon positioned flush to the top of the browser window, that when clicked would slide down to reveal the contact details.</p>
<p>NLU were also going to rely on social media to find candidates for jobs so it was essential to include Facebook and Twitter links on the homepage of the site.</p>
<h4>Design</h4>
<p>Here&#8217;s a quick look at the design of some of the elements mentioned above.</p>
<p>Below is the idea for the logo and navigation layout, along with the telephone icon that when clicked would slide down to reveal the contact details.</p>
<p><img class="alignnone size-full wp-image-921" title="header-design" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/08/header-design.png" alt="" width="714" height="382" /></p>
<p><img class="alignnone size-full wp-image-932" title="header-slide" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/08/header-slide.png" alt="" width="714" height="382" /></p>
<p>Below you can see the design for the &#8220;What We Offer&#8221; and &#8220;Free Consultation&#8221; boxes on the homepage. I decided to make the headers have a slightly slanted top edge to further reinforce the subtle child like nature of the site. I was sure to add the &#8220;Free Consultation&#8221; box to the internal pages of the site too.</p>
<p><img class="alignnone size-full wp-image-922" title="cta-boxes" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/08/cta-boxes.png" alt="" width="714" height="347" /></p>
<p>Here&#8217;s a partial look at one of the internal pages. I wanted to frame the main body content on white and have the peach coloured background fill the entire page.</p>
<p><img class="alignnone size-full wp-image-934" title="inner-page" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/08/inner-page.png" alt="" width="714" height="382" /></p>
<p>Overall the client was very happy with the look and feel of the site. They showed it around and the general consensus was very good.</p>
<h4>Development</h4>
<p>The site was built using HTML5 and some subtle CSS3 enhancements.</p>
<p>If your browser allows you&#8217;ll notice the main navigation links fade down when hovered over with the mouse. Here&#8217;s the code (highlighted in bold) that does that for each link;</p>
<blockquote><p>li.nannies a {<br />
text-indent: -3000em;<br />
background:url(../images/nav/nannies.png) no-repeat left top;<br />
width: 67px;<br />
height: 21px;<br />
display: block;<br />
overflow: hidden;<br />
float:left;<br />
margin-left: 35px;<br />
<strong>-webkit-transition: opacity 0.2s ease-in-out;<br />
-moz-transition: opacity 0.2s ease-in-out;<br />
-o-transition: opacity 0.2s ease-in-out;<br />
transition: opacity 0.2s ease-in-out;</strong><br />
}</p></blockquote>
<p>I also used the <a href="http://isthatclear.com/jquery/bgFade/" target="_blank">jQuery bgFade plugin</a> to create a nice fade effect on the logo and telephone icons when you hover over them. All pretty subtle things but details that I think are really important enhancements to add to a website.</p>
<h4>Summary &amp; Client&#8217;s Comments</h4>
<p>My client was really pleased with the work and I believe the site has been getting a fair amount of visits already. The next step is going to be to start on an SEO campaign to try and boost the sites rankings for a select number of key phrases.</p>
<blockquote><p>It all looks great Will. Thank you. I love the colours and the layout.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.authenticstyle.co.uk/blog/nannies-like-us-website-launched/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML Email Designer</title>
		<link>http://www.authenticstyle.co.uk/blog/html-email-designer/</link>
		<comments>http://www.authenticstyle.co.uk/blog/html-email-designer/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 13:40:35 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Email Design]]></category>

		<guid isPermaLink="false">http://www.authenticstyle.co.uk/blog/?p=872</guid>
		<description><![CDATA[A couple of days ago I launched a side project called HTML Email Designer. No prizes for guessing what it&#8217;s all about! In this post I&#8217;ll explain the site&#8217;s premise.  What HTML Email Designer Offers I wanted to create a website geared specifically towards offering HTML email newsletter design and development services, with the ability [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of days ago I launched a side project called <a title="HTML Email Designer" href="http://www.htmlemaildesigner.com" target="_blank">HTML Email Designer</a>. No prizes for guessing what it&#8217;s all about! In this post I&#8217;ll explain the site&#8217;s premise. <span id="more-872"></span></p>
<h4>What HTML Email Designer Offers</h4>
<p>I wanted to create a website geared specifically towards offering <a title="HTML Email Designer" href="http://www.htmlemaildesigner.com" target="_blank">HTML email newsletter design and development services</a>, with the ability for clients to easily be able to manage their own newsletter content each month, and also send out campaigns with complete ease.</p>
<p>Email marketing is a great way for clients to keep contact with existing customers and also promote special offers and latest news, and I still feel that too many small businesses are passing up a great opportunity here. So that&#8217;s why I decided to create HTML Email Designer. A place for small businesses to start out on the road of email marketing at (hopefully) quite affordable prices.</p>
<p>The services I&#8217;ll offer are pretty simple</p>
<ol>
<li>I <strong>design</strong> an email newsletter for you, provide you with the PSD and you develop it. Perfect for developers who need a bit of design flair or companies who have an in-house development team.</li>
<li>I <strong>develop</strong> your newsletter based on a design you provide. Perfect for a busy designer who doesn&#8217;t want to waste time testing their design in Hotmail, Outlook etc.</li>
<li>The complete package &#8211; I <strong>design, develop and integrate</strong> an HTML email newsletter with <a title="Campaign Monitor" href="http://www.campaignmonitor.com" target="_blank">Campaign Monitor</a> or <a title="MailChimp" href="http://www.mailchimp.com" target="_blank">MailChimp</a> allowing you to manage your newsletters content, access some great analytics and send out your campaign each month without the hassle of having to pay a designer/developer to do so for you.</li>
</ol>
<h4>Campaign Monitor &amp; MailChimp</h4>
<p>Both these solutions in my opinion are fantastic for sending out email newsletters. They let clients update the content of their newsletter with ease, and also provide some very interesting statistics enabling you to see how many people opened the email, what links they clicked and much more. There are also some cool ways to integrate social media into your campaigns these days. In terms of developing newsletters for each platform, yes there are some differences, but I believe offering both as options is the best way to go as each have good and bad points.</p>
<p><img class="alignnone size-full wp-image-888" title="ss4" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/06/ss4.png" alt="" width="714" height="173" /></p>
<p>The decision to use Campaign Monitor or MailChimp for a certain project will definitely depend on the clients needs and also the frequency with which they intend to send out their campaigns as the pricing does vary with both.</p>
<h4>Thoughts behind the HTML Email Designer design</h4>
<p>Initially I set out designing a site that was much more in depth and I even started developing it. Client work took a front seat and I put the development on the back burner. When I came to get started again I knew I&#8217;d bitten off more than I could chew trying to develop a reasonably large site in between client work. With that I started from scratch and tried to simplify.</p>
<p><img class="alignnone size-full wp-image-875" title="ss1" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/06/ss1.png" alt="" width="714" height="665" /></p>
<p>I wanted to create something really clean and easy to use, with a focus on typography and also past email newsletter designs I&#8217;d created. At the time <a title="Typekit" href="http://www.typekit.com" target="_blank">Typekit</a> has just announced the release of Futura on its platform, so that was the perfect excuse to use that for many of the headings you see on the site. Unfortunately the condensed version of Futura isn&#8217;t available on Typekit, so I had to use image replacement there.</p>
<p>In the &#8216;hire&#8217; section at the bottom of the page I also wanted to spell out the process for the client, letting them know exactly what to expect.</p>
<h4>Behind the scenes</h4>
<p>I built the site using HTML5 (as I do for all client sites now) and also used some subtle CSS3 to further enhance the experience. Mainly on the email client logos, using subtle CSS3 gradients and box-shadow transitions when you hover over them with the mouse.</p>
<p><img class="alignnone size-full wp-image-876" title="ss2" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/06/ss2.png" alt="" width="714" height="234" /></p>
<h4>To conclude&#8230;</h4>
<p>Overall the site came together pretty quickly and I&#8217;ve had some good feedback so far.</p>
<p>I think its going to be an interesting little project because now I need to promote the site (cue this blog post!) and get some visitors to it. I&#8217;ll definitely be pointing my clients to the site once I finish working on their website projects. After all having an email newsletter to match your brand new website is the perfect partner in my opinion!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.authenticstyle.co.uk/blog/html-email-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Authentic Style moves into office space</title>
		<link>http://www.authenticstyle.co.uk/blog/authentic-style-moves-into-office-space/</link>
		<comments>http://www.authenticstyle.co.uk/blog/authentic-style-moves-into-office-space/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 16:06:57 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Freelance Life]]></category>

		<guid isPermaLink="false">http://www.authenticstyle.co.uk/blog/?p=838</guid>
		<description><![CDATA[About 3 weeks ago I made the decision to finally move out from my home office and into some rented office space. In this post I&#8217;ll explain why I made that decision, how its going and post up some pictures too. Before I begin, the images here were taken with my iPhone, so please excuse [...]]]></description>
			<content:encoded><![CDATA[<p>About 3 weeks ago I made the decision to finally move out from my home office and into some rented office space. In this post I&#8217;ll explain why I made that decision, how its going and post up some pictures too. <span id="more-838"></span></p>
<p><em>Before I begin, the images here were taken with my iPhone, so please excuse that the quality isn&#8217;t top notch.</em></p>
<p><img class="alignnone size-full wp-image-845" title="office-space-2" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/06/office-space-2.png" alt="" width="714" height="319" /></p>
<p>Last Wednesday I was finally able to move into the new Authentic Style HQ, conveniently situated in the <a href="http://www.thewincombecentre.co.uk/">Wincombe Business Centre</a>, just 1.5 miles from my house in Shaftesbury. What wasn&#8217;t so convenient however was the time it took BT to set up my broadband. Having had an engineer come out the previous Tuesday and tell the business centre manager that the installation of both my broadband and phone line was successful, I moved all my stuff in and tried to get online. Needless to say, you guessed it, no internet connection had been set up, and I only found out after paying for a networking guy to help me get online and him suggesting I call BT just to double check they&#8217;d installed everything. Anyhow, a week later I was in the office and online.</p>
<h4>So why move out from the home office and spend money renting a room somewhere else?</h4>
<p>After working from home for just over 2 years I felt like it was time for a change. Authentic Style has been doing great over the last two years and turnover this year is up on last year by 23% if my calculations are correct. Whilst working from home does have its perks, it also has some downsides which I felt were getting to me a little after 2 years of doing it.</p>
<p><img class="alignnone size-full wp-image-847" title="office-space-4" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/06/office-space-3.png" alt="" width="714" height="319" /></p>
<p>My main reason for getting some office space was that I don&#8217;t want to be a solo freelancer the rest of my career. I want to eventually take on staff and try and build Authentic Style into a small design and development outfit, so why not take the leap now and take on the extra overhead whilst its just me, continue to build the business and then look at maybe taking someone on in the next year.</p>
<p>The second big reason was having a place to leave the laptop, and work in general behind for the evening and also the weekend. When you work from home you have to be so disciplined to stop work at 6pm and not just sneak back to respond to that email or tweak that design later that evening. Whilst its convinient and nice in the beginning to be able to do that, after a while I was finding it increasingly hard to switch off. I&#8217;ve only been in the new office for about a week now, but I&#8217;m already enjoying being able to leave work behind in the evenings and having a place to go each day. After all I&#8217;ve still got my iPhone if I really need to check my mails or respond to an inquiry quickly after hours.</p>
<p><img class="alignnone size-full wp-image-844" title="office-space-1" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/06/office-space-1.png" alt="" width="714" height="319" /></p>
<p>The room I&#8217;m renting is a good size and would definitely accommodate another desk and possibly a third at a push (there&#8217;s more space to the right of this shot). There is also a lovely meeting room available for use at the business centre and I can&#8217;t wait to use it for the first time next week with a potential new prospect.</p>
<p>For now its time to continue working hard and seeing where that takes me in my third year freelancing!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.authenticstyle.co.uk/blog/authentic-style-moves-into-office-space/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Sea Urchin Fishing iPhone Application Design</title>
		<link>http://www.authenticstyle.co.uk/blog/sea-urchin-fishing-iphone-application-design/</link>
		<comments>http://www.authenticstyle.co.uk/blog/sea-urchin-fishing-iphone-application-design/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 07:38:05 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[iPhone App Design]]></category>

		<guid isPermaLink="false">http://www.authenticstyle.co.uk/blog/?p=799</guid>
		<description><![CDATA[Yesterday the Sea Urchin Charters iPhone App went live in the app store, so I thought I&#8217;d take some time to write up a case study for anyone who might be interested in the planning and design behind the app. As a quick side note, the development of this application was handled by Kriss Bennett [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday the Sea Urchin Charters iPhone App went live in the app store, so I thought I&#8217;d take some time to write up a case study for anyone who might be interested in the planning and design behind the app. <span id="more-799"></span></p>
<p>As a quick side note, the development of this application was handled by <a href="http://www.createful.com/">Kriss Bennett of Createful</a>. Thanks Kriss, great job! Now on to the case study&#8230;</p>
<h4>Application Overview</h4>
<p>The Sea Urchin iPhone application was really pretty straight forward. In essence it lets people who are interested in chartering Sea Urchin (a boat captained by my client Mick) find out a little more about exactly what&#8217;s involved in the day, costs, videos, availability, weather forecasts and tidal information. You can <a href="http://itunes.apple.com/gb/app/sea-urchin/id430250853?mt=8">download the app from the iTunes store</a> to take a look for yourself.</p>
<h4>Stage 1: Information Architecture</h4>
<p>The first step was to organize the information on the homescreen of the application. </p>
<p>Mick told me the sections he wanted the app to have, so I sat down with a pen and paper and started to think about how these could be best organized to allow users to quickly access each section of the app from the homescreen. </p>
<p>After a quick bit of sketching I decided that there were too many areas to simply list in one menu without the user having to scroll to see all of them. Ideally all the areas needed to be visible to the user without any need for scrolling. With that in mind I decided to break the navigation up into two sections. One for the &#8216;Availability&#8217;, &#8216;Weather&#8217; and &#8216;Tides&#8217; information and another for the more text heavy based pages. I used the conventional black bar at the bottom of the app (which many other apps use) to house the &#8216;Availability&#8217;, &#8216;Weather and &#8216;Tides&#8217; icons, and then settled on a simple button style navigation for the links to the other sections. </p>
<p>Prior to starting the wireframes Mick had also sent me a few images of his boat and also some happy customers snapped with their biggest catch of the day. I felt it was pretty important to include some of these images, so there needed to be a space devoted to that on the homescreen too. My idea here was for the images to fade in and out in a nice smooth cycle.</p>
<p>Once I&#8217;d settled on a layout for the homepage I opened up my wireframing tool of choice (Omnigraffle) and reproduced the sketch to then present to Mick. I also produced wireframes for the &#8216;Prices&#8217; and &#8216;About&#8217; screens of the app to show Mick how the &#8216;content style&#8217; screens would look.</p>
<p><img src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/04/iphone-app-wireframe.png" alt="" title="iphone-app-wireframe" width="714" height="478" class="alignnone size-full wp-image-817" /></p>
<p>The &#8216;Prices&#8217; page was a crucial one to wireframe in my opinion. The content Mick had sent across for me to work with included all the right information, but it was buried away amongst a mass of text, so actually finding all the different price options was pretty tricky. I solved this problem by clearly highlighting the prices and costs for chartering the whole boat in their own clearly defined blocks.</p>
<h4>Stage 2: Icon &#038; Application Design</h4>
<p>With the wireframes signed off I started work on the icon design. Initially I went with an all blue theme, but after some input from the client I worked in an orange tone to match the clients existing website.</p>
<p>The icon itself went through several iterations until we reached the fishing hook and waves which was immediately chosen by Mick. First off I went down the route of having a boat in the icon, then tried a couple of approaches with a fish silhouette and rod, but I knew we were on to a winner with the hook and waves combination.</p>
<p><img src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/04/iphone-app-icon.png" alt="" title="iphone-app-icon" width="714" height="262" class="alignnone size-full wp-image-816" /></p>
<p>With the design of the homescreen of the application I wanted to keep things really simple and focus on the navigation and images of the boat and past customers. Since this screen was really only a means of navigating around all the content, that had to be immediately obvious. </p>
<p>I was also keep to use some nice iconography to draw the users eye to the more key parts of the app &#8211; the availability calendar, weather and tide info.</p>
<p>Here&#8217;s a look at the designs for some of the screens:</p>
<p><img src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/04/fishing-iphone-app-design.png" alt="" title="fishing-iphone-app-design" width="714" height="600" class="alignnone size-full wp-image-815" /></p>
<h4>Stage 3: Development</h4>
<p>Once we&#8217;d signed the designs off (which happened very quickly might I add!) it was time to <a href="http://www.authenticstyle.co.uk/blog/iphone-app-design-workflow-for-designers/">save out all the images for iPhone 3 and iPhone 4 retina display</a> and then send them off to Kriss at <a href="http://www.createful.com/">Createful</a> to develop.</p>
<p>Prior to the development we&#8217;d discuss the best way of integrating the Sea Urchin availability calender along with the weather and tides info. </p>
<p>A mini version of Mick&#8217;s availability calendar was able to be linked to from within the app itself, there for not interrupting the user journey by closing the app and opening Safari instead. We also included a button to enable users to switch to the more detailed view of the calendar as well.</p>
<p>For the weather we were able to display the Whitby weather forecast straight from the Met Office website within the application.. Obviously this updates on the fly so is always the latest forecast &#8211; something thats very handy for a fisherman!</p>
<p><img src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/04/weather-calendar.png" alt="" title="weather-calendar" width="714" height="484" class="alignnone size-full wp-image-818" /></p>
<p>Unfortunately with the tide information there was no API which we could tie in with the app. Because of that we had to resort to linking to the relevant section of the National Oceanography Centre website.</p>
<p>Finally for the videos we were able to link to the mobile version of Youtube and pull in all the Sea Urchin videos enabling users to view them within the app.</p>
<h4>Conclusion</h4>
<p>Overall I think both Kriss and I produced a great looking app that provides everything that someone who is interested in chartering the Sea Urchin boat would need to know. I&#8217;d love to hear what you think of the design and/or the process in general in the comments below.</p>
<h4>Client Testimonial</h4>
<blockquote><p>
Many thanks to you both, the app looks awesome. The end product is very professional to match your working practices. I would recommend your services to anyone.
</p></blockquote>
<h5>Related Post</h5>
<ul>
<li><a href="http://www.authenticstyle.co.uk/blog/ichampi-iphone-application-design/">iChampi iPhone Application Design</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.authenticstyle.co.uk/blog/sea-urchin-fishing-iphone-application-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone App Design Workflow For Designers</title>
		<link>http://www.authenticstyle.co.uk/blog/iphone-app-design-workflow-for-designers/</link>
		<comments>http://www.authenticstyle.co.uk/blog/iphone-app-design-workflow-for-designers/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 11:50:21 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[iPhone App Design]]></category>

		<guid isPermaLink="false">http://www.authenticstyle.co.uk/blog/?p=741</guid>
		<description><![CDATA[Since the release of the iPhone 4 its meant more work for us app designers. In this article I&#8217;ll talk about the best method I&#8217;ve found for creating iPhone app design&#8217;s for both the iPhone 3 and the iPhone 4. The difference between iPhone 3Gs and iPhone 4 The old iPhone 3 and new iPhone [...]]]></description>
			<content:encoded><![CDATA[<p>Since the release of the iPhone 4 its meant more work for us app designers. In this article I&#8217;ll talk about the best method I&#8217;ve found for creating iPhone app design&#8217;s for both the iPhone 3 and the iPhone 4. <span id="more-741"></span></p>
<h4>The difference between iPhone 3Gs and iPhone 4</h4>
<p>The old iPhone 3 and new iPhone 4 have different resolution screens. Basically the iPhone 4 retina display has double the pixels of its counterpart, which means double the detail horizontally and double the detail vertically. Consequently this creates a little more work for us UI designers.</p>
<p>Here are the specifics:</p>
<ul>
<li>iPhone 3Gs &#8211; 320 x 480 screen size</li>
<li>iPhone 4 &#8211; 640 x 960 screen size</li>
</ul>
<p>If you use much of Apple&#8217;s pre-built interface library for your app then you don&#8217;t need to worry about these differences, as much of the work is already done &#8211; the default Apple UI buttons, labels etc work fine for both resolutions. The slight headache comes however if your iPhone app design is highly custom &#8211; e.g. it includes lots of custom made images, graphics, icons, menus etc. If that&#8217;s the case then you need to create versions for both iPhone 3 and iPhone 4 so that you can export two sets of images at those different resolutions.</p>
<h4>So does that mean I need to create my app designs twice?</h4>
<p>Thankfully, no! It&#8217;s all about using solid color, pattern or gradient layers with vector masks and in Photoshop to ensure that you can design first at the iPhone 3 resolution (320 x 480), and then scale that design up to the iPhone 4 resolution (640 x 960) without loosing any of the detail. You have to use vectors instead of bitmaps as bitmap images blur terribly when you scale them up.</p>
<p>Here is a list of 6 tips that will help you to create iPhone app designs that work for both platforms in Photoshop:</p>
<h4>1) Start out designing at the lowest resolution</h4>
<p>Start out designing for the iPhone 3 which uses the lower resolution. I won&#8217;t go into the specifics but after a quick experiment in Photoshop, vector masks and shape layers seem to scale up better than they scale down.</p>
<h5>2) Make sure ALL layers are made from shapes with layer styles for effects</h5>
<p>Get in the habit of using layer styles, shapes and vector masks. Bitmaps should not be used in iPhone app design because they&#8217;ll cause you headaches when you scale your design up. Shapes created with the rectangle / rounded rectangle tool will be your best friend as they easily scale up and down. One quick tip is to avoid using the ellipse tool for creating circles &#8211; for some reason it won&#8217;t snap to pixel properly. Instead use the rounded rectangle tool with a large radius to achieve a circle shape. Also, if you want to use textures, you first need to define that texture as a pattern, which you can then use as a &#8216;Pattern Overlay&#8217; in the layer style options.</p>
<p><img class="alignnone size-full wp-image-766" title="shape-tool" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/03/shape-tool.png" alt="" width="714" height="200" /></p>
<h5>3) Enable the &#8216;Snap to Pixel&#8217; setting when drawing with the shape tool</h5>
<p>To make sure this is enabled select the shape tool, then cast your eye to the top of Photoshop where all the options for the tool you&#8217;ve just selected appear (see image above). Next click the down arrow to the right of the Custom Shape icon (labelled Geometry Options on hover) and then tick the &#8216;Snap to Pixels&#8217; checkbox.</p>
<p><img class="alignnone size-full wp-image-768" title="shape-layer" src="http://www.authenticstyle.co.uk/blog/wp-content/uploads/2011/03/shape-layer.png" alt="" width="714" height="200" /></p>
<h5>4) Icons must be vectors pasted into Photoshop as &#8216;Shape Layers&#8217;</h5>
<p>If you use bitmap icons they&#8217;ll just blur when you scale your design up; you need to use icons that are in vector format. That may mean recreating some of your icons in Illustrator and then adding layer styles to them in Photoshop (Gradient Overlay, Stroke etc). Be careful when you copy and paste these from Illustrator into Photoshop though &#8211; you need to paste them into Photoshop as &#8216;Shape Layers&#8217; (see image above).</p>
<h5>5) Scale up as you go to check your work</h5>
<p>As you&#8217;re designing its best to keep checking your work by scaling it up 200%. This way you&#8217;ll notice any things that need correcting/adjusting as you go. At the bottom of this article is a link to a very handy Photoshop action that lets you do this in a single click.</p>
<h5>6) Export your images</h5>
<p>This isn&#8217;t something I&#8217;ve had to do myself as I provide all my iPhone app designs to developers who export the images and then develop the app. I should really start to learn Objective-C, but the time escapes me at the moment. Anyway, I know that the whole exporting process can be a little tedious.</p>
<p>According to this great article on Smashing Magazine (<a href="http://www.smashingmagazine.com/2010/11/17/designing-for-iphone-4-retina-display-techniques-and-workflow/">Designing for iPhone 4 Retina Display: Techniques and Workflow</a>), the best export method seems to be:</p>
<blockquote><p>&#8230;enable the layers you’d like visible, make a marquee selection of the element, then use Copy Merged and paste the selection into a new document — not much fun when you have hundreds of images to export.</p></blockquote>
<p>I&#8217;d advise checking out that article, especially the exporting section for more info, and also the incredibly useful Photoshop actions that can be found at the bottom of that same article. Also, this article may be of some use too: <a href="http://www.fullcreative.com/2010/09/designing-for-iphone-4s-retina-display-what-ive-learned/">&#8216;Designing for iPhone 4′s Retina Display: What I’ve Learned&#8217;</a>.</p>
<h4>Helpful Resources</h4>
<p>I hope some of you found this article useful. Below are a few links to some handy resources I regularly use for my designs.</p>
<ul>
<li><a href="http://www.teehanlax.com/blog/2009/06/18/iphone-gui-psd-30/">iPhone 3 GUI Design Kit</a></li>
<li><a href="http://www.teehanlax.com/blog/2010/06/14/iphone-gui-psd-v4/">iPhone 4 GUI Design Kit</a></li>
<li><a href="http://blog.cocoia.com/2010/iphone-ipad-icon-psd-template/">iPhone / iPad Icon Kit</a></li>
</ul>
<p>Also If you have any iPhone app design tips to share yourself, I&#8217;d love to hear them!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.authenticstyle.co.uk/blog/iphone-app-design-workflow-for-designers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

