<?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>Rob Cubbon &#124; Design and Marketing &#187; Design</title> <atom:link href="http://robcubbon.com/designing/feed/" rel="self" type="application/rss+xml" /><link>http://robcubbon.com</link> <description></description> <lastBuildDate>Wed, 16 May 2012 23:53:05 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Make Your Website Responsive to Mobiles and Tablets</title><link>http://robcubbon.com/website-responsive-mobiles-tablets/</link> <comments>http://robcubbon.com/website-responsive-mobiles-tablets/#comments</comments> <pubDate>Mon, 14 May 2012 13:42:36 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[adaptive]]></category> <category><![CDATA[responsive]]></category> <category><![CDATA[web design]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=6604</guid> <description><![CDATA[<p>More and more our online experience is being accessed by handheld devices. Many of us have been stuck with a website of maybe 900 to 1000 pixels wide which smaller devices would reduce in size. The mobile users would have to constantly zoom in and out to access various parts of the site (read: navigate [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p>More and more our online experience is being accessed by handheld devices.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2012/05/responsive-website-600.jpg" alt="monitor tablet mobile device showing responsive website" title="" width="600" height="267" class="aligncenter size-full wp-image-6605" /></p><p>Many of us have been stuck with a website of maybe 900 to 1000 pixels wide which smaller devices would reduce in size. The mobile users would have to constantly zoom in and out to access various parts of the site (read: navigate away from the site never to return!)</p><h2>Should your website be responsive?</h2><p>In a word, yes. A web design should respond to a visitor&#8217;s needs rather than the other way round.</p><p>I know of no other single website tweak that I&#8217;ve made in the last 6 years that has meant <strong>over 100 more visitors daily</strong>:</p><p><a
href="http://robcubbon.com/go/streamline"><img
src="http://cdn.robcubbon.com/wp-content/uploads/2012/05/google-analytics-devices.jpg" alt="google analytics devices" title="" width="640" height="366" class="aligncenter size-full wp-image-6618" style = "border: none; " /></a></p><h2>Is your website responsive to handheld devices?</h2><p>The simplest way to test a website against different sized screens is to simply re-size your browser&#8217;s window and see what happens. Go ahead and narrow the browser window on this website and see the design respond to the width of the browser.</p><p>Have a look at this great <a
href="http://www.studiopress.com/responsive/">free tool to test your website&#8217;s responsiveness</a>. Yes, &#8220;responsiveness&#8221; is a word, just not a very nice one.</p><p>One of the best responsive websites, in my opinion, is Chris Coyier&#8217;s <a
href="http://CSS-tricks.com">CSS-tricks.com</a>, here it is on that tool:</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2012/05/css-tricks-responsive.jpg" alt="css-tricks-responsive" title="" width="640" height="222" class="aligncenter size-full wp-image-6606" /></p><p>And here is this website tested with the tool:</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2012/05/rob-cubbon-responsive.jpg" alt="rob-cubbon-responsive" title="" width="640" height="221" class="aligncenter size-full wp-image-6607" /></p><p>If you&#8217;re seeing any horizontal scroll bars with your site, you might start thinking about responsive design.</p><h2>How to make your website responsive</h2><p>Well, I cheated! I simply installed the <a
href="http://robcubbon.com/go/streamline">Streamline</a> theme by <a
href="http://robcubbon.com/go/genesis">Genesis</a> and tweaked accordingly. I also like the <a
href="http://robcubbon.com/go/eleven40">Eleven40</a> theme which has a much wider design on the monitors that can handle it of, guess, 1140 pixels! These are affiliate links, however there are many <a
href="http://wordpress.org/extend/themes/responsive">free responsive WordPress themes</a> out there.</p><p>However, there are a couple of changes necessary to make a website responsive. This isn&#8217;t the only way of doing it but it is the best and simplest I&#8217;ve come across.</p><p>First of all you need to add this to the head to stop the iPhone from scaling the whole website to fit it&#8217;s screen.</p><blockquote><p><code>&lt;meta name="viewport" content="width=device-width; initial-scale=1.0"&gt;</code></p></blockquote><p>Other than that it&#8217;s a question of adding media queries to your CSS to adapt your website to different sizes of browser window.</p><h2>CSS media queries</h2><p>In your CSS you need to change the styles of different elements as they adapt to different widths. This is, strictly speaking, &#8220;adaptive design&#8221; but I think people are more comfortable with the term &#8220;responsive design&#8221; so that is what I&#8217;m using to describe this process.</p><p>This website is 960 pixels wide when viewed on a large monitor. If the site is viewed on a device narrower than 960 pixels the design would be inappropriate, so the first media query we add is for 960px.</p><p>The whole website is sitting within a containing div called <code>#wrap</code>.</p><blockquote><p><code>#wrap { width : 960px; margin: 0 auto; }</code></p></blockquote><p>This <code>#wrap</code> div, along with many other elements, is set to change as soon as the browser window narrows to less than 960 pixels wide by this media query:</p><blockquote><p><code>@media only screen and (max-width: 960px) { #wrap { width: 100%; margin: 0; } }</code></p></blockquote><p>So now the website will squeeze or stretch to fix the width of the browser if it is less than 960 pixels wide.</p><p>But you also have to make sure that other elements of the website behave the way you want them to. So, similar to the <code>#wrap</code> div, both the div containing this article (<code>.content-sidebar #content</code>) and the sidebar (<code>.sidebar</code>) have specified widths in the main CSS&#8230;</p><blockquote><p><code>.content-sidebar #content { width: 642px; }<br
/> .sidebar { width: 316px; }</code></p></blockquote><p>&#8230; when added together they come to less than 960 pixels – the width of the website – and so appear next to each other. And when the browser is narrower than the width of the website they change to 100%  &#8230;</p><blockquote><p><code>@media only screen and (max-width: 960px) { .content-sidebar #content, .sidebar { width: 100%; } }</code></p></blockquote><p>&#8230; so the sidebar (coming after the content area in the HTML) drops underneath the content area when using the portrait iPad, for example.</p><p>And there are numerous other changes you can make. For example, once this website is viewed at a width of less than 960 pixels, the logo in the top left moves over to the center and the social media icons top right disappear, the sign up form at the top of the sidebar disappears to avoid too much repetition of this element, and the logo changes to a narrower version for devices not wider than 300 pixels:</p><blockquote><p><code>@media only screen and (max-width: 300px) { .header-image #title-area { background: url(images/logo-symbol.jpg) no-repeat top center; } }</code></p></blockquote><p>You can add media queries in at any width, 240px, 320px, 480px, 768px, 960px and 1024px, are the most common. But I was thinking mostly of the portrait tablet width (around 760 pixels) and a portrait smart phone (around 320 pixels).</p><h2>Images and video</h2><p>With responsive sites everything has to respond. Getting the images to size to the window is easy, put this in the main CSS:</p><blockquote><p><code>img { height: auto; max-width: 100%; }</code></p></blockquote><p>And for the videos, I used a WordPress plugin called <a
href="http://wordpress.org/extend/plugins/fitvids-for-wordpress/">FitVids</a>.</p><h2>What <em>you</em> can do</h2><p>Making my website responsive was actually ten times less painful than I thought it would be. I&#8217;m no hard-headed code geek so if I can do it you certainly can.</p><p>I&#8217;ll be writing more on this topic soon with a video. Also there are great article here about <a
href="http://line25.com/tutorials/create-a-responsive-web-design-with-media-queries">responsive web design and media queries</a> by Chris Spooner.</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/website-responsive-mobiles-tablets/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>How To Teach Yourself Web Design</title><link>http://robcubbon.com/how-to-teach-yourself-web-design/</link> <comments>http://robcubbon.com/how-to-teach-yourself-web-design/#comments</comments> <pubDate>Mon, 23 Apr 2012 13:52:37 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[css]]></category> <category><![CDATA[design blogs]]></category> <category><![CDATA[html]]></category> <category><![CDATA[JS]]></category> <category><![CDATA[online resources]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[web design]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=6386</guid> <description><![CDATA[<p>Yes, it is perfectly possible to teach yourself web design. I asked around this week to see how people managed to acquire the skills and I tried to remember what worked for me. There are three main ways you can teach yourself web design. By doing. People learn by actually creating websites. By using online [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p>Yes, it is perfectly possible to teach yourself web design. I asked around this week to see how people managed to acquire the skills and I tried to remember what worked for me.</p><p><img
class="aligncenter size-full wp-image-6403" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2012/04/learning-web-design-first-lesson.jpg" alt="learning-web-design-first-lesson" width="520" height="375" /></p><p>There are three main ways you can teach yourself web design.</p><ol><li><strong>By doing</strong>. People learn by actually creating websites.</li><li><strong>By using online resources</strong>. Everyone at some point finds answers online about how to design websites.</li><li><strong>By reading</strong>. This one surprised me. Most designers say they learn web design, in part, by reading books.</li></ol><p>So, let&#8217;s go through each of these categories to find out how to teach yourself web design.</p><h2>1. Learning web design by doing</h2><p>The best way to start to understand web pages is to look how existing websites are put together and build them yourself.</p><h3>Observe how other websites work</h3><p>To start off, most web pages on the internet are written, at least in part, in HTML. In order to see the HTML that creates this page you need to &#8220;View Source&#8221; in the browser you are using. Try going Cmd/Ctrl-U (for Firefox), go Cmd/Ctrl-Alt/Opt-U (for Chrome), and if you&#8217;re using Internet Explorer, you really need to ask yourself if web design is the right career path for you.</p><p>Try looking through the HTML to see how the different elements on a web page are marked up. You may be able to identify certain tags straightaway. For example <code>&lt;p&gt;</code> is for paragraph, <code>&lt;h1,2,3&gt;</code> are headings, <code>&lt;img&gt;</code> is for an image, etc. You will notice that most of these tags work in pairs to denote the beginning and end of the mark up, for example <code>&lt;p&gt;Text here&lt;/p&gt;</code> shows the opening and closing of the paragraph tag with the slash (/) preceding the closing tag. Other tags don&#8217;t work in pairs, for example the image tag self closes <code>&lt;img src = "http://robcubbon.com/images/rob.jpg" /&gt;</code> this instructs the browser to display an image with a particular web address as the source (<code>src</code>).</p><p><img
class="aligncenter size-full wp-image-6404" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2012/04/learning-web-design-second-lesson.jpg" alt="learning-web-design-second-lesson" width="520" height="375" /></p><p>Another thing you might notice from the HTML source is that all HTML pages have similar structure. They all start with a <code>&lt;!DOCTYPE&gt;</code> declaration saying which version of HTML it&#8217;s in, followed by an <code>&lt;HTML&gt;</code> declaration, followed by the <code>&lt;head&gt;</code> of the document which is a container of various elements including links to scripts, style sheets, the meta information, etc. After the <code>&lt;head&gt;</code> comes the <code>&lt;body&gt;</code> where the elements of the web page are marked up.</p><p><strong>Exercise:</strong> Select all the source code of this page into a NotePad (PC) or TextEdit (Mac) document and save it to your computer as &#8220;test.html&#8221; or something. Open this file in a browser and it should look exactly the same as the online version. Now turn off your connection to the internet and see what the test page looks like. Pretty different, huh? Try to work out why.</p><h3>Tools of the trade</h3><p>While you&#8217;re doing this, there will be certain tools you&#8217;ll need.</p><ul><li><strong>Multiple browsers and smart phones</strong>. Try testing your own sites on different browsers and phones (this is where you&#8217;ll start a long standing hate affair with Internet Explorer).</li><li><strong>Text editor</strong>. You may use the basic NotePad (PC) or TextEdit (Mac), or maybe <a
href="http://www.panic.com/coda/">Coda</a> (Mac) or Dreamweaver – don&#8217;t use Dreamweaver in the visual mode, just work on the code, you need to understand how this stuff works under the hood.</li><li><strong>Validator</strong>. Validate your web pages with the <a
href="http://validator.w3.org/">HTML Validator</a> and the <a
href="http://jigsaw.w3.org/css-validator/">CSS Validator</a> (use a browser plugin like <a
href="https://chrome.google.com/webstore/detail/bfbameneiokkgbdmiekhjnmfkcnldhhm">Web Developer for Chrome</a> to call on them quickly).</li><li><strong><a
href="https://developers.google.com/chrome-developer-tools/docs/overview">Chrome Developer Tools</a> and <a
href="http://getfirebug.com/">Firebug</a> for Firefox</strong>. These tools help you understand CSS and JavaScript which, if you thought HTML was difficult, do take some understanding.</li><li><strong>Graphics and image editors</strong>. Central to web design are image editors like Photoshop or Fireworks. These are quite expensive but there is <a
href="http://www.gimp.org/">GIMP</a> plus a host of online image editors if you&#8217;re just starting out.</li></ul><p><img
class="aligncenter size-full wp-image-6405" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2012/04/learning-web-design-third-lesson.jpg" alt="learning-web-design-third-lesson" width="520" height="375" /></p><h3>Creating your own static HTML websites</h3><p>While your understanding of HTML, CSS and JavaScript grows you should be creating static HTML sites, either locally or on a web server. Continuously play with the code to try to do cool things. Try to recreate certain elements in other websites by copying bits of the code.</p><p>Although the websites you eventually create are not likely to be made from HTML files, it vital you understand how to create static HTML sites first before you can start using PHP and/or Content Management Systems (CMSs) to create HTML.</p><h3>Creating your own websites with CMSs</h3><p>Most websites are created by CMSs – software that can create HTML pages within specified templates. The best ones are <a
href="http://wordpress.org/">WordPress</a>, <a
href="http://www.joomla.org/">Joomla</a> and <a
href="http://drupal.org/">Drupal</a>, but there are a host of lighter, open source CMSs you can experiment with, these will teach you how PHP, and with other CMSs, ASP, are used to piece together websites.</p><p>Use <a
href="http://www.mamp.info/">MAMP</a> (Mac) or <a
href="http://www.wampserver.com/en/">WAMP</a> (Windows) on your computer to run these systems locally so that you can get a good understanding of how they work.</p><h3>Using image editors</h3><p>You will need to know how to use Photoshop or something similar. You will need this to create graphics for the site as well as to provide <a
href="http://robcubbon.com/designing-web-page-photoshop/">complete visuals of how the site will look</a> when finished to aid the design process.</p><h3>Get designing</h3><p>Of course, I haven&#8217;t mentioned that the resulting websites will not only have to validate, work, be found by search engines, serve a purpose and be marketed but also &#8230; they have to look good.</p><p>In order to improve your artistic eye, regularly produce work and then try to better it. Sketch designs on paper then work on them in Photoshop or whatever graphics program you have. Practice will help you become a better designer. I will be recommending more resources later that will help you with design principles.</p><p><img
class="aligncenter size-full wp-image-6413" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2012/04/learning-web-design-lesson-four.jpg" alt="learning-web-design-lesson-four" width="520" height="375" /></p><h2>2. Online resources</h2><p>When people want answers they go to the internet and &#8220;<a
href="http://www.google.com">Google</a> it&#8221; or search <a
href="http://www.youtube.com">YouTube</a>. Web design is no different. There are many resources that will help you online. First and foremost there is <a
href="http://www.w3schools.com/">W3 Schools</a> which web designers refer to as the best online self teaching resource, there is also <a
href="http://www.tizag.com/">Tizag</a>. Some people recommend Lynda.com although I&#8217;ve not used it personally.</p><h3>Blogs</h3><p>There are a number of great design blogs out there. There are big ones that can help you like <a
href="http://www.smashingmagazine.com/">SmashingMagazine</a>, <a
href="http://www.webdesignerdepot.com/">WebDesignerDepot</a>, <a
href="http://www.1stwebdesigner.com/">1stWebDesigner</a> and the <a
href="http://envato.com/">Envato</a> network.</p><p>Personally, I get more from the independent web and graphic designers who blog. There are, however, loads that I have learned from over the years so here are just a few and I apologise to any excellent bloggers that I&#8217;ve left off the list.</p><ul><li><a
href="https://twitter.com/#!/chriscoyier"><strong>Chris Colyer</strong></a>&#8216;s <a
href="http://css-tricks.com/">CSS Tricks</a> is a great looking responsive website but also has great web design info and tricks</li><li><a
href="https://twitter.com/#!/vpieters"><strong>Veerle Pieters</strong></a> has great Photoshop and Illustrator tutorials on <a
href="http://veerle.duoh.com/">Veerle&#8217;s blog</a></li><li><a
href="https://twitter.com/#!/davidairey/"><strong>David Airey</strong></a> is someone I&#8217;ve followed for a while on his own <a
href="http://www.davidairey.com/">eponymous blog</a>, <a
href="http://www.logodesignlove.com/">LogoDesignLove</a> and <a
href="http://identitydesigned.com/">IdentityDesigned</a>. David is interested in the overarching identity of organisations amongst other things.</li><li><a
href="https://twitter.com/#!/chrisspooner"><strong>Chris Spooner</strong></a> has taught me a lot with tutorials at his <a
href="http://blog.spoongraphics.co.uk/">blog at SpoonGraphics</a> and plus information and inspiration at <a
href="http://line25.com/">Line25</a></li><li><strong>Fabio Sasso</strong>&#8216;s wonderfully designed site <a
href="http://abduzeedo.com/">Abduzeedo</a> offers great inspiration and weirdness.</li><li><a
href="https://twitter.com/#!/nickla"><strong>Nick La</strong></a>&#8216;s <a
href="http://ndesign-studio.com/">N.Design Studio</a> and <a
href="http://webdesignerwall.com/">WebDesignerWall</a> have some fantastic information and great inspiration.</li></ul><p>Please feel free to add your favorite design blogs in the comments below.</p><h3>Forums</h3><p>When you are bashing your head against a brick wall forums are great places to get answers. Post a description of your issue and the web address and very often someone will get back to you with a solution. Here are some of my favorite forums.</p><p>I like <a
href="http://www.estetica-design-forum.com/">Estetica Design Forum</a>, <a
href="http://www.designforums.co.uk/">DesignForums.co.uk</a>, and <a
href="http://www.designerstalk.com/forums/">Designer’s Talk</a>. There’s <a
href="http://forums.digitalpoint.com/">Digital Point</a> and <a
href="http://www.sitepoint.com/forums/forum.php">Sitepoint</a> for more wider ranging queries, the <a
href="http://wordpress.org/support/">WordPress forum</a> is excellent and there’s the <a
href="http://www.warriorforum.com/">Warrior Forum</a> for internet marketing.</p><h2>3. Books</h2><p>Many web designers maintain that good old-fashioned physical books have helped teach them web design. Here are a few of my favorites and some others that have been recommended to me. The links are Amazon.com affiliate links.</p><ul><li><a
href="http://www.amazon.com/gp/product/0910215936/ref=as_li_tf_tl?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0910215936">Build Your Own Website The Right Way Using HTML &amp; CSS</a> 3th (third) edition by Ian Lloyd is a Sitepoint book I read years ago. It really helped me at the time as it focuses on web design best practices. Make sure you buy an up-to-date edition (at the moment the third edition which includes a lot on HTML5).</li><li><a
href="http://www.amazon.com/gp/product/0596802447/ref=as_li_tf_tl?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0596802447">CSS: The Missing Manual</a> by David Sawyer McFarland includes explanations, examples, and step-by-step tutorials. This book is especially recommended as it gives you the background to CSS and includes a lot about CSS3.</li><li><a
href="http://www.amazon.com/gp/product/098057689X/ref=as_li_tf_tl?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=098057689X">The Principles of Beautiful Web Design</a>, 2nd Edition by Jason Beaird, maintains that design is a skill that can be learned and teaches you the fundamental principles of design.</li><li><a
href="http://www.amazon.com/gp/product/1592534333/ref=as_li_ss_tl?ie=UTF8&#038;tag=graandwebdesl-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1592534333">Color Design Workbook: A Real World Guide to Using Color in Graphic Design</a> by AdamsMorioka (editor) provides the vital information necessary to apply color creatively and effectively to design work.</li><li><a
href="http://robcubbon.com/go/dontmakemethink">Don&#8217;t Make Me Think: A Common Sense Approach to Web Usability</a>, 2nd Edition by Steve Krug an instant classic on web usability, loaded with insights and practical advice.</li><li><a
href="http://www.amazon.com/gp/product/0578012812?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0578012812">Getting Real: The smarter, faster, easier way to build a successful web application</a> by 37 Signals may be about creating web applications not sites, but it has such a marvellous way of simplifying web processes that I found it such a useful read.</li><li><a
href="http://digwp.com/book/">Digging into WordPress</a> by Chris Coyier &amp; Jeff Starr comes highly recommended as the great WordPress book. Available as a PDF version (handy for copying code) as well as a physical version.</li></ul><p>There are many more books I could have included especially about design theory. If you have any suggestions of books that have helped you with web design, please let us know about them in the comments.</p><h2>What <em>you</em> can do</h2><p>Many designers maintain that failure is actually the best teacher. So get out there and design websites! When, as undoubtedly will happen, you come across a brick wall, you can use some of the online resources here to help you. And, when you can&#8217;t look at the computer screen any more, you can read a book about it!</p><p>I would love to hear your suggestions of web design resources and tips for teaching yourself here in the comments. Plus, ask me here if there&#8217;s anything you&#8217;re stuck on at the moment.</p><p>And you can <a
href="http://robcubbon.com/running-a-web-design-business/">download my e-book on how to run your own design business.</a></p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/how-to-teach-yourself-web-design/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>How to Hire a Graphic Designer – 9 Questions to Ask</title><link>http://robcubbon.com/how-to-hire-a-graphic-designer-9-questions-to-ask/</link> <comments>http://robcubbon.com/how-to-hire-a-graphic-designer-9-questions-to-ask/#comments</comments> <pubDate>Mon, 16 Apr 2012 14:22:57 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Clients]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[clients]]></category> <category><![CDATA[graphic desginer]]></category> <category><![CDATA[questions]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=6353</guid> <description><![CDATA[<p>It may be easy to find programmers or coders online but hiring a graphic designer is ten times more difficult. So what questions do you ask potential graphic designers in order to find the perfect person for your new project? But wait! Before you reach for your phone, look at the designer&#8217;s website to see [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p>It may be easy to find programmers or coders online but hiring a graphic designer is ten times more difficult. So <strong>what questions do you ask potential graphic designers</strong> in order to find the perfect person for your new project?</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2012/04/questions-graphic-designer1.jpg" alt="questions graphic designer" title="" width="600" height="393" class="aligncenter size-full wp-image-6367" /></p><p>But <strong>wait</strong>! Before you reach for your phone, look at the designer&#8217;s website to see if (s)he has done similar work to what you want doing first. That done, here are some questions to ask:</p><h2>1. Have you done this type of work before?</h2><p>Even though you know this designer&#8217;s work, it&#8217;s a good idea to ask them this question anyway. A designer may have created the type of website you&#8217;re looking to build, but have they worked in your particular niche before? That would be a useful talking point.</p><p>Ask for samples of work that may be particularly pertinent to your project. Most designers will have work that isn&#8217;t in their portfolio but may be much more relevant to you.</p><h2>2. What processes will you use?</h2><p>What steps and stages are involved in the design? How many revisions? You should be able to get firm answers to this sort of question. Avoid anyone who is completely vague about this.</p><h2>3. How long will it take?</h2><p>Although the answer to this question will generally depend on you, the client, the designer should be able to give you a rough estimate of the amount of time to complete all the stages that were elicited in the previous question.</p><p>You should not only want to know how long the project will take but also if the designer has the time to do it.</p><h2>4. How much is it going to cost?</h2><p>There are many <a
href="http://robcubbon.com/graphic-designers-get-paid/">different ways to charge for design work</a>. Smaller jobs maybe charged by the hour. Whereas designers may prefer to give an estimated fee for larger projects.</p><p>If given a fixed fee also ask for the hourly rate and see how they compare.</p><h2>5. Are we going to have a contract?</h2><p>Most designers will prefer to <a
href="http://robcubbon.com/graphic-designers-get-paid/">draw up a contract for new clients</a>. The contract should benefit both parties as it will specify the various stages and deliverables of the project as well as the payment deadlines.</p><p>There may be clauses in the contract to stipulate what happens if the project is stopped before completion as well as information on who retains copyright or ownership of the designs. Which brings me on to my next question&#8230;</p><h2>6. Who will own the copyright?</h2><p>Typically, the designer will retain the copyright to any work unless it is signed over to the client in the contract. Most designers will be happy to do this.</p><p>Legal tussles can ensue as a result of lack of contract and copyright agreement but they are extremely rare. The most important thing is communication, and this brings me on to my next question&#8230;</p><h2>7. Do you understand the purpose of this project?</h2><p>Many clients will say <em>what they want</em> without explaining <em>why they want it</em>. It is essential that a web designer, for example, understands the purpose of the website. Otherwise they&#8217;re just making it look pretty – and that&#8217;s not design.</p><h2>8. Can you meet in person?</h2><p>It is always better to talk face-to-face rather than on the phone but the designer&#8217;s time is precious. Make an effort to meet the designer near or at their place and buy them a coffee.</p><p>Try to find out their core values as a designer and see if they resonate with what you&#8217;re trying to build.</p><h2>9. What&#8217;s your gut instinct?</h2><p>At the end of the day <a
href="http://robcubbon.com/and-now-for-something-completely-different/">we are human beings</a> and we make decisions emotionally. Sometimes rightly; sometimes wrongly. But, usually, it&#8217;s better to go with your heart than with your head when hiring designers.</p><h2>What can <em>you</em> do?</h2><p>Remember to do your homework when hiring designers:</p><ul><li>Research their websites and previous work to see if they may be a good fit for you</li><li>Think through the project to decide what you need and why you need it</li><li>Communicate the above to the designer in an email before the conversation</li></ul><p>And, designers, make sure you have good answers for the above.</p><p>Thanks go to <a
href="https://plus.google.com/u/0/111527063408109222423/posts/N3tgyuJvEXR">Cheryl Picket on Google+</a> and the <a
href="http://www.linkedin.com/groups?gid=2087345">In-House Designers group</a> on LinkedIn for ideas.</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/how-to-hire-a-graphic-designer-9-questions-to-ask/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Social Media Buttons – HTML and CSS</title><link>http://robcubbon.com/social-media-buttons-html-css/</link> <comments>http://robcubbon.com/social-media-buttons-html-css/#comments</comments> <pubDate>Mon, 13 Feb 2012 15:01:15 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Social media]]></category> <category><![CDATA[buttons]]></category> <category><![CDATA[css]]></category> <category><![CDATA[html]]></category> <category><![CDATA[positioning]]></category> <category><![CDATA[sprites]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=5888</guid> <description><![CDATA[<p>If you are reading this on my blog you&#8217;ll notice 7 beautiful grayed out social media icons on the right side of the header which turn into full technicolor when hovered over. I seem to be getting more and more traffic from these various social media avenues so it makes sense to fill up that [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2012/02/social-media-mind1.jpg" alt="phrenology map social-media-mind" title="" width="300" height="321"  class="aligncenter size-full" /></p><p>If you are reading this on my blog you&#8217;ll notice 7 beautiful grayed out social media icons on the right side of the header which turn into full technicolor when hovered over.</p><p>I seem to be getting more and more traffic from these various social media avenues so it makes sense to fill up that empty space with them – even though I&#8217;ve always had them in the sidebar.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2012/02/social-media-header-buttons.jpg" alt="social-media-header-buttons" title="" width="307" height="91"  /></p><h2>Think speed!</h2><p>As you will already know, Google takes loading speeds into account when ranking pages. Also, I hate waiting for sites to load. So I wanted to create these header buttons with a minimum amount of HTML, CSS and, more importantly, HTTP requests.</p><p>Here I have 7 social media icon images and all of them have rollover states. That means there could potentially be 14 HTTP requests for images just for these little buttons. The images themselves maybe small but it&#8217;s the separate requests to get the images that can severely increase page load.</p><p>So how do we cut down those image requests? Simple, by creating one big image.</p><h2>Say hello to my best friend – the image sprite</h2><p>Here is the image sprite I used to create the social media buttons and their hover states:</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2012/02/social-media-gif.gif" alt="social media icons" title="" width="224" height="64"  /></p><p>As you can see a sprite is one big image that can be shifted around to only display parts of it at particular times. Here each button is 32 pixels by 32 pixels. They are put right next to each other so that there is no space in between – this makes it easier later on when you do the CSS positioning.</p><h2>HTML for the social media buttons</h2><p>As I&#8217;m using the <a
href="http://robcubbon.com/go/genesis">Genesis theme</a> for WordPress (that&#8217;s an affiliate link), I enter the HTML into a text header widget.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2012/02/text-header-widget.jpg" alt="text-header-widget" title="" width="475" height="242" class="alignnone size-full wp-image-5895" /></p><p>Here is the HTML:</p><blockquote><p><code>&lt;div id="head-soc"&gt;<br
/> &lt;ul&gt;<br
/> &lt;li id="g"&gt;&lt;a href=""&gt;Google+&lt;/a&gt;&lt;/li&gt;<br
/> &lt;li id="rss"&gt;&lt;a href=""&gt;RSS Feed&lt;/a&gt; &lt;/li&gt;<br
/> &lt;li id="sub"&gt;&lt;a href=""&gt;Subscribe&lt;/a&gt;&lt;/li&gt;<br
/> &lt;li id="fb"&gt;&lt;a href=""&gt;Facebook&lt;/a&gt;&lt;/li&gt;<br
/> &lt;li id="twit"&gt;&lt;a href=""&gt;Twitter&lt;/a&gt;&lt;/li&gt;<br
/> &lt;li id="li"&gt;&lt;a href=""&gt;LinkedIn&lt;/a&gt;&lt;/li&gt;<br
/> &lt;li id="youtube"&gt;&lt;a href=""&gt;YouTube&lt;/a&gt;&lt;/li&gt;<br
/> &lt;/ul&gt;<br
/> &lt;/div&gt;</code></p></blockquote><p>As you can see that is just a simple HTML list for each social media item and each list element has it&#8217;s own ID (this is for the CSS positioning). I&#8217;ve taken the links and the titles out so you can see what&#8217;s going on.</p><h2>CSS for the social media buttons</h2><p>And now here comes the clever bit.</p><blockquote><p><code>#head-soc ul li {list-style :none; padding: 0 0 0 12px; float: right;}<br
/> #head-soc ul li a {text-indent: -9999px; font-size: 0; line-height: 0; overflow: hidden ; height: 32px; width: 32px ;border: 0;	 background: url(images/social-media.gif) no-repeat; display: block;}</p><p>#head-soc li#g a {background-position: 0px 0px;}<br
/> #head-soc li#g a:hover {background-position: 0px -32px;}</p><p>#head-soc li#rss a {background-position: -32px 0px;}<br
/> #head-soc li#rss a:hover {background-position: -32px -32px;}</p><p>#head-soc li#sub a {background-position: -64px 0px;}<br
/> #head-soc li#sub a:hover {background-position: -64px -32px;}</p><p>#head-soc li#fb a {background-position: -96px 0px;}<br
/> #head-soc li#fb a:hover {background-position: -96px -32px;}</p><p>#head-soc li#twit a {background-position: -128px 0px;}<br
/> #head-soc li#twit a:hover {background-position: -128px -32px;}</p><p>#head-soc li#li a {background-position: -160px 0px;}<br
/> #head-soc li#li a:hover {background-position: -160px -32px;}</p><p>#head-soc li#youtube a {background-position: -192px 0px;}<br
/> #head-soc li#youtube a:hover {background-position: -192px -32px;}</code></p></blockquote><p>As you can see, the CSS imports the image &#8220;social-media.gif&#8221; just the once and then alters the position of the image within the 32 pixel square space to show the correct button.</p><h2>Social media buttons in the header</h2><p>So why am I putting them in the header when they&#8217;ve always been in the sidebar? I&#8217;ve learned through testing websites over the last few years that being obvious works: a big button is much more likely to be clicked than a small one.</p><p>When I find a good website, I usually look for the Twitter link. If I really like what they&#8217;re doing I&#8217;ll sign up for newsletters. If I can&#8217;t see where to do this within one second, I&#8217;ll leave, maybe never to return!</p><p>So, I&#8217;ll hopefully get more followers on these social sites – I&#8217;ll let you know if I do or I don&#8217;t.</p><p>Finally here is the list of buttons. Why don&#8217;t you join me in one of these places? <img
src='http://cdn.robcubbon.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><ul><li><a
rel="author" href="https://plus.google.com/111527063408109222423/" title="My Google profile" >Google+</a> This is the social network which has the greatest trajectory for improvement. Google rules the search engines so it&#8217;s going to try to push this social network as far as it can. I write quite a lot here, contribute to discussions, arrange hangouts and post my latest blog posts</li><li><a
href="http://feeds.feedburner.com/robcubbon/MBQo" title="Rob Cubbon RSS feed" >RSS Feed</a> You can subscribe to all my blog posts by a feed-reader such as Google Reader</li><li><a
href="http://robcubbon.com/free-how-to-market-yourself-online-ebook/" title="Subscribe to newsletters" >Subscribe</a> Here you can subscribe to my newsletter and get a free copy of my e-book &#8220;How to Market Yourself Online&#8221;</li><li><a
href="http://www.facebook.com/robcubbondotcom" title="My Facebook Page" >Facebook</a> This is really coming along, we&#8217;re having great discussions and I post my latest posts here as well</li><li><a
href="http://twitter.com/RobCubbon" title="Follow me on Twitter" >Twitter</a> Here I tweet out my latest stuff plus all the stuff I read everywhere. I can tweet up to 10 times a day!</li><li><a
href="http://uk.linkedin.com/pub/robert-cubbon/4/197/492" title="Connect with me at LinkedIn" >LinkedIn</a> This is my LinkedIn profile. But I love LinkedIn Groups and I have one called <a
href="http://www.linkedin.com/groups/Niche-Site-Marketing-4019468">Niche Site Marketing</a></li><li><a
href="http://www.youtube.com/user/robcub40" title="My YouTube channel" >YouTube</a> This contains about 50 tutorial videos about web design and internet marketing – more to come here soon!</li></ul><h2>What do you think?</h2><p>Do you have social media links in your sidebar or header? How did you create them? What do you think of mine? Are they the right shape and in the best position?</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/social-media-buttons-html-css/feed/</wfw:commentRss> <slash:comments>23</slash:comments> </item> <item><title>Free Software for Web Designers</title><link>http://robcubbon.com/free-software-web-designers/</link> <comments>http://robcubbon.com/free-software-web-designers/#comments</comments> <pubDate>Mon, 14 Nov 2011 12:42:47 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[free apps]]></category> <category><![CDATA[free software]]></category> <category><![CDATA[web design]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=5223</guid> <description><![CDATA[<p>There is certainly no need to be daunted by a financial barrier to entry when starting your own web design company. Don&#8217;t be put off by the price of Photoshop or the whole Creative Suite – there&#8217;s loads of free software for web designers that can help you keep costs down. Online image editors Photoshop [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
class="size-full wp-image-5345 aligncenter" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/11/free-software.jpg" alt="free-software for web designers" width="600" height="401" /></p><p>There is certainly no need to be daunted by a financial barrier to entry when starting your own web design company. Don&#8217;t be put off by the price of Photoshop or the whole Creative Suite – there&#8217;s loads of free software for web designers that can help you keep costs down.</p><h2>Online image editors</h2><p>Photoshop is the application that is potentially the biggest financial outlay for a web designer. But there are a few online image editors out there. <a
href="http://pixlr.com/">Pixlr</a> is one of the best. <a
href="http://fotoflexer.com/">FotoFlexer</a> is also worth a try.</p><h2>Open source alternatives to Creative Suite</h2><p>There are <a
href="http://robcubbon.com/free-open-source-alternatives-to-photoshop-indesign-and-illustrator/">free open sources versions of Creative Suite applications</a>. <a
href="http://www.gimp.org/">GIMP</a> has been around for a long time and boasts plugins, brushes and tools to extend the basic functionality of the software. <a
href="http://www.pixelmator.com/">Pixelmator</a> is not free but is cheap compared to Photoshop.</p><p><a
href="http://inkscape.org/">Inkscape</a>, which is popular with the Linux community, is a free alternative to Adobe Illustrator. This free vector graphics manipulator produces SVG files without unnecessary code to a reduced file size.</p><h2>Text and code editors</h2><p>Aside from an image editor, a web designer will always be in need of a good code editor. There are cheap alternatives to Dreamweaver such as <a
href="http://macromates.com/">Textmate</a> and <a
href="http://www.panic.com/coda/">Coda</a>.</p><p>Obviously there are the free text editors available with the operating systems such as Notepad which comes with Windows and TextEdit which comes with OS-X. I&#8217;ve been really impressed with <a
href="http://www.barebones.com/products/textwrangler/">Text Wrangler</a> which has a multi-file search &amp; replace feature that is really handy.</p><h2>FTP</h2><p>For me, it&#8217;s <a
href="http://filezilla-project.org/">Filezilla</a> all the way. Easy to use and quick. It used to not be available for Mac so in the old days I used <a
href="http://cyberduck.ch/">Cyberduck</a>. I miss that yellow duck icon!</p><p>If you don&#8217;t want to download an app there&#8217;s <a
href="http://net2ftp.com/">net2ftp</a> which gives you an FTP client in your browser. There’s even a skin designed for the iPhone.</p><h2>File Sharing</h2><p>If you want to deliver large files to a client there are a host of free services, I use <a
href="http://www.yousendit.com/">YouSendIt</a>. And to store files on the cloud to access from multiple devices you can use <a
href="http://robcubbon.com/go/dropbox">DropBox</a>. For downloading torrents there&#8217;s <a
href="http://www.utorrent.com/">µTorrent</a> for Mac and <a
href="http://www.bittorrent.com/downloads">BitTorrent</a>.</p><h2>Images</h2><p>There are lots of places to get great <a
href="http://robcubbon.com/free-stock-photography-for-a-graphic-designer/">free stock photography</a>, <a
href="http://www.sxc.hu/">stock.xchage</a> and <a
href="http://www.flickr.com/search/advanced/?">Flickr Creative Comms</a> search are two of my favorites.</p><p>There are lots of great free vector resources but, instead of searching through these resources, I find a Google image search for &#8220;free vector&#8221; does the trick. Likewise, it&#8217;s not always necessary to get a free vector logo from <a
href="http://www.brandsoftheworld.com/">Brands of the World</a> but just Google the logo you want with &#8220;vector&#8221; in the search query.</p><h2>Fonts</h2><p>You can pick up free fonts at <a
href="http://www.dafont.com/">DaFont</a> and a host of other places. <a
href="http://new.myfonts.com/WhatTheFont/">WhatTheFont</a> can identify a font from an image.</p><p><a
href="http://www.google.com/webfonts">Google Fonts</a> now has a catalog of around 300 excellent fonts that will work across most browsers with just a line of code in the head and a CSS declaration.</p><p>Compare and contrast the fonts with <a
href="http://www.typetester.org/">TypeTester</a>.</p><h2>Grids</h2><p>If you like to use grids in your web design (or even if you don&#8217;t) then check out <a
href="http://960.gs/">960 Grid System</a> where you can download grid templates in HTML &amp; CSS, Photoshop, Illustrator, GIMP, etc. All these grids are for websites that are 960 pixels wide.</p><h2>Web developer tools</h2><p>These are a standard fare for most web designers with many of us using these tools many times a day:</p><ul><li><a
href="http://getfirebug.com/"><strong>Firebug</strong></a> – awesome Firefox add-on that will inspect and change HTML and CSS and help you de-bug JavaScript.</li><li><strong>Developer Tools for Chrome and Internet Explorer</strong> – these do about the same as Firebug and are bundled with their respective browsers. Handy for working out IE hacks.</li><li><strong>Web Developer add-on</strong> for Firefox and Chrome – ultra handy add-on that can disable styles, disable browser default styles (handy for cross-browser compatibility), show alt text for images, resize window, validate, etc. The list is endless.</li></ul><h2>Web design online &#8220;must-haves&#8221;</h2><p>The above mentioned <a
href="http://validator.w3.org/">HTML</a> and, to a lesser extent, <a
href="http://jigsaw.w3.org/css-validator/">CSS</a> Validators that can be reached with one click using the Web Developer add-on are services that most web designers will use all the time.</p><p>Other online services of huge importance to the web designer are <a
href="http://www.google.com/analytics/">Google Analytics</a>, <a
href="http://www.google.com/webmasters/tools/">Google Webmaster Tools</a> and <a
href="http://docs.google.com/">Google Docs</a>.</p><h2>Cross browser checks</h2><p>You can check websites across different browsers at <a
href="http://browsershots.org/">BrowserShots</a> and <a
href="http://browserlab.adobe.com/">Adobe BrowserLab</a>. <a
href="http://viewlike.us/">ViewLikeUs</a> allows you to check out how your website looks in the most popular resolution formats.</p><h2>Speed</h2><p>In order to analyse your page speed, use Google&#8217;s <a
href="http://code.google.com/speed/page-speed/">PageSpeed</a> (try to get your score up to 100) and Yahoo!&#8217;s <a
href="http://developer.yahoo.com/yslow/">Y!slow</a>.</p><h2>Downtime</h2><p>Use <a
href="http://www.pingdom.com/">Pingdom</a>&#8216;s free service to be instantly informed of any downtime on your site so you can contact your host and sort it out asap!</p><h2>Email marketing</h2><p>I&#8217;m not sure if this really comes under the heading of &#8220;web designing&#8221; but with 2,000 subscribers for free, <a
href="http://robcubbon.com/go/mailchimp">MailChimp</a> is an awesome free email sending service.</p><h2>Color</h2><p><a
href="http://colorschemedesigner.com/">Color Scheme Designer</a> can help you choose complimentary colors for your website designs.</p><h2>Billing</h2><p><a
href="http://robcubbon.com/go/freshbooks">Freshbooks</a> tracks your time and invoices your clients automatically, saving you time and getting you paid quicker. <a
href="http://Mint.com">Mint</a> tracks all your business finances and transactions and has a free mobile app. <a
href="https://squareup.com/">Square</a> will accept credit card payment off you mobile phone.</p><h2>CMSs</h2><p>The best things in life are free – but then again you tend to forget how amazing they are because you don&#8217;t have to pay for them! The best ones are, obviously, <a
href="http://wordpress.org">WordPress</a>, <a
href="http://drupal.org/">Drupal</a> and <a
href="http://www.joomla.org/">Joomla</a> but there are loads of incredible free Content Management Systems that power most of the web.</p><h2>Video</h2><p>Also going under the title of &#8220;Been around so long I almost forgot about them&#8221; are the free video storage services <a
href="http://YouTube.com">YouTube</a> and <a
href="http://Vimeo.com">Vimeo</a>, etc. If it wasn&#8217;t for these services we&#8217;d spend ages uploading our video to servers or paying services like <a
href="http://aws.amazon.com/s3/">Amazon S3</a> to host them for us.</p><h2>Give me your suggestions!</h2><p>Is there any free software you use that I have missed out? Please give me your suggestions in the comments section below. And, if you enjoyed this article, please vote for it by Tweeting, Facebook Liking or Google +1&#8242;ing it!</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/free-software-web-designers/feed/</wfw:commentRss> <slash:comments>17</slash:comments> </item> <item><title>Graphic Designers and Specialization</title><link>http://robcubbon.com/graphic-designers-specialization/</link> <comments>http://robcubbon.com/graphic-designers-specialization/#comments</comments> <pubDate>Mon, 31 Oct 2011 12:54:50 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[design business]]></category> <category><![CDATA[specialization]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=5274</guid> <description><![CDATA[<p>How much should graphic designers or design companies specialize? Should they hone their skills and expertise to a particular niche? Or should they provide a range of services for their clients? Starting out When a graphic designer first starts out as a freelancer or when a new graphic design company has just set up, the [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
style="border: 1px solid #dadada;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/ipad-pantone-specializing-graphic-designer1.jpg" alt="ipad-pantone-specializing-graphic-designer" title="" width="600" height="345" class="alignnone size-full wp-image-5299" /></p><p>How much should graphic designers or design companies specialize? Should they hone their skills and expertise to a particular niche? Or should they provide a range of services for their clients?</p><h2>Starting out</h2><p>When a graphic designer first starts out as a freelancer or when a new graphic design company has just set up, the temptation is to take <em>any</em> work that is offered. This is only natural, especially in a flat economy.</p><p>However, a lot of the designers I have spoken to about this say that pretty soon afterwards they were drawn to an area of design that they enjoyed the most.</p><p><img
style="border: 1px solid #dadada; margin-top:3px;"  src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/david-airey1.jpg" alt="david airey" title="" width="75" height="94" class="alignleft size-full wp-image-5281" />If I asked you to think of a designer that does logos and brand identity you may well think of <a
href="http://www.davidairey.com/" title="logo and brand identity designer">David Airey</a>. David urges caution at first, &#8220;I think when you&#8217;re learning, it&#8217;s important not to limit yourself to a niche. The more you know about design in general, the better equipped you are when it comes to specialising.&#8221;</p><p>Knowing more about design and the experience of designing helps you to choose your speciality but, as <a
title="freelance designer" href="http://karenmcdade.com/">Karen McDade</a> points out, experience teaches you to choose your clients carefully as well:</p><p><img
style="border: 1px solid #dadada; margin-top:3px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/karen-mcdade.jpg" alt="karen-mcdade" title="" width="75" height="94" class="alignleft size-full wp-image-5284" />&#8220;When I started freelancing a few years ago I took any work that came my way in an effort to build my business. After a while I had a lot of clients but, because I wasn&#8217;t selective, some of them were less than desirable. I ended up working long hours for all these clients who wouldn&#8217;t pay me on time (or at all). I was quite naïve and trusted in their word that they would eventually pay up. It came to ahead one night when, at about 3am, I realised I was working way too hard for the level of income I was actually bringing in.&#8221;</p><p>Having streamlined her clients, Karen now provides a better service to them and her portfolio has improved as a result. I can certainly attest to the importance of keeping good clients and letting the low quality, late paying clients go.</p><h2>How do I specialize?</h2><p>How do you choose the area of design to specialize in? Most designers say that this happens naturally as you are drawn to a particular area as it is particularly interesting or enjoyable for you.</p><p><img
style="border: 1px solid #dadada; margin-top:3px;"  src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/chris-spooner.jpg" alt="chris spooner" title="" width="75" height="94" class="alignleft size-full wp-image-5290" /><a
title="Graphic designer portfolio" href="http://www.spoongraphics.co.uk/">Chris Spooner</a> says, &#8220;I think it&#8217;s important to find a specialism, but it&#8217;s up to the designer to figure out how wide or narrow their specialism will be. For instance some designers might only offer design services in a very specific niche, which can establish them as the go-to expert in that field, whereas other designers might offer a wider range of services under the umbrella of a particular aspect of design, which obviously increases their potential client base. It all boils down to the designer&#8217;s interests and what kind of work they enjoy creating.&#8221;</p><p>I think Chris is absolutely right here. Seek out what you enjoy doing.</p><h2>What do I specialize in?</h2><p>An example of a particular niche would be WordPress websites and themes.</p><p><img
style="border: 1px solid #dadada; margin-top:3px;"  src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/mike-smith.jpg" alt="mike-smith" title="" width="75" height="94" class="alignleft size-full wp-image-5291" /><a
title="WordPress design and development" href="http://www.madebyguerrilla.com/">Mike Smith</a> explains this: &#8220;I was someone who did a bit of everything when starting out. Ad Banners, CD covers, Flyers, Website headers (yes, just he headers lol), etc. I stumbled on WordPress and started building sites for myself and just learned the ins and outs of it so much that it only seemed right to offer WordPress themes as a service. Once that took off and started doing well, I started doing less and less of the other stuff. Nowadays I spend 90% of my days working with WordPress: Designing themes, coding my own themes, PSD to WP for other people, etc. I like specializing because it gives me the ability to focus on one thing and do it really well &#8211; people like that <img
src='http://cdn.robcubbon.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8221;</p><p>Your speciality can be any aspect of design: logos, brand identity, WordPress themes, WordPress and SEO, print collateral, anything!</p><p>However, designers tend to specialize in one aspect of design. Not in any particular industry. None of the designers who I spoke to specialized in a specific niche industry like education, retail or pharmaceuticals, for example. This may have happened with larger design companies in the recent past but not, it seems, with smaller design companies and independent designers now.</p><h2>Taking it to the next level</h2><p>So, you&#8217;ve specialized in your favorite aspect of design, what next? This isn&#8217;t the end of the story.</p><p>For instance, Adii Rockstar (I&#8217;m not sure if that&#8217;s his real name), specialized in creating WordPress themes and then hooked up with a couple of other guys and created <a
href="http://robcubbon.com/go/woothemes">WooThemes</a> – a hugely successful theme company that have sold over 80,000 themes. Both Chris Pearson, the creator of the <a
href="http://robcubbon.com/go/thesis">Thesis Theme</a> and Brian Gardner, the creator of the <a
href="http://robcubbon.com/go/genesis">Genesis Theme</a>, have taken design to the next level by creating scalable businesses.</p><p><img
style="border: 1px solid #dadada; margin-top:3px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/douglas-bonneville.jpg" alt="douglas-bonneville" title="" width="75" height="94" class="alignleft size-full wp-image-5306" />Here, <a
title="graphic design and typography" href="http://bonfx.com/">Douglas Bonneville</a> describes how he was able to turn his &#8220;active&#8221; design skills into &#8220;passive income&#8221;: &#8220;I really started to think about a product, and how I could step back from the crowd and say, &#8216;how can I help graphic designers and not so much clients anymore?&#8217; I focused on treating myself as a client, producing <a
href="http://bonfx.com/the-big-book-of-font-combinations?x=3">my eBook</a> and <a
href="http://bonfx.com/font-combinations-app/">a few apps</a> focused on typography. Things have gone extremely well since then, and I&#8217;d never go back!&#8221;</p><p>So, it is also possible to find a speciality that is beyond the client work and focusses on selling products.</p><h2>And finally&#8230;</h2><p>I hope this has given you a few ideas about how you can develop, specialize and grow your business – whether it&#8217;s to do with design or not. Are you specializing in anything at the moment? Can you think of an area you particular enjoy that you would like to move into? What can you do to make sure you can get more work and specialize in that area?</p><p>As always, I would love to hear your opinions in the comments below. And, I would appreciate a tweet or a vote.</p><p>Thank you to all the designers who participated in this that weren&#8217;t mentioned above, for example Derek Kirk from <a
href="http://www.webdesignerslondon.co/">Web Designers London</a>, Randa Clay from <a
href="http://randaclay.com">Randa Clay WordPress Design</a>, Lynne Venart from <a
href="http://www.theartmonkey.com">The Art Monkey</a>, <a
href="http://www.enrichdesign.us/">Kyle Richardson</a> and <a
href="http://craigalanwilson.com">Craig Wilson</a>.</p><p>Read more about <a
href="http://robcubbon.com/running-a-web-design-business/">running your own design business from home in my e-book &#8220;Running a Web Design Business</a>.</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/graphic-designers-specialization/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>4 Rules of Readability and Accessibility in Web Design</title><link>http://robcubbon.com/readability-accessibility-web-design/</link> <comments>http://robcubbon.com/readability-accessibility-web-design/#comments</comments> <pubDate>Mon, 24 Oct 2011 12:53:58 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[accessibility]]></category> <category><![CDATA[contrast]]></category> <category><![CDATA[Font size]]></category> <category><![CDATA[line height]]></category> <category><![CDATA[making text scannable]]></category> <category><![CDATA[readability]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=5226</guid> <description><![CDATA[<p>This article is more of a &#8220;plea&#8221; to web designers. Don&#8217;t look at a web page as a work of art. Look on it as something that does a job and, for God&#8217;s sake, make it legible! Too many times we see readability sacrificed at the alter of web design. But first, some statistics for [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
style="border: 1px solid #dadada;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/eye-typography-usability.jpg" alt="eye-typography Accessibility" title="" width="600" height="365" class="alignnone size-full wp-image-5231" /></p><p>This article is more of a &#8220;plea&#8221; to web designers. Don&#8217;t look at a web page as a work of art. Look on it as something that does a job and, for God&#8217;s sake, make it legible! Too many times we see readability sacrificed at the alter of web design.</p><p>But first, some statistics for you to think about:</p><ul><li>Nearly 26.6 million Americans (nearly 9%) are visually impaired, meaning their vision cannot be completely corrected with lenses.</li><li>1 in 12 people in the world (over 8%) suffer some sort of color blindness</li></ul><p>Here are 4 rules about readability and accessibility on websites.</p><p><img
style="margin: 35px 0 25px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/16-pixels-text.jpg" alt="16-pixels-text" title="" width="248" height="80" class="alignleft size-full wp-image-5255" /></p><h2>1. Font size</h2><p>I recently read an article arguing that <a
href="http://www.smashingmagazine.com/2011/10/07/16-pixels-body-copy-anything-less-costly-mistake/">body text should be at least 16 pixels in size</a>. I was really pleased to see Smashing Magazine publish this article – although it was rather ironic that they had to create a special design with a large body text size for the article as it would have been hypocritically smaller in their normal template.</p><p>What does 16 pixels actually mean? It&#8217;s a fixed size measurement. If you&#8217;re familiar with the point measurement (1/72 of an inch), then it&#8217;s 12 points. If you&#8217;re reading this text on my website then it is set at 15 pixels in size if the browser isn&#8217;t zoomed in or out.</p><p>Another method of setting font size in CSS is with ems. Ems are usually used in combination with percentages. If the body font size is set to 100% then 1 em equals 16 pixels. This used to be considered the most accessible way to set text as it would adapt to the device. However, now that most modern browsers and devices can scale the whole page, I now prefer to use pixels.</p><p>OK, we know you can zoom in and zoom out when viewing web pages. But users shouldn&#8217;t have to do this!</p><p>Either way, <strong>body text should never be much smaller than 16 pixels, 12 points, 100% or 1 em</strong>.</p><p><img
style="margin: 50px 0 25px;"  src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/good-bad-contrast-for-text.jpg" alt="good-bad-contrast-for-text" title="" width="600" height="80" class="alignleft size-full wp-image-5237" /></p><h2>2. Color and contrast</h2><p>You should <strong>always think about the visually impaired and color blind when choosing the text color and background color</strong>. If the two colors are too similar some people will have difficulty reading.</p><p>Be especially careful if you are putting text on a background with a pattern or on an image as this can be very difficult for some people to make out. The are tools online such as the <a
href="http://snook.ca/technical/colour_contrast/colour.html">color contrast check</a> which can help you.</p><p>The next two rules will help the SEO as well as the accessibility of your web pages.</p><h2>3. Make your text scannable</h2><p><strong>Don&#8217;t have long paragraphs of tight text.</strong> The line height, the spacing of the line of text or leading, should be at least 25% more than the font size. So, a font size of 16 pixels should have a line height of at least 20 pixels which will make body text readable.</p><p>Furthermore, you should seek to break up your text as much as possible with headings, bullet points, bolds, italics, blockquotes. People don&#8217;t tend to read web pages from top to bottom. (Sadly you probably won&#8217;t read every word of this article! <img
src='http://cdn.robcubbon.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> )</p><p>These extra elements will make your text more readable – and the increased use of subheads will help with SEO.</p><p><img
style="margin: 50px 0 25px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/images.jpg" alt="images" title="" width="600" height="80" class="alignleft size-full wp-image-5249" /></p><h2>4. Use of images</h2><p>Lastly, it&#8217;s important to <strong>always include an alt text for images</strong> you use in a web page. Alt text is a tag in the HTML which describes images to</p><p><code>&lt;img src="http://yoursite.com/images/green-flower.jpg" alt="a bunch of green flowers in a vase on a table" /&gt;</code></p><p>A visually impaired reader of your web page that is using a screen reader will hear the alt text in place of the image. The alt text will also show on screen when the image can not be rendered.</p><p>Again, this is also a good practice for SEO.</p><h2>Conclusion</h2><p>Have a look at the websites you are responsible for. Is the body text size readable to those with slight visual impairment? Is the size smaller than 15 pixels? Are there any quick changes you can make to improve it&#8217;s readability and accessibility?</p><p>Can you add to these rules? Do you disagree with any of them? Let us know in the comments.</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/readability-accessibility-web-design/feed/</wfw:commentRss> <slash:comments>22</slash:comments> </item> <item><title>How to design and code a beautiful web button</title><link>http://robcubbon.com/how-to-design-and-code-a-beautiful-web-button/</link> <comments>http://robcubbon.com/how-to-design-and-code-a-beautiful-web-button/#comments</comments> <pubDate>Mon, 03 Oct 2011 12:24:59 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[Photoshop]]></category> <category><![CDATA[button]]></category> <category><![CDATA[css]]></category> <category><![CDATA[layer styles]]></category> <category><![CDATA[usability]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=5099</guid> <description><![CDATA[<p>The internet is daunting, disorganized and idiosyncratic. Web designers should try to make the user&#8217;s journey as simple and as pleasant as they can. What&#8217;s more, there are certain actions that webmasters would like visitors to perform – to go to a page, to submit some information, for example. For these reasons, knowing how to [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/map-of-the-internet.jpg" alt="map-of-the-internet" title="" width="600" height="450" class="alignnone size-full wp-image-5131" /></p><p>The internet is daunting, disorganized and idiosyncratic. Web designers should try to make the user&#8217;s journey as simple and as pleasant as they can. What&#8217;s more, there are certain actions that webmasters would like visitors to perform – to go to a page, to submit some information, for example. For these reasons, knowing how to design and code a beautiful web button is an essential skill for web designers to have.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/web-buttons.jpg" alt="2 web buttons examples" title="" width="640" height="129" class="alignnone size-full wp-image-5100" /></p><p>Sometimes we&#8217;ll <a
href="http://robcubbon.com/designing-web-page-photoshop/">mock-up a web page design in Photoshop</a> first before creating it with code and mark-up. The two operations are quite different but have the same effect. Firstly, I&#8217;m going to show you one way I&#8217;ll make a web button in Photoshop. And then I will explain how to reproduce the exact same visual effect using HTML and CSS.</p><h2>How to make a button in Photoshop</h2><p>First of all create a new document in Photoshop, making sure the color mode is RGB and it&#8217;s 72 ppi.</p><p>Then in the Tool bar (on the left-hand side, usually) select the Rounded Rectangle Tool.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/rounded-rectangle-tool.jpg" alt="rounded-rectangle-tool" title="" width="267" height="167" class="alignnone size-full wp-image-5103" /></p><p>And then in the Options bar (at the top, usually) set the Radius to 5 pixels. The larger the radius the more curved the corners. You will specify this value later in the CSS.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/options-bar-photoshop.jpg" alt="options-bar-photoshop" title="" width="545" height="61" class="aligncenter size-full wp-image-5104" /></p><p>Now you can draw your button by clicking and dragging (with the Rounded Rectangle Tool selected). Don&#8217;t worry about what color it is as we will set this using Layer Styles effects in the Layer Palette.</p><p>So, once you&#8217;re happy with the shape, with the rounded-corner rectangle layer selected, click on the effects icon at the bottom of the Layers palette which is a lower case bold italic <em><strong>fx</strong></em>. Choose any of the options in the resulting drop-down menu and this will open the Layer Style dialog box which hosts a bucket-load of Photoshop goodness!</p><p>It doesn&#8217;t matter which style you work on first but let&#8217;s start with the gradient. Click on <strong>Gradient Overlay</strong> on the left-hand side of the dialog box.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/gradient-layer-style.jpg" alt="gradient-layer-style" title="" width="640" height="423" class="alignnone size-full wp-image-5107" /></p><p>Set your gradient by clicking on the, er, gradient and then choosing two colors in the <strong>Gradient Editor</strong>.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/gradient-editor.jpg" alt="gradient-editor" title="" width="532" height="416" class="alignnone size-full wp-image-5108" /></p><p>By clicking on the &#8220;color stops&#8221; at the beginning and end of the gradient, and then clicking Color underneath, you can eventually choose colors from the Color Picker. (Maybe one too many clicks here, Adobe!) The important thing here is to click to shades of the same color that are quite similar, so that the gradient isn&#8217;t too steep.</p><p>Next, let&#8217;s do the <strong>Stroke</strong> or border. After OKing everything, click on Stroke on the left-hand side of the Layer Style dialog box and, annoyingly you&#8217;ll get a default red border of 3 pixel. (How about making this default to 1 pixel, Adobe!?)</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/stroke.jpg" alt="stroke layer style" title="" width="640" height="414" class="alignnone size-full wp-image-5109" /></p><p>So, change the width to 1 pixel and pick the color of the stroke or border. It&#8217;s sometimes nice to make it the same color as either the beginning or end of the gradient. In this case the darker of the two colors.</p><p>Finally, we want to give the button a subtle one-pixel highlight on the top, under the border. This can be done by making a one-pixel high selection on a different layer but you can do it within the Layer Style dialog box as well. Click on <strong>Inner Shadow</strong> on the left-hand side.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/inner-shadow-style.jpg" alt="inner-shadow-style" title="" width="640" height="400" class="alignnone size-full wp-image-5111" /></p><p>Now, usually shadow styles are dark but they can provide glows or highlights. Click on the black rectangle after the Blend Mode drop-down and change the color from black to white. Choose Normal for the Blend Mode (you won&#8217;t see white in Multiply). Make sure the Angle is straight up 90º and that the Distance and Size are 1 pixel.</p><p>This is really subtle and you can barely see it on this lighter example (the left-hand one of the buttons at the top of this article. But on the darker one it is more noticeable. Either way, this one-pixel highlight at the top of a button gives it a slight 3D effect that will make the visitors love to click on it and your client happy to hire you again!</p><p>That concludes the styling for the button, now for the text.</p><p>Get the Type Tool (T) from the Tool bar and click on the Photoshop document where you want the text to go. Type your text: &#8220;Click me&#8221;, in this example.</p><p>Use the Options bar to select the font, color and size of the text.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/type-options-photoshop.jpg" alt="type-options-photoshop" title="" width="619" height="75" class="alignnone size-full wp-image-5113" /></p><p>To give the dark text a glow under it and the light text a shadow under it we can choose Drop Shadow from the Layer Styles dialog box.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/drop-shadow-glow.jpg" alt="drop-shadow-glow" title="" width="640" height="290" class="alignnone size-full wp-image-5114" /></p><p>Again on the left-hand example on the top, we want to give the text a subtle highlight underneath it so it looks like the text is slightly indented into the button. To do this we, change the Blend Mode to Normal and change the color from black to white. Make sure the Angle is straight up 90º and that the Distance and Size are 1 pixel. (For the example on the right, the Blend Mode will be Multiply and the color a very dark blue.)</p><p>And that&#8217;s how you do it in Photoshop. After your client has approved the design of the buttons you shouldn&#8217;t just save the image out as a JPG and source it in the HTML. You should use CSS to style up the element (which may be <code>input</code> or a <code>p class</code> or an <code>a class</code>).</p><h2>How to style a button in with CSS</h2><p>Here I will give you the styles, for the button below which is similar to the one up top but with slight smaller text. (If you&#8217;re reading this on an RSS feeder, by email or on a scraper site, you won&#8217;t see the following button so you best check it out on the website).</p><p
class="button"><a
href="">Here is the button styled in CSS</a></p><p>Here is the HTML for the text example immediately above. However, most of the time, buttons are marked up with the <code>input</code> tag.</p><blockquote><p><code>&lt;p class="button"&gt;&lt;a href=""&gt;Here is the button styled in CSS&lt;/a&gt;&lt;/p&gt;<br
/> </code></p></blockquote><p>Before you can start on the CSS you need to go back to the Photoshop document. Zoom in to your button and select with the Rectangular Marquee tool (M) a one-pixel wide selection. The height will be the eventual height of the button. You may like to take the Stroke off for this as it may complicate matters and you will be setting this in the CSS.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/copying-a-sprite.jpg" alt="copying-a-sprite" title="" width="515" height="207" class="alignnone size-full wp-image-5124" /></p><p>Cmd/Ctrl-Shift-C to Copy Merged the sprite and then make a New Document in Photoshop (Cmd/Ctrl-N).</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/10/new-photoshop-document.jpg" alt="new-photoshop-document" title="" width="640" height="406" class="alignnone size-full wp-image-5125" /></p><p>The size of the new document will be the size of the sprite you just copied if you have Preset set to Clipboard.</p><p>Paste the 1-pixel wide background gradient into the new document and Save for Web &#038; Devices (Cmd/Ctrl-Opt/Alt-Shift-S) as a fairly good quality JPG to avoid banding.</p><p>The other information you want from the Photoshop document of your button visual is the HEX value of the button&#8217;s Stroke or border and the HEX value of the text color.</p><p>And here&#8217;s the CSS.</p><blockquote><p><code>p.button {<br
/> background: url("path/to/1px-wide-background.jpg") repeat-x #C2CBF4;<br
/> border: 1px solid #C2CBF4;<br
/> border-radius: 5px;<br
/> moz-border-radius: 5px;<br
/> -webkit-border-radius: 5px;<br
/> -khtml-border-radius: 5px;<br
/> font-weight: bold;<br
/> padding: 5px ;<br
/> text-align: center;<br
/> font-family: Helvetica, Arial, Tahoma, sans-serif;<br
/> font-size: 15px;<br
/> font-weight: bold;<br
/> line-height: 24px;<br
/> width: 350px;<br
/> }</p><p>p.button a {<br
/> text-shadow: 0px 1px 1px white;<br
/> color: #4E5FAB;<br
/> text-decoration: none;<br
/> }<br
/> </code></p></blockquote><p>Notice the background has a color as well as a background image (gradient) this is for people who browse without images.</p><h2>Every button should have a hover state</h2><p>Every link or button on a web site should change itself visually when the user&#8217;s mouse is over it. This gives the user the impression that it is a &#8220;live&#8221; or &#8220;active&#8221; area of the screen and therefore will do something if clicked, otherwise it&#8217;s just inactive text or imagery.</p><p>So make sure you set styles for the hover state.</p><blockquote><p><code>p.button a:hover {<br
/> text-decoration: none;<br
/> color: #6E80D0;<br
/> text-shadow: 1px 1px 1px #fff;<br
/> }</p><p>p.button:hover {<br
/> border: 1px solid #8b9be4;<br
/> }</code></p></blockquote><p>In this particular example the background gradient of the button doesn&#8217;t change on the hover but it should do. You can do this by doubling the height of the background sprite by creating a lighter or darker strip of pixels underneath and changing the background image&#8217;s y co-ordinate to show the different pixels.</p><blockquote><p><code>p.button:hover { background-position: 0 40px; }</code></p></blockquote><p>Here the background image will be moved up by 40 pixels when hovered over, showing the lighter or darker pixels. 36 pixels being the height of the button.</p><p>But I&#8217;ll do a proper sprite tutorial on another day!</p><h2>Other tutorials</h2><p>I have another tutorial about more bulging, shiny, jelly buttons. Here is one for <a
href="http://robcubbon.com/how-to-design-a-cool-web-20-button-in-illustrator-and-photoshop">a cool, shiny, web 2.0 button</a>.</p><p
style="text-align: center;"><a
href="http://robcubbon.com/how-to-design-a-cool-web-20-button-in-illustrator-and-photoshop"><img
class="aligncenter" src="http://robcubbon.com/images/a-cool-web-2-shiny-button-home.jpg" alt="cool web2.0 shiny button home"  style="border:none;" /></a></p><p>And, here&#8217;s another tutorial about <a
href="http://robcubbon.com/how-to-design-shiny-web-20-buttons-in-illustrator">how to create cool shiny buttons in Illustrator alone</a>.</p><p
style="text-align: center;"><a
href="http://robcubbon.com/how-to-design-shiny-web-20-buttons-in-illustrator"><img
class="aligncenter" style="border:none;" src="http://robcubbon.com/images/shiny-cool-green-button.jpg" alt="cool web2.0 shiny green button" /></a></p><h2>Let me know what you think</h2><p>Any other top tips for web buttons? I would love to hear what you think in the comments down below. Plus, please feel free to vote for this article with a Tweet, a Like or a Plus One!</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/how-to-design-and-code-a-beautiful-web-button/feed/</wfw:commentRss> <slash:comments>21</slash:comments> </item> <item><title>How to Start a Web Design Business From Home</title><link>http://robcubbon.com/how-to-start-a-web-design-business-from-home/</link> <comments>http://robcubbon.com/how-to-start-a-web-design-business-from-home/#comments</comments> <pubDate>Mon, 22 Aug 2011 12:52:16 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[design business]]></category> <category><![CDATA[starting a business]]></category> <category><![CDATA[web design]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=4861</guid> <description><![CDATA[<p>There has never been a better time to start a web design business. Although the western world&#8217;s economy is stagnant and demand flat the opportunities for entrepreneurs are enormous. If you have a passion and love for the internet, you can do it. You don&#8217;t need a lot (in fact you just need a laptop, [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-4866" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/08/start-a-business-with-a-laptop.jpg" alt="start-a-business-with-a-laptop" width="600" height="365" /></p><p>There has never been a better time to <strong>start a web design business</strong>. Although the western world&#8217;s economy is stagnant and demand flat the opportunities for entrepreneurs are enormous. If you have a passion and love for the internet, you can do it.</p><p>You don&#8217;t need a lot (in fact you just need a laptop, phone, electrical supply and decent internet connection) but here&#8217;s what I&#8217;ve learned in the last few years.</p><h2>Business</h2><p
style ="text-align: right;" ><img
class="wp-image-4883" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/08/business.jpg" alt="business" width="600" height="90" /></p><p>In order to have a successful web design business you need to attract good clients. Trust me, the attitude of &#8220;any client is a good client&#8221; will not get you very far. By all means, give the same great service to all clients both big and small, but you will need regular and quality work and you are more likely to get this from quality clients. And &#8220;quality clients&#8221; are usually – but not always – from quality companies.</p><p>Either way, you need to look, talk and act professionally at all times. You will never get anywhere by being &#8220;cheap and cheerful&#8221;.</p><ul><li><strong>Open your own business bank account</strong> with your business&#8217;s name. If you set yourself up as a freelance, you&#8217;ll earn a freelance wage. The bigger and more professional your company looks, the better it will be for you.</li><li><strong>Design your own logo</strong>. I&#8217;ve found designing my own logo to be one of the hardest jobs ever but it has to be done. Put this logo everywhere: on your invoices; your contracts; in your email signature.</li><li><strong>Purchase a domain and use it for your website and email address</strong>. If you want to be taken seriously you must purchase you own domain (from <a
href="http://robcubbon.com/go/daddy">GoDaddy</a> or <a
href="http://robcubbon.com/go/namecheap">NameCheap</a>, for example) and then have an email address which is you@yourdomain.com.</li><li><strong>Build your own website</strong> advertising your services. You will need to spend a lot of time on this. I would advocate using <a
href="http://robcubbon.com/creating-wordpress-business-websites/">WordPress for your business website</a> and use a <a
href="http://robcubbon.com/how-to-blog-for-business">blog to attract business</a>.</li></ul><p>The paint is never dry on a designer&#8217;s logo or website. You should be continually looking for ways to improve your website as it is the hub of your brand. If you haven&#8217;t started blogging then start now. Write about what you do – it&#8217;s a fantastic way to get clients from long tail keyword searches.</p><h2><a
href="http://robcubbon.com/how-to-get-clients/">How to get clients</a></h2><p
style ="text-align: right;" ><img
class="wp-image-4884" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/08/clients.jpg" alt="clients" width="600" height="90" /></p><p>Getting clients and establishing a steady work flow is the hardest and most important challenge your web design business will face. Your best clients are your current clients as you will find people will come back to you after you&#8217;ve done a good job for them. But, how do you start the ball rolling?</p><ul><li><strong>Attract clients through your website</strong>. This is the best way to do it. Work hard on <a
href="http://robcubbon.com/how-to-market-yourself-5-how-to-optimize-your-wordpress-site-for-search-engines/">SEO</a> and <a
href="http://robcubbon.com/how-to-market-yourself-6-how-to-get-links-to-your-website/">building links</a> to your website with &#8220;web designer&#8221; in the anchor text. Make sure all your online activity points back to your website. Nurture your relationships with other designers as well as with potential clients online.</li><li><strong>Get work through social media</strong>. To be honest, I have never got much work from <a
href="http://twitter.com/#!/RobCubbon">Twitter</a> or <a
href="http://uk.linkedin.com/pub/robert-cubbon/4/197/492">LinkedIn</a>, however I have found developing relationships on social media with designers and other professionals indispensable in terms of what it&#8217;s taught me.</li><li><strong>Meet potential clients offline by joining professional groups</strong>. As much as I&#8217;ve had great success <a
href="http://robcubbon.com/how-to-get-clients/">getting clients online</a>, you can never beat face-to-face interaction. It may take you a while to find out which where your potential clients will be hanging out but the <a
href="http://www.meetup.com/">Meetup</a> website can help.</li><li><strong>3rd party sites</strong>. I&#8217;ve never been a big fan of these sites and I certainly don&#8217;t use them myself but other people do so I will mention a few here. Try <a
href="http://www.peopleperhour.com/">PeoplePerHour</a>, <a
href="http://robcubbon.com/go/odesk">oDesk</a> and <a
href="http://robcubbon.com/go/elance">Elance</a>.</li></ul><p>The best network is your network. Most business comes from contacts you already have. But constantly strive to attract potential clients by performing well in the search engines for certain keywords.</p><p>You may like to read my survey on <a
href="http://robcubbon.com/what-designers-do-make-money-find-clients/">how designers work, how they find clients and how they get paid</a>.</p><h2>Skills</h2><p
style ="text-align: right;" ><img
class="wp-image-4885" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/08/code.jpg" alt="code" width="600" height="90" /></p><p>I can&#8217;t tell you here how to design a website. You do need technical and creative skills. But, surprisingly, these are NOT the most important skills you need.</p><ul><li><strong>Listening to and understanding clients</strong>. The most important skill is your ability to master <a
href="http://robcubbon.com/build-better-client-relationships/">client relationships</a>. You need to put yourself in the client&#8217;s shoes and deliver exactly want the client wants and no more and no less. Lots of designers suffer as they think they know what&#8217;s best for the client. The first rule of graphic design is to listen. Don&#8217;t ever get carried away with your talent and think that you know everything.</li><li><strong>Understanding the web and UI</strong>. The reason you are doing this job is because you have a love of the internet. Make sure you harness that love correctly. Always think of the users as well as the client when you are designing.</li><li><strong>Creativity</strong>. You shouldn&#8217;t only be creative in your designs to develop your style. You should be creative in your relationships, your marketing and every possible area of your business life. Don&#8217;t get stale and always look for fresh challenges.</li><li><strong>Ability to write well for the web</strong>. Another skill that is not often mentioned is the ability to touch type and <a
href="http://robcubbon.com/how-to-write-for-the-web/">write well for the web</a>. Your clients will thank you if you re-write areas of their website so that they work better and you need to always write good English with correct spelling and grammar in your emails.</li><li><strong>Technical skills</strong>. At the very least you will need to master HTML and CSS as well as a graphics program such as Photoshop or Fireworks. HTML shouldn&#8217;t take you long to master. CSS will take a little longer. Use <a
href="http://getfirebug.com/">Firebug</a> in Firefox and Developer Tools in Chrome and Internet Explorer to give you a start. You may like to progress onto JavaScript, PHP, or whatever you are interested in. Try <a
href="http://www.w3schools.com/">W3Schools</a> for tutorials. The trick is to keep learning. And not just about website design – it&#8217;s about designing email, mobile sites and apps for iPhone, Android and iPad.</li></ul><h2>Tools</h2><p
style ="text-align: right;" ><img
class="wp-image-4886" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/08/tools.jpg" alt="tools" width="600" height="90" /></p><p>I did a survey recently and discovered some interesting facts about the <a
href="http://robcubbon.com/graphic-designers-hardware-software-back-up/">hardware, software and backup graphic designers use</a>. Certainly everyone&#8217;s different. Don&#8217;t worry, you don&#8217;t have to use Macs but unfortunately most of them use Creative Suite.</p><ul><li><strong>Hardware</strong> – The type of computer you get is largely up to you. I&#8217;ve been very happy using iMacs for the last few years. I also need a PC for testing. I would urge you to max out your RAM, disc space and broadband connection, but &#8230; we all have our budgets!</li><li><strong>Software</strong> – Although it is perfectly possible to run a design business with no software at all I wouldn&#8217;t recommend it. Most of us use some sort of text editor (Dreamweaver, TextMate), some sort of graphics program (Photoshop) and some sort of FTP client (Filezilla).</li><li><strong>Backup</strong> – Not strictly necessary, but incredibly handy. I would advise backing up onsite with an external drive and offsite with something like <a
href="http://robcubbon.com/go/dropbox">Dropbox</a>.</li></ul><h2>Self motivation</h2><p
style ="text-align: right;" ><img
class="wp-image-4889" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/08/running.jpg" alt="running" width="600" height="90" /></p><p>Personally, I couldn&#8217;t think of anything better than working for yourself at home so I&#8217;ve never found motivation a problem.</p><p>However, for some people it is and you can learn <a
href="http://robcubbon.com/how-to-work-from-home/">how to work from home</a> successfully by exercising and organising your time properly.</p><h2>Collaboration</h2><p
style ="text-align: right;" ><img
class="wp-image-4890" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/08/collaborate.jpg" alt="collaborate" width="600" height="90" /></p><p>Since you are working in splendid isolation it&#8217;s always great to meet up with other web designers. You can moan about Microsoft together (very therapeutic), exchange jobs and help each other out with bugs and other problems. I have this relationship with Derek Kirk who lives near me in north London. Derek runs a couple of great sites called <a
href="http://www.creativeweb-design.com/">creative web design</a> and <a
href="http://www.webdesignerslondon.co/">web designers London</a>.</p><p>It&#8217;s also good to form partnerships with all sorts of professionals and experts. These are great as a sounding board for ideas and to exchange advice and work. Try to network on behalf of your clients as well as on behalf of your other contacts.</p><h2>Payment</h2><p
style ="text-align: right;" ><img
class="wp-image-4891" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/08/money.jpg" alt="money" width="600" height="90" /></p><p>Don&#8217;t forget at the end of the day you are running a <a
href="http://robcubbon.com/graphic-designers-get-paid/">web design business to get money</a>. Whether you are charging fixed-rate fees or hourly/daily/weekly rates you should be charging at least twice as much as you would earn in a normal job to complete the same task. You will never be able to do web design for 8 hours a day so the charging structure should reflect this.</p><p>Make sure the price as well as the nature and extent of a web design job is properly recorded in emails or in a contract. You may like to insist on half the fee upfront with new clients.</p><h2>Finding and developing your niche</h2><p
style ="text-align: right;" ><img
class="wp-image-4892" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/08/specialising.jpg" alt="specialising" width="600" height="90" /></p><p>As with most design work you may want to specialise into a certain type of client or a certain type of web work. This may come as a result of your passions or you may be moved in a certain direction by the tide of work that comes your way. Whilst it&#8217;s good to specialise you should always be alert to the new developments and opportunities within the industry.</p><h2>Diversify and outsource</h2><p
style ="text-align: right;" ><img
class="wp-image-4893" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/08/grow1.jpg" alt="grow" width="600" height="90" /></p><p>There are many ways to <a
href="http://robcubbon.com/how-to-diversify-grow-design-business/">diversify your design business</a>. You can offer your clients hosting, social media packages, email marketing, website maintenance, SEO services, copy writing, etc. you can branch out into a host of different directions. If you are asked to do something by a client it is usually a good idea to say &#8220;yes&#8221;. This way you can get paid to learn a new skill. Sometimes it may be possible to outsource new services.</p><h3>You can do it!</h3><p>I&#8217;ve wanted to write this article for ages and I&#8217;m very glad I&#8217;ve written it. I would really love to see you, the person who is reading this, try to earn money this way because it certainly beats working for somebody else.</p><p>You can start anywhere, anytime, anyhow. You just need a website. Even if you have a fulltime job at the moment or if not, you can start this work in your spare time (as I did) and take it from there.</p><p>I don&#8217;t want to make out that it&#8217;s easy. Of course, you have to work hard. But I have been getting paid to do something I really love so it would be great to see other people benefitting from this unique opportunity of our times.</p><p>If you have any experiences or you would like some help in this area, please leave a comment down below.</p><p>And don&#8217;t forget to click one of those nice sharing buttons too!</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/how-to-start-a-web-design-business-from-home/feed/</wfw:commentRss> <slash:comments>72</slash:comments> </item> <item><title>Designing a Web Page with Photoshop</title><link>http://robcubbon.com/designing-web-page-photoshop/</link> <comments>http://robcubbon.com/designing-web-page-photoshop/#comments</comments> <pubDate>Mon, 18 Jul 2011 12:22:55 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Photoshop]]></category> <category><![CDATA[mock up]]></category> <category><![CDATA[visual]]></category> <category><![CDATA[web page]]></category> <category><![CDATA[website design]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=4510</guid> <description><![CDATA[<p>It is usually better to show a client what a website will look like before the development stage starts. Here are a few tricks for creating website visuals in Photoshop. Getting started Create a large Photoshop document, at least 1200 pixels wide by 900 pixels deep (this can be increased later with Canvas Size), RGB [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/07/web-design-photoshop-opp.jpg" alt="web design photoshop" title="" width="600" height="505" class="alignnone size-full wp-image-4525" /></p><p>It is usually better to show a client what a website will look like before the development stage starts. Here are a few tricks for creating website visuals in Photoshop.</p><h2>Getting started</h2><p>Create a large Photoshop document, at least 1200 pixels wide by 900 pixels deep (this can be increased later with Canvas Size), RGB at 72 dpi.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/07/new-document-photoshop1.jpg" alt="new document photoshop" title="" width="617" height="368" class="alignnone size-full wp-image-4513" /></p><p>I then usually center the design within the 1200 pixels wide canvas by drawing a couple of guides. (Pet peeve: websites that are aligned left with the browser window.) Draw vertical guides by dragging them out from the vertical ruler on the sides of the document. If you can&#8217;t see the rulers go Cmd(Mac)/Ctrl(PC)-R.</p><p>You can do this by eye, although I usually want the width of the website to be exactly 1024 pixels. Zoom in [Cmd(Mac)/Ctrl(PC)-plus] for greater accuracy. You can view/hide the guides by going Cmd(Mac)/Ctrl(PC)-;.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/07/photoshop-guides.jpg" alt="photoshop guides" title="" width="301" height="223" class="alignnone size-full wp-image-4514" /></p><p>The above example of the guides on the canvas is viewed at a magnification of 17.5%, obviously you will want to work on your design at 100% magnification. The magnification percentage can always be seen in Photoshop at the top of the document&#8217;s window.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/07/photoshop-window.jpg" alt="photoshop-window" title="" width="310" height="113" class="alignnone size-full wp-image-4516" /></p><h2>Use vectors, Shapes and Smart Objects</h2><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/07/photoshop-shape-tools.jpg" alt="photoshop shape tools" title="" width="216" height="137" class="alignleft size-full wp-image-4551" />When creating squares, rounded corner objects, buttons, navbars, sidebar backgrounds, etc., it is better to use the <strong>Shapes</strong> from the Tool bar rather that to create them with selections. These are essentially vectors rather than bitmaps so later editing will be easier. If you want to change their color you can click on the layer thumbnail box and select a color with the Color Picker, or add a Layer Style if you want a gradient.</p><p>Similarly, when dealing with logos or any graphical element within a website design it is always better to use vectors not raster graphics. So when pasting in your logo from <a
href="http://robcubbon.com/category/illustrator/">Illustrator</a>, be sure to keep it as a <strong>Smart Object</strong> as you can see below. Now you will be able to increase and reduce the logo&#8217;s size multiple times without worrying about it&#8217;s quality. If you enlarge and reduce a bitmap logo you will soon see the quality affected.</p><p>Another benefit of Smart Objects in Photoshop is that you can double click their icon in the Layers palette and edit the graphic in Illustrator, once this is saved  the Smart Object updates in the Photoshop document. If this Smart Object has been copied and used multiple times in the design (an arrow, an icon, a graphic device) then <em>all</em> instances of this Smart Object will be updated. This is awesome!</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/07/vectors-smart-objects-photoshop.jpg" alt="vectors-smart-objects-photoshop" title="" width="600" height="206" class="alignnone size-full wp-image-4523" /></p><h2>Name Layers and Layer Groups to keep everything organized</h2><p>A web page can easily have over a hundred different elements and you will need to be able to select them and groups of them quickly in order to move them around.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/07/photoshop-layers-palette.jpg" alt="photoshop layers palette" title="" width="266" height="364" class="aligncenter size-full wp-image-4553" /></p><p>So group all your layers into layer groups of the main areas of the page (header, footer, sidebar, etc.) this will make things easier if the client suddenly says, &#8220;can we have the sidebar on the opposite side?&#8221;</p><p>One little irritation is that inevitably as you work down the page from top to bottom on the document the layers end up stacked the other way round. I haven&#8217;t found a way around this yet!</p><h2>Layer styles for text shadow</h2><p>We all love layer styles for the ability to add drop shadows, glows, gradients, etc., on to almost anything. It is particularly useful when mimicking the CSS3 text shadow effects in browsers.</p><p>For <strong>dark text shadows</strong>, for example  {1px 1px #000}, use the Drop Shadow effect as default only changing the Distance and Size to 1 pixel.</p><p>For <strong>light text shadows</strong>, for example {1px 1px #000}, use the Drop Shadow effect as default only changing the color from black to white, the Blend Mode to Normal from Mulitply, and the Distance and Size to 1 pixel (see below).</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/07/navigation-bar.jpg" alt="navigation-bar" title="" width="233" height="49" class="alignnone size-full wp-image-4558" /></p><h2>Grab your color with the Eyedropper</h2><p>To use the Eyedropper tool, simply press the I key and click on the area you want to sample the color from. Then click on the foreground color at the bottom of the Tool bar to open the Color Picker.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/07/color-picker-photoshop.jpg" alt="color picker photoshop" title="" width="630" height="453" class="alignnone size-full wp-image-4562" /></p><p>You then get a HEX version of the color that you can use in your CSS mark up. Click &#8220;Add to Swatches&#8221; if you want to easily access this exact color elsewhere in the design.</p><h2>Presenting a web page design to a client</h2><p>You&#8217;ve finally finished the page and you save it out as a JPG, what do you do? Do you just send the JPG to the client? No! Put it in a web page for the client to look at in a browser so there&#8217;s no confusion as to how it looks.</p><p>It&#8217;s also a good idea to add any hover states or drop-downs in the page so the client knows exactly what they&#8217;re getting.</p><p>Here is the HTML I use to show a large JPG centered in a webpage:</p><blockquote><p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;<br
/> &lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;<br
/> &lt;head&gt;<br
/> &lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=UTF-8&#8243; /&gt;<br
/> &lt;title&gt;Home page visual number 1&lt;/title&gt;<br
/> &lt;/head&gt;</p><p>&lt;body style=&#8221;padding:0; margin:0; background:#fff&#8221;&gt;<br
/> &lt;div style=&#8221;margin: 0 auto; padding:0; height:1900px; text-align:center;&#8221;&gt;<br
/> &lt;img src=&#8221;home-1.jpg&#8221;/&gt;&lt;/div&gt;</p><p>&lt;/body&gt;<br
/> &lt;/html&gt;</p></blockquote><p>You have to enter a height on the containing div if the page is very deep, otherwise the client won&#8217;t be able to scroll down.</p><p>Save it as &#8220;home-1.html&#8221; along with the JPG in a folder on your website (I use /dev/client-name) and send the link to the client. When the client comes back with comments, just re-save the HTML file as &#8220;home-2.html&#8221; and don&#8217;t forget to change the image name and title. This allows easy reference to earlier versions.</p><h2>What about you?</h2><p>What little tricks do you employ when creating the visual look of a website in Photoshop? Or do you use Fireworks or some other tool? Please put your excellent suggestions plus any queries in the comments section down below.</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/designing-web-page-photoshop/feed/</wfw:commentRss> <slash:comments>26</slash:comments> </item> <item><title>Improved Usability Increases Conversions and Sales</title><link>http://robcubbon.com/improved-usability-increases-conversions-sales/</link> <comments>http://robcubbon.com/improved-usability-increases-conversions-sales/#comments</comments> <pubDate>Mon, 13 Jun 2011 10:44:47 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Email marketing]]></category> <category><![CDATA[conversions]]></category> <category><![CDATA[design]]></category> <category><![CDATA[form]]></category> <category><![CDATA[signup]]></category> <category><![CDATA[usability]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=4185</guid> <description><![CDATA[<p>This is a story of how I increased my conversions by 200% by making my sign-up form easier to use and having more of them on the site. Design vs. Sales The stereotypes of the sales person and the designer are of two totally different animals. Sales people, on one hand, are grubby desperate types [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/06/maze-usability.jpg" alt="maze - usability" title="" width="600" height="380" class="alignnone size-full wp-image-4191" /></p><p>This is a story of how I increased my conversions by 200% by making my <a
href="http://robcubbon.com/mailchimp-sign-up-forms-wordpress-widgets/">sign-up form</a> easier to use and having more of them on the site.</p><h2>Design vs. Sales</h2><p>The stereotypes of the sales person and the designer are of two totally different animals.</p><p>Sales people, on one hand, are grubby desperate types who like garish colors, big headlines and obvious sales copy.</p><p>Designers, on the other, are aloof, creative souls who wince at unsubtle sales pages – they even get upset at the use of a certain font in a movie (Papyrus in Avatar).</p><h2>The problem with the sales person</h2><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/06/salesman.jpg" alt="salesman" title="" width="104" height="130" class="alignleft size-full wp-image-4194" style="border: 1px solid #dadada;  " />The sales person just wants sales. If something works, if it has been proved to sell more or convert more, it&#8217;s used. So we get a proliferation of pop-ups, animation and repetitious sales copy.</p><h2>The problem with the designer</h2><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/06/designer.jpg" alt="designer" title="" width="104" height="130" class="alignleft size-full wp-image-4195" style="border: 1px solid #dadada; " />Designers like white space and they like to de-clutter.  Sometimes they set type so small that older people or people with poor eyesight will have trouble with reading it. This is because designers often have very good eyesight.</p><p>So when a designer has finished a design, it must be understood by the general public, not just by the designer and the client.</p><h2>The happy medium</h2><p>Two of the most important characteristics of the sales process are clarity and usability.</p><p>I have a great example of this here on my blog and I&#8217;m so ashamed that it took me so long to work this out.</p><h2>My shame: number one</h2><p><img
src="http://robcubbon.com/images/e-book-cover-3d-small-120.jpg" alt="ebook"  class="alignleft" style="margin-top: 5px; " /> On my website I have a form to take visitors&#8217; email addresses so that they can receive newsletters and a free eBook on <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a>.</p><p>When I first put the form on the website I put it on one page only – <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">the page that advertised the eBook</a> and left it at that.</p><p>I was looking at my site too hard and too much. I forgot that most visitors look at it for only a few seconds.</p><p>One day I wondered to myself, &#8220;what would happen if I put a sign-up form on the sidebar&#8221;. I&#8217;d probably noticed that sign-up forms were there on lots of other sites.</p><p>&#8220;But,&#8221; I thought, &#8220;it probably won&#8217;t make much difference as visitors can follow the links to the sign-up page because they will want to read more about the newsletter and incentive first.&#8221;</p><p>Wrong! My subscriptions increased by 100%</p><h2>My shame: number two</h2><p>But there&#8217;s more. I used to have a field for the first and last name on my form on the email company&#8217;s site. I quite liked having it there as I could start my emails &#8220;Dear so-and-so&#8221; which makes them nice and personal.</p><p>The first name field wasn&#8217;t required and so didn&#8217;t exist on the form on my site so you got an annoying pop-up form when you signed up. I didn&#8217;t worry about this for months and months as I thought my visitors wouldn&#8217;t mind the extra click at this stage.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/06/sign-up-form.gif" alt="sign-up form" title="" width="327" height="162" class="aligncenter size-full wp-image-4205" /></p><p>Wrong! I got rid of this annoying, unnecessary barrier to the sign-up process and … my subscriptions increased by 100% again.</p><h2>Keep it simple, stupid!</h2><p>I really should have know better.</p><p>Don&#8217;t put any barrier, confusion or unnecessary distracting element in your designs. Perfect design, so the saying goes, is when nothing needs to be added and nothing needs to be taken away.</p><h2>What do you think?</h2><p>Have any of you got a sign-up form on your website? Or have you signed up to a newsletter on a website? (I guess that would be most people!) What do you think of the sign-up process here? Is there anything that can be done to improve it here or on your website?</p><p>This is a very interesting subject. I&#8217;m currently split testing the <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">sign-up squeeze page</a> and I&#8217;m getting some interesting results that I will share with you shortly.</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/improved-usability-increases-conversions-sales/feed/</wfw:commentRss> <slash:comments>19</slash:comments> </item> <item><title>How to Run a Graphic Design Business</title><link>http://robcubbon.com/run-graphic-design-business/</link> <comments>http://robcubbon.com/run-graphic-design-business/#comments</comments> <pubDate>Tue, 31 May 2011 10:46:57 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[Chris Spooner]]></category> <category><![CDATA[David Airey]]></category> <category><![CDATA[design company]]></category> <category><![CDATA[entrepreneur]]></category> <category><![CDATA[graphic design]]></category> <category><![CDATA[John O'Nolan]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=4067</guid> <description><![CDATA[<p>We have many dreams when we were young. Some want to be rich. Some want to create great things. Some want to make a difference and do work that they enjoy. However, many of us find ourselves disillusioned by corporate structures when we start to work. If this has happened to you then, don&#8217;t worry, [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-4095" src="http://cdn.robcubbon.com/wp-content/uploads/2011/05/graphic-design-business.jpg" alt="graphic design business" width="600" height="348" /></p><p>We have many dreams when we were young. Some want to be rich. Some want to create great things. Some want to make a difference and do work that they enjoy.</p><p>However, many of us find ourselves disillusioned by corporate structures when we start to work. If this has happened to you then, don&#8217;t worry, you&#8217;re not alone. It&#8217;s happened to many designers. And more and more of them are starting their own companies.</p><h2>Advice for Running a Graphic Design Business from the Experts</h2><p>I sent off a quick questionnaire to a few freelance or independent graphic designers to see if there were any &#8220;rules&#8221; or common practices involved in running a graphic design business from home. The answers were fascinating, we found out, for example, that most of us charge 50% up front, only 50% of us always use contracts and that we spend on average 1.6 hours a day indulging in personal social media unrelated to work. More results here:</p><ul><li><a
href="http://robcubbon.com/graphic-designers-hardware-software-back-up/">Graphic Designers’ Hardware, Software and Back-up</a></li><li><a
href="http://robcubbon.com/graphic-designers-get-paid/">Survey Results: How Graphic Designers Get Paid</a></li><li><a
href="http://robcubbon.com/what-designers-do-make-money-find-clients/">What Designers Do, How They Make Money and Where They Find Clients</a></li></ul><p>At the end of the questionnaire there was space for the designers to write a few more words of advice to up-and-coming designers who want to &#8220;go it alone&#8221;. When I put these all together I thought they comprised a great &#8220;how-to&#8221; for mastering the design industry. I agree with all of them 100%. Follow these words closely and you can&#8217;t go wrong.</p><p><img
class="alignnone size-full wp-image-4079" style="border: 1px solid #dadada; margin-top: 15px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/05/david-airey.jpg" alt="david airey" width="120" height="150" /></p><h3>David Airey</h3><p><a
href="http://www.davidairey.com/">David Airey</a> is a brand identity designer or the &#8220;go-to logo guy&#8221; who&#8217;s clients include the Yellow Pages (Canada), Giacom (England) and Berthier Associates (Japan). His graphic design blogs <a
href="http://www.logodesignlove.com">Logo Design Love</a>, <a
title="David Airey" href="http://www.davidairey.com">DavidAirey.com</a> and brand identity showcase <a
href="http://identitydesigned.com/">Identity Designed</a> attract more than one million monthly page views. His successful book <a
href="http://www.amazon.com/gp/product/0321660765/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321660765">Logo Design Love: A Guide to Creating Iconic Brand Identities</a> has been translated into Chinese, Portuguese, Czech, German, Polish, Korean, and Russian.</p><p>I&#8217;ve been reading&#8217;s David&#8217;s blogs for years, in fact, I almost use David as a &#8220;yardstick&#8221; to judge my site against as he is that much of a shining example of a graphic designer in business. Interesting that David, a man who doesn&#8217;t seem to make mistakes, chose this quote as one to advise designers with:</p><blockquote><p>&#8220;Don&#8217;t be afraid of mistakes. Everyone makes them. The important part is accepting responsibility and learning from your errors.&#8221;</p></blockquote><p><img
class="alignnone size-full wp-image-4080" style="border: 1px solid #dadada; margin-top: 15px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/05/douglas-bonneville.jpg" alt="douglas bonneville" width="120" height="150" /></p><h3>Douglas Bonneville</h3><p><a
href="http://bonfx.com/">Douglas Bonneville</a> runs a &#8220;small and nimble&#8221; graphic design firm in Rhode Island and has serviced Providence, Boston and the world since 1992. Doug began his blog and moved his site over to WordPress two years ago and quickly became established as a typography expert. He has been published on Smashing Magazine and other industry blogs on the subject of font combinations and now offers <a
href="http://bonfx.com/the-big-book-of-font-combinations/">The Big Book Of Font Combinations eBook</a> as well as the <a
href="http://bonfx.com/font-combinations-app/">Font Combinations iPhone app</a> on his site.</p><p>This strategy of finding what you&#8217;re good at and sticking at it is reflected in this piece of advice:</p><blockquote><p>&#8220;Find a niche and fill it. You may have to start broad but narrow your skill set and master some specialty niches. If you don&#8217;t, you will join the nameless ranks of generalists who were also afraid to specialize, and now pay the price of flipping burgers with most of their time. Generalists have little definable expertise and thus little definable value.&#8221;</p></blockquote><p><img
class="alignnone size-full wp-image-4081" style="border: 1px solid #dadada; margin-top: 15px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/05/randa-clay.jpg" alt="randa clay" width="120" height="150" /></p><h3>Randa Clay</h3><p><a
href="http://randaclay.com/">Randa Clay</a> is an awesome designer and WordPress expert. She seeks to help her clients become successful, utilising a complete package of services that includes custom logo design, print design and production, custom web site and blog design and customization. So like me she considers herself a marketing consultant as well as a graphic designer.</p><p>Randa came up with a couple of things. The first was a link to this rather fantastic image created by <a
href="http://www.behance.net/bencrick">Ben Crick</a>:</p><p><img
class="aligncenter size-full wp-image-4090" style="border: 1px solid #dadada; margin-top: 15px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/05/do-not-work-for-free.jpg" alt="do not work for free" width="308" height="700" /></p><blockquote><p>&#8220;Do not work for free under the guise of good exposure. It is bad exposure. If you don&#8217;t value your own work, neither will anyone else.&#8221;</p></blockquote><p>I&#8217;m not going to disagree with that! As soon as a potential client asks for free work from me, they&#8217;re 5 seconds away from the end of the conversation! Her second piece of advice is just as good. This goes along with something I&#8217;ve been saying here for years: start your own blog and forge partnerships with others in your field. Read every word of it:</p><blockquote><p>&#8220;If you want to get business you must have an awesome website, showing your best work and a nice, friendly picture of yourself. People prefer to hire someone who looks friendly rather than a faceless internet presence. Include a blog on the site (for the SEO value if nothing else). Find successful designers in the same niche and get to know them by commenting on their blogs, Twitter, etc. Once you&#8217;ve established a relationship, send them a nice note, complementing their work, and let them know you do similar work.Tell them if they ever have pass-along work they don&#8217;t have time for, you&#8217;d appreciate a referral.&#8221;</p></blockquote><p><img
class="alignnone size-full wp-image-4082" style="border: 1px solid #dadada; margin-top: 15px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/05/chris-spooner.jpg" alt="chris spooner" width="120" height="150" /></p><h3>Chris Spooner</h3><p><a
href="http://www.spoongraphics.co.uk/">Chris Spooner</a> doesn&#8217;t just sit in front of his shiny Apple computer all day long creating snazzy designs for cool folks from around the world, he blogs about  it as well. <a
href="http://www.blog.spoongraphics.co.uk/">His first blog</a> contains beautiful tutorials for designers on Photoshop, Illustrator and the like as well as fantastic video advice for designers. And in March 2009 he launched <a
href="http://line25.com/">Line25</a>, an equally excellent blog covering all aspects of web design. He also has a <a
href="http://jakethelab.com/">labrador called Jake</a> and <a
href="http://www.youtube.com/user/chrisjspooner">goes on a lot about Black Ops</a> which I believe is some sort of computer game.</p><p>Chris&#8217;s advice is pure Chris. Read it carefully as it basically summarises his success in the last few years in only a few words:</p><blockquote><p>&#8220;I always advise up-and-coming designers to just keep practicing and experimenting. Use things that capture your interest in everyday life as material for personal projects, then share your thoughts, processes and the things you learn with others. This is essentially what I do on a daily basis and has seemed to land me some great opportunities so far!&#8221;</p></blockquote><p><img
class="alignnone size-full wp-image-4083" style="border: 1px solid #dadada; margin-top: 15px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/05/ryan-scherf.jpg" alt="ryan scherf" width="120" height="150" /></p><h3>Ryan Scherf</h3><p><a
href="http://www.ryanscherf.net/">Ryan Scherf</a> is an designer, developer, author, teacher and entrepreneur from Minneapolis, MN, USA. You just have to look at some of the work featured on his homepage to see that Ryan produces some of the most beautiful and creative websites you will ever see. When he&#8217;s not slaving away at night for his clients, he&#8217;s working on his healthcare startup <a
href="http://www.gobloomhealth.com/">Bloom Health</a>. Although Ryan has only had 5 hours sleep in the last 3 weeks due to a new addition to his family, he still found time to contribute to this project. Thanks and congratulations, Ryan.</p><p>Ryan sent two, equally useful pieces of advice. The first one I agree with wholeheartedly. I&#8217;ve said many times on my blog it&#8217;s far easier to get clients to come to you rather than the other way round.</p><blockquote><p>&#8220;Always be promoting yourself. The best way to find new leads is let them come to you.&#8221;</p></blockquote><p>And secondly, he echoes the advice we found from our survey results about <a
href="http://robcubbon.com/graphic-designers-get-paid/">how designers get paid</a>:</p><blockquote><p>&#8220;Require 50% upfront, and don&#8217;t accept payment on monthly plans. It never works out how you intended.&#8221;</p></blockquote><p><img
class="alignnone size-full wp-image-4086" style="border: 1px solid #dadada; margin-top: 15px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/05/mike-smith.jpg" alt="mike smith" width="120" height="150" /></p><h3>Mike Smith</h3><p><a
href="http://www.iammikesmith.com/">Mike Smith</a> runs <a
href="http://www.madebyguerrilla.com/">Made By Guerrilla</a> a WordPress design studio from Knoxville, Tennessee, USA as well as a hugely interesting <a
href="http://www.guerrillafreelancing.com/">freelance design blog</a>. Since he started working online in 2007, he has worked with over 200 clients, built hundreds of websites and wrote and published over 200 articles on various blogs, with topics ranging from freelance tips, design resources, showcase, tutorials and to &#8220;Guerrilla Marketing&#8221;. Mike describes guerilla marketing as &#8220;any of a number of unconventional methods of marketing with minimal resources for maximum results; any marketing campaign that uses non-mainstream tactics and locations&#8221;.</p><blockquote><p>&#8220;Advice for other designers looking to start a freelance business &#8211; it&#8217;s not always going to be fun (invoicing, accounting, etc) but at the end of the day, it beats the hell out of going to someone else&#8217;s building and working to make someone else rich while we receive a small pay check <img
src='http://cdn.robcubbon.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8221;</p></blockquote><p><img
class="alignnone size-full wp-image-4087" style="border: 1px solid #dadada; margin-top: 15px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/05/karen-mcdade.jpg" alt="karen mcdade" width="120" height="150" /></p><h3>Karen McDade</h3><p>Karen McDade is a South African freelance graphic designer currently working in Ireland. She has a <a
href="http://karenmcdade.com/">blog</a> where she writes about graphic design, mac stuff, software, games, books, etc., and displays her portfolio at <a
href="http://www.omegared.co.za/">OmegaRed</a>.</p><p>Karen&#8217;s advice is right on the money for me where she stresses the importance of distinguishing between clients and time wasters:</p><blockquote><p>&#8220;I would advise people to not take on just any client &#8211; if they hassle you about your price, or give you a lot of uphill then don&#8217;t bother with them. Nurture the relationships you have with your good clients, they are hard to find. Be prompt when corresponding with them and always give them your best work.&#8221;</p></blockquote><p><img
class="alignnone size-full wp-image-4084" style="border: 1px solid #dadada; margin-top: 15px;" src="http://cdn.robcubbon.com/wp-content/uploads/2011/05/john-onolan.jpg" alt="john o'nolan" width="120" height="150" /></p><h3>John O&#8217;Nolan</h3><p><a
href="http://john.onolan.org/">John o&#8217;Nolan</a> is a designer, entrepreneur, speaker, author, photographer but has taken to using the phrase &#8220;creative professional&#8221; to describe himself. He is the Deputy Head of the UI group for WordPress, founder and owner of Lyrical Media and avid <a
href="http://twitter.com/#!/JohnONolan">twitterer</a>.</p><p>It&#8217;s a little surprise then that this man of many words chose comparatively few to advise people in the business of graphic design:</p><blockquote><p>&#8220;Under-promise, over-deliver, over-charge. If you fail to do any of these, you will make a loss.&#8221;</p></blockquote><h2>Now it&#8217;s your turn</h2><p>Did we leave anything out? Is there anything you&#8217;d like to add to these words of wisdom? Which was your favorite?</p><p>I&#8217;ll leave you with this limerick from Douglas Bonneville:</p><blockquote><p>There once was a graphic designer<br
/> Who could not draw a straight liner<br
/> Fresh out of school<br
/> She thought she was cool<br
/> And soon was a cook in a diner!</p></blockquote><p>Download my e-book on <a
href="http://robcubbon.com/running-a-web-design-business/">how to run your own design business</a>!</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/run-graphic-design-business/feed/</wfw:commentRss> <slash:comments>27</slash:comments> </item> <item><title>Survey Results: Graphic Designers&#8217; Hardware, Software and Back-up</title><link>http://robcubbon.com/graphic-designers-hardware-software-back-up/</link> <comments>http://robcubbon.com/graphic-designers-hardware-software-back-up/#comments</comments> <pubDate>Wed, 30 Mar 2011 11:02:24 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[adobe]]></category> <category><![CDATA[apple]]></category> <category><![CDATA[applications]]></category> <category><![CDATA[apps]]></category> <category><![CDATA[back-up]]></category> <category><![CDATA[cs]]></category> <category><![CDATA[graphic designer]]></category> <category><![CDATA[hardware]]></category> <category><![CDATA[mac]]></category> <category><![CDATA[pc]]></category> <category><![CDATA[software]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=3696</guid> <description><![CDATA[<p>Being an independent graphic designer and running your own business from home is the best life ever – at least that&#8217;s what we think. Here is a guide to the hardware, software and back-up used based on the answers from my representative sample of graphic designers. Further fascinating results from this survey can be found [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-3732" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/designer-hardware-software1.jpg" alt="designer hardware software" width="600" height="386" /></p><p>Being an independent graphic designer and running your own business from home is the best life ever – at least that&#8217;s what we think. Here is a guide to the hardware, software and back-up used based on the answers from my representative sample of graphic designers.</p><p>Further fascinating results from this survey can be found in these two recent posts:</p><ul><li><a
href="http://robcubbon.com/what-designers-do-make-money-find-clients">What Designers Do, How They Make Money and Where They Find Clients</a></li><li><a
href="http://robcubbon.com/graphic-designers-get-paid">How Graphic Designers Get Paid</a></li></ul><p>So, let&#8217;s get going. Remember, this sample of graphic designers were taken from every continent of the world and included hugely successful designers as well as people who were just starting out.</p><h3>Graphic Designer&#8217;s Hardware</h3><p>Hardware-wise, our designers came from both Mac and PC denominations of computer worship with the majority being Apple fans.</p><p><img
class="alignnone size-full wp-image-3724" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/macbook-air1.jpg" alt="macbook air" width="322" height="137" /></p><h4>Macs</h4><p>Designers have to regularly update both their hardware and software so the answers I got depended on where the designers were in their update cycle. For example, I had been struggling along with an old 21&#8243; white iMac with a 2.16 GHz processor, 2GB RAM and a 250GB hard disc. And I&#8217;ve recently purchased a <a
href="http://www.amazon.com/gp/product/B00361EZXS/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&#038;tag=graandwebdesl-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B00361EZXS">27&#8243; iMac with a 3.2 GHz, 4GB RAM and a 1TB hard disc</a> &#8211; and I&#8217;m loving the extra speed and power.</p><p>For example, here is <a
href="http://www.tianodesign.com/">Steven Tiano</a>&#8216;s set-up: &#8220;I currently work on a 24-inch iMac with a second 23-inch Apple CInema Display. The iMac is a 2.93 GHz Intl Core 2 Duo machine with 4GB of RAM and a 640 GB hard drive.&#8221;</p><p>Having multiple screens or machines is quite popular. For example, <a
href="http://spyrestudios.com/">Jon Phillips</a> uses a 13inch Mac Book Pro (2.4GHz Intel Core 2 Duo with 4GB of RAM) and with an external Samsung monitor. <a
href="http://www.davidairey.com/">David Airey</a> has a 27&#8243; iMac and a 15&#8243; MacBook Pro.</p><p>Many Mac people have PC laptops and vice versa!</p><p><img
class="alignnone size-full wp-image-3725" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/computers1.jpg" alt="computers" width="300" height="150" /></p><h4>PCs</h4><p>The designers who have PCs really know how to get the most out of them. Take <a
href="http://www.andrewkeir.com/">Andrew Keir</a> for example, who has a 2.6GHz Quad Core CPU with 12GB of RAM. This beast is security cabled to his desk. Another set up belongs to <a
href="http://carmiacronje.blogspot.com">Carmia Cronje</a> who has an Intel Celeron CPU 2.6GHz Dual-core with 2GB RAM and a Samsung 17&#8243; TFT LCD monitor.</p><p><a
href="http://www.phoenixwave.com">Lucas Tetrault</a>, however, built his own PC running Windows 7 Ultimate 64 bit with an Intel i7 processor, 6GB of DDR3 RAM, Nvidia GTX Video Card and a 1TB hard drive.</p><p><img
class="alignnone size-full wp-image-3726" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/magic-mouse2.jpg" alt="magic mouse" width="300" height="120" /></p><h4>Mice/Mouses</h4><p>Many designers, including myself, use the <a
href="http://www.dpbolvw.net/click-4596814-10883192">Mac Magic Mouse</a>. However, tablets are popular, for example the <a
href="http://www.amazon.com/gp/product/B002OOWC3I/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B002OOWC3I">Wacom Bamboo</a> tablet. Also, <a
href="http://www.tkqlhce.com/click-4596814-10827578&quot;">Logitech mice</a> and <a
href="http://www.amazon.com/gp/product/B003UT6C9G/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B003UT6C9G">Microsoft Arc Mouse</a> were mentioned.</p><p><img
class="alignnone size-full wp-image-3727" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/smartphones.jpg" alt="smartphones" width="300" height="144" /></p><h4>Phones &amp; Tablets</h4><p>Many designers listed smart phones, iPhones and iPads as part of their hardware arsenal as they dip their toes into app development. <a
href="http://developer.apple.com/xcode/">Xcode</a> is being used to develop Mac apps.</p><h3>Graphic Designer&#8217;s Software</h3><p><img
class="alignnone size-full wp-image-3728" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/splash_screen_based_cs5_icons_.jpg" alt="cs5 icons" width="300" height="59" /></p><h4>Adobe Creative Suite &amp; graphics programs</h4><p>No surprise which was the common suite of programs that designers used! Adobe&#8217;s Creative Suite was being used by all of our designers in some incarnation, the most popular being the <a
href="http://www.dpbolvw.net/click-4596814-10469484">Design Premium CS5</a>. But <a
href="http://www.quark.com/">Quark</a>, <a
href="http://www.kqzyfj.com/click-4596814-10590966">CorelDRAW X5</a> and <a
href="http://www.amazon.com/gp/product/B0043SK9QU/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B0043SK9QU">Sketchbook Pro 2</a> were also mentioned.</p><p>Photoshop was the most popular graphics/image editor although some web designers much preferred Fireworks. One of our designers used <a
href="http://www.pixelmator.com/">Pixelmator</a> a Mac image editor that&#8217;s much cheaper than Photoshop. Another alternative is <a
href="http://www.lemkesoft.com/">GraphicConverter</a>. <a
href="http://stuntsoftware.com/downsize/">Downsize</a> is a utility that can batch resize images in bulk.</p><p><img
class="alignnone size-full wp-image-3730" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/mac_apps.jpg" alt="mac apps" width="300" height="59" /></p><h4>Other applications</h4><p>Some of us splash out on the MS Office so as to read and create Word, Excel and Powerpoint documents. Whereas some of us make do with the open source <a
href="http://www.openoffice.org/">OpenOffice</a>.</p><p>Free text editors used were <a
href="http://notepad-plus-plus.org/">Notepad</a> for PCs and <a
href="http://support.apple.com/kb/ht2523">TextEdit</a> on the Mac. However, some designers preferred the following premium text editors: <a
href="http://macromates.com/">Textmate</a> and <a
href="http://www.panic.com/coda/">Coda</a>.</p><p>For font management <a
href="http://www.amazon.com/gp/product/B0041A82OG/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B0041A82OG">Suitcase Fusion</a> was the most popular.</p><p>And FTP-wise, the favorite open source solution was <a
href="http://filezilla-project.org/">Filezilla</a>, with many preferring to pay for either <a
href="http://fetchsoftworks.com/fetch/">Fetch</a> or <a
href="http://www.panic.com/transmit/">Transmit</a>.</p><p><img
class="alignnone size-full wp-image-3735" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/external-devices.jpg" alt="external hard disc drives" width="300" height="85" /></p><h3>Back-up</h3><p><strong>On-site</strong></p><p>Many of our Mac users utilised <a
href="http://www.apple.com/macosx/what-is-macosx/time-machine.html">Time Machine</a> with some sort of external disc drive (usually <a
href="http://www.amazon.com/gp/search/ref=as_li_qf_sp_sr_il_tl?ie=UTF8&amp;keywords=western%20digital%20500gb&amp;tag=graandwebdesl-20&amp;index=aps&amp;linkCode=as2&amp;camp=1789&amp;creative=9325">500GB</a> or <a
href="http://www.amazon.com/gp/search/ref=as_li_qf_sp_sr_il_tl?ie=UTF8&amp;keywords=western%20digital%201tb&amp;tag=graandwebdesl-20&amp;index=aps&amp;linkCode=as2&amp;camp=1789&amp;creative=9325">1TB</a>). For those of you that aren&#8217;t familiar with this utility it automatically saves up-to-date copies of everything on your Mac. Plus, if you ever delete or save over a file you can&#8217;t retrive, you can easily &#8220;go back in time&#8221; to recover it using one of the most exciting interfaces I&#8217;ve ever seen!</p><p>One of our designers had a <a
href="http://www.apple.com/timecapsule/">Time Capsule</a> which is an automatic wireless backup for your files. Available in 1TB and 2TB models.</p><p><strong>Off-site</strong></p><p>Not all of our designers had off-site back-up as a precaution against fire or theft. But the ones who did use the following:</p><ul><li><a
href="http://db.tt/SCEX8V4/">Dropbox</a> Dropbox allows you to sync your files online and across your computers automatically. Ideal for cloud living!</li><li><a
href="http://mozy.com/registration/free?ref=3f9a896b&#038;kbid= 149326&#038;m=16">Mozy</a> Founded in 2005, Mozy is &#8220;the world’s most trusted online backup service with more than 1 million customers  backing up 70 petabytes of information to multiple data centres around the globe&#8221; according to their website.</li><li><a
href="http://www.backblaze.com/partner/af0981">Backblaze</a> Only $5 a month per computer for unlimited storage.</li></ul><h3>Thank you</h3><p>A huge thank you to everyone who participated. I learned a lot from this. So, as ever, heartfelt thanks to the following:</p><p>Lucas Tetrault from <a
href="http://www.phoenixwave.com">Phoenix Wave Portfolio</a><br
/> Lynne Venart from <a
href="http://www.theartmonkey.com">The Art Monkey</a><br
/> Matthew Harpin from <a
href="http://www.brand-design.co.uk">Freelance Web &amp; Logo Design</a><br
/> Michael King from <a
href="http://www.bsiw.us">Black Swan Image Works</a><br
/> Mike Smith from <a
href="http://www.madebyguerrilla.com">GUERRILLA</a><br
/> Randa Clay from <a
href="http://randaclay.com">Randa Clay WordPress Design</a><br
/> Ryan Scherf from <a
href="http://ryanscherf.net">Ryan Scherf</a><br
/> Stephen Tiano from <a
href="http://www.tianobookdesign.com">Freelance book designer, page compositor &amp; layout artist</a><br
/> Derek Kirk from <a
href="http://www.creativeweb-design.com">creative web design</a><br
/> Andrew Keir from <a
href="http://www.andrewkeir.com">Melbourne graphic designer, Andrew Keir</a><br
/> Andrew Kelsall from <a
href="http://www.andrewkelsall.com/">Andrew Kelsall Design</a><br
/> Anne Swanson from <a
href="http://www.anneswansondesign.com">Anne Swanson Graphic Design</a><br
/> Bob Raynor from <a
href="http://raynordesign.net">Bob Raynor &#8211; Graphic Designer</a><br
/> Carmia Cronje from <a
href="http://carmiacronje.blogspot.com">Clementine Creative</a><br
/> Chris Metzner from <a
href="http://www.ChrisMetzner.com">data visualization graphic designer</a><br
/> Craig Wilson from <a
href="http://craigalanwilson.com">Craig Wilson</a><br
/> David Airey from <a
href="http://www.davidairey.com/">David Airey, graphic designer</a><br
/> Douglas Bonneville from <a
href="http://bonfx.com">freelance graphic designer</a><br
/> Hernan Valencia from <a
href="http://theconstructcreative.com">The Construct Creative</a><br
/> John O&#8217;Nolan from <a
href="http://john.onolan.org">John O&#8217;Nolan</a><br
/> Jon Phillips from <a
href="http://spyrestudios.com">SpyreStudios</a><br
/> Justin Miller from <a
href="http://www.magnumcreativegroup.com">Magnum Creative Group</a><br
/> Karen McDade from <a
href="http://www.omegared.co.za">Omega Red</a><br
/> Kyle Richardson from <a
href="http://www.enrichdesign.us">Enrich Design</a><br
/> Lauren Krause from <a
href="http://creativecurio.com">Creative Curio</a><br
/> Liam Swift from <a
href="http://www.attract.uk.com">Attract Love to Your Brand</a></p><h3>More to come</h3><p>So that&#8217;s it &#8230; well not quite, there is one more entry in the questionnaire that I haven&#8217;t published. I left a &#8220;final thoughts&#8221; section at the end where I got some great entries. I&#8217;ll put them in a blog post together with a few more I can lay my hands on.</p><h3>What do you think?</h3><p>Are you a graphic designer who runs their own business or thinking of becoming a self-employed work-from-home type? What did you think of this survey? As always, I’d love to hear your thoughts.</p><p><a
href="http://robcubbon.com/running-a-web-design-business/">More info about independent graphic designers&#8217; set-up and how they make their money</a> in my e-book.</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/graphic-designers-hardware-software-back-up/feed/</wfw:commentRss> <slash:comments>25</slash:comments> </item> <item><title>Survey Results: How Graphic Designers Get Paid</title><link>http://robcubbon.com/graphic-designers-get-paid/</link> <comments>http://robcubbon.com/graphic-designers-get-paid/#comments</comments> <pubDate>Tue, 15 Mar 2011 13:08:18 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[billing]]></category> <category><![CDATA[billing software]]></category> <category><![CDATA[charge]]></category> <category><![CDATA[client]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=3600</guid> <description><![CDATA[<p>This is the second part of my survey of independent graphic designers working from all corners of the globe and it throws up some interesting results about how they charge. The first survey results concentrated on what designers do and how they make money. Questions about charging are the most common I get in my [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-3611" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/designer-and-money.jpg" alt="designer and money" width="600" height="386" /></p><p>This is the second part of <strong>my survey of independent graphic designers</strong> working from all corners of the globe and it throws up some interesting results about how they charge. The first survey results concentrated on <a
href="http://robcubbon.com/what-designers-do-make-money-find-clients">what designers do and how they make money</a>.</p><p>Questions about charging are the most common I get in my inbox. Here&#8217;s how my trusty designer respondents answered&#8230;</p><h3>Do you typically charge clients fixed-rate fees or hourly/daily rates?</h3><p><img
class="alignnone size-full wp-image-3601" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/how-charge.jpg" alt="how do you charge clients" width="600" height="320" /></p><p>Clients and designers are most comfortable with fixed rate fees. Here, if both parties agree on the parameters of the task, the designer and the client know exactly how much it&#8217;s going to cost or pay before starting the project. Larger jobs are especially likely to be charged this way; whereas smaller jobs may be charged out at hourly rates.</p><h3>Do you typically charge clients before or after project is completed?</h3><p><img
class="alignnone size-full wp-image-3603" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/charge-before-after.jpg" alt="charge clients before or after" width="600" height="320" /></p><p>But when can the designers expect to get their grubby hands on the wonga? Half of it up front and the rest on completion is the most common arrangement, although many designers mentioned that this was only normal with new clients. When there is a good working relationship, a more lax attitude to payment can be adopted.</p><h3>How quickly do you expect your clients to pay you after you invoice?</h3><p><img
class="alignnone size-full wp-image-3604" title="payment-time" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/payment-time.jpg" alt="how quickly do you get paid" width="600" height="320" /></p><p>I was pleasantly surprised to see that many designers get paid straight away. Especially as the law in my country, the UK, permits 30 days to elapse between billing and receiving the money.</p><h3>Do you bill manually or use billing software?</h3><p><img
class="alignnone size-full wp-image-3605" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/billing-software.jpg" alt="billing software or manually" width="600" height="320" /></p><p>Nearly half of our designers use billing software. Here&#8217;s what they use:</p><ul><li><a
href="https://robcubbonltd.freshbooks.com/refer/www/">Freshbooks</a> helps you send and manage invoices online, allows auto-billing to automatically charge your client&#8217;s credit card and gives your clients online access to their invoices and account history.</li><li><a
href="http://www.getharvest.com?r=13a7f1" />Harvest</a> Set up takes seconds. Invoices created in minutes and in different currencies.<li><a
href="http://www.freeagentcentral.com/?referrer=21kk92/">FreeAgent</a> builds professional estimates and proposals which can be tracked through to approval and converted to invoices.</li><li><a
href="http://www.marketcircle.com/billings/">Billings 3</a> for Mac combines powerful features with stylish designs so you can send elegant invoices right out of the box.</li></ul><h3>Further information about charging</h3><p>Our designers gave these further points of clarification about their charging – some excellent advice here:</p><blockquote><ul><li>&#8220;For publishing companies I usually get paid at the end of a project, within 15-30 days. For individual clients, typically self-publishers, I get 1/3 paid up-front, and the remaining 2/3 on completion of the project.&#8221;</li><li>&#8220;I have an Access program that will create invoices as well as estimates.&#8221;</li><li>&#8220;You can use PayPal to create invoices for you and you can also send W9&#8242;s electronically thanks to the good ol&#8217; IRS.&#8221;</li><li>&#8220;I charge per project on everything except for maintenance work. For that, I charge by the hour, with a minimum charge of 15 minutes. But for projects, the way I figure my fee is to calculate the number of hours and then add 50% for communication (emails, phone calls, NOT including face to face meetings. Because those can easily get long, I charge extra if I know a client will want any) and unforeseen problems that always crop up.&#8221;</li><li>&#8220;If the client is a new client I usually ask for payment upfront (100% if it&#8217;s a small project or 50% upfront for bigger projects and the remaining 50% once completed). With my standard clients I invoice them monthly.&#8221;</li><li>&#8220;New clients are fixed rate. Established clients are hourly.&#8221;</li><li>&#8220;I tend to take a 20-30% deposit&#8221;</li><li>&#8220;In regards to receiving payment after billing a client, it depends on the client. My biggest client takes literally weeks to pay, as all invoices are dealt with by people further up the chain, so-to-speak. However, for most work for regular clients, about 1-2 weeks appears to be the norm. I sometimes offer clients the change to pay in full before the project starts for a 5% discount. A fair few clients take this option, too.&#8221;</li></ul></blockquote><p>As ever, there are some interesting ideas there, especially the offer of a 5% discount in exchange for an upfront payment.</p><h3>Do you have contracts with your clients?</h3><p><img
class="alignnone size-full wp-image-3606" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/contract-client.jpg" alt="do you have contracts" width="600" height="320" /></p><p>These were perhaps the most surprising results of the whole survey. I have often read that designers should always, always, always have contracts and it seems that this is not the case. I personally believe that 99% of people are honest and therefore it is much more important to be clear about the nature of the job and the payment than it is to sign contracts. However, some designers will disagree with me and, as you can see, 50% use contracts for every job.</p><h3>Do you have written email exchanges where the price and extent of the job is discussed?</h3><p><img
class="alignnone size-full wp-image-3607" title="write-client" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/write-client.jpg" alt="email client" width="600" height="320" /></p><p>For me, leaving a &#8220;paper trail&#8221; of exchanges between you and the client can be even more important than a contract. Briefs can change during the course of a job so, in order that everyone understands the extent of the job and the payment, it&#8217;s advisable that conversations are recorded textually.</p><h3>Do you discuss price and extent of the job with the client and leave it at that?</h3><p><img
class="alignnone size-full wp-image-3608" src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/discuss-client.jpg" alt="discuss with client" width="600" height="320" /></p><p>So, similarly, it&#8217;s not often that designers accept a brief on a phone without anything in writing. However, it&#8217;s possible that this can happen with a trusted client.</p><h3>Further information on agreements and contracts</h3><p>Here are some more helpful comments left by some designers about agreements and contracts:</p><blockquote><ul><li>&#8220;I&#8217;ve only once had difficulty with – let&#8217;s call it – project creep. The project really got off the tracks and took far too long to complete. However, I was compensated fairly for the extra time; but it drove me crazy!&#8221;</li><li>&#8220;I&#8217;ve never had a payment problem. I work a lot on referral these days. If I have a new client I always get the 50% up front (or if it&#8217;s a large project), but otherwise I&#8217;ll let that slide with someone I&#8217;ve worked with before.&#8221;</li><li>&#8220;For new clients and larger projects I use a project agreement (contract just sounds so intimidating!) where I spell out the scope of the project, deliverables, timetable and payment schedule. I sign it and have the client sign it and return it with their deposit. Once I get to know a client well and we work on many projects together, I generally just use written agreements via email for small jobs and maintenance work. I always make sure to have something written in email that we&#8217;ve both agreed on, just in case I need to go back and reference it. I&#8217;ve been very fortunate to work with some great people and I&#8217;ve never had a problem with clients not paying (knock on wood!!).&#8221;</li><li>&#8220;I used to have lots of clients but it became too much to manage, and some of them weren&#8217;t good with paying on time. I whittled my client base down to a select few clients which I&#8217;ve worked with for many years and have a good relationship with. Although I don&#8217;t have standard contracts with some of them, everything that is discussed is recorded in some fashion in chat logs or emails.&#8221;</li><li>&#8220;Moderate to light detail contracts but lots of email trail. You don&#8217;t want to refer to contracts to resolve a problem when referring to a simple email does the trick and gets the project moving again. In the end you want to get paid, not go to court.&#8221;</li><li>&#8220;I have learnt the hard way so from now on I will get every thing written down.&#8221;</li><li>&#8220;Job specifications are recorded through email exchanges. I haven&#8217;t had payment problems for some time now because my work commences upon receipt of 50%, and the remaining 50% is received prior to supply of digital artwork.&#8221;</li><li>&#8220;I have a contract attached to the quotation. They have to pay 50% up-front,  and the rest when the project is finished.  What causes payment problems? When the client doesn&#8217;t check his/her email after I have sent them the invoice!&#8221;</li></ul></blockquote><p>I tried to whittle those quotes down but they were all so interesting and echo the general success of the 50% before 50% after formula for payment.</p><h3>Thank you</h3><p>A huge thank you to everyone who participated. I learned a lot from this. So, heartfelt thanks to the following:</p><p>Lucas Tetrault from <a
href="http://www.phoenixwave.com">Phoenix Wave Portfolio</a><br
/> Lynne Venart from <a
href="http://www.theartmonkey.com">The Art Monkey</a><br
/> Matthew Harpin from <a
href="http://www.brand-design.co.uk">Freelance Web &amp; Logo Design</a><br
/> Michael King from <a
href="http://www.bsiw.us">Black Swan Image Works</a><br
/> Mike Smith from <a
href="http://www.madebyguerrilla.com">GUERRILLA</a><br
/> Randa Clay from <a
href="http://randaclay.com">Randa Clay WordPress Design</a><br
/> Ryan Scherf from <a
href="http://ryanscherf.net">Ryan Scherf</a><br
/> Stephen Tiano from <a
href="http://www.tianobookdesign.com">Freelance book designer, page compositor &amp; layout artist</a><br
/> Derek Kirk from <a
href="http://www.creativeweb-design.com">creative web design</a><br
/> Andrew Keir from <a
href="http://www.andrewkeir.com">Melbourne graphic designer, Andrew Keir</a><br
/> Andrew Kelsall from <a
href="http://www.andrewkelsall.com/">Andrew Kelsall Design</a><br
/> Anne Swanson from <a
href="http://www.anneswansondesign.com">Anne Swanson Graphic Design</a><br
/> Bob Raynor from <a
href="http://raynordesign.net">Bob Raynor &#8211; Graphic Designer</a><br
/> Carmia Cronje from <a
href="http://carmiacronje.blogspot.com">Clementine Creative</a><br
/> Chris Metzner from <a
href="http://www.ChrisMetzner.com">data visualization graphic designer</a><br
/> Craig Wilson from <a
href="http://craigalanwilson.com">Craig Wilson</a><br
/> David Airey from <a
href="http://www.davidairey.com/">David Airey, graphic designer</a><br
/> Douglas Bonneville from <a
href="http://bonfx.com">freelance graphic designer</a><br
/> Hernan Valencia from <a
href="http://theconstructcreative.com">The Construct Creative</a><br
/> John O&#8217;Nolan from <a
href="http://john.onolan.org">John O&#8217;Nolan</a><br
/> Jon Phillips from <a
href="http://spyrestudios.com">SpyreStudios</a><br
/> Justin Miller from <a
href="http://www.magnumcreativegroup.com">Magnum Creative Group</a><br
/> Karen McDade from <a
href="http://www.omegared.co.za">Omega Red</a><br
/> Kyle Richardson from <a
href="http://www.enrichdesign.us">Enrich Design</a><br
/> Lauren Krause from <a
href="http://creativecurio.com">Creative Curio</a><br
/> Liam Swift from <a
href="http://www.attract.uk.com">Attract Love to Your Brand</a></p><h3>More to come</h3><p>That&#8217;s not it! More questions about our designers&#8217; equipment, software, and more great advice to come!</p><h3>What do you think?</h3><p>Are you a graphic designer who runs their own business or thinking of becoming a self-employed work-from-home type? What did you think of this survey? As always, I’d love to hear your thoughts. And, if you enjoyed the article, please consider tweeting or voting for it on your social network of choice!</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/graphic-designers-get-paid/feed/</wfw:commentRss> <slash:comments>27</slash:comments> </item> <item><title>Survey Results: What Designers Do, How They Make Money and Where They Find Clients</title><link>http://robcubbon.com/what-designers-do-make-money-find-clients/</link> <comments>http://robcubbon.com/what-designers-do-make-money-find-clients/#comments</comments> <pubDate>Tue, 01 Mar 2011 12:55:36 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[charging]]></category> <category><![CDATA[clients]]></category> <category><![CDATA[graphic designer]]></category> <category><![CDATA[hours per day]]></category> <category><![CDATA[survey]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=3525</guid> <description><![CDATA[<p>Here are the first results from my graphic designer&#8217;s business survey. I am so grateful to everybody that participated. I surveyed designers that were mostly working from home and running their own businesses. Participants were from every continent and were spread over different design disciplines. They represented every level of experience – from people who [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-3526" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/designer-and-time.jpg" alt="designer and time" width="600" height="386" /></p><p>Here are the first results from my <strong>graphic designer&#8217;s business survey</strong>. I am so grateful to everybody that participated.</p><p>I surveyed designers that were mostly working from home and running their own businesses. Participants were from every continent and were spread over different design disciplines. They represented every level of experience – from people who were just starting out to people like <a
href="http://john.onolan.org/">John O&#8217;Nolan</a>, Deputy Head of the UI group for WordPress, and <a
href="http://www.davidairey.com/">David Airey</a>, the author of <a
href="http://www.amazon.com/gp/product/0321660765?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321660765">Logo Design Love</a>, a designer whose blogs attract over a million monthly page views.</p><h3>What exactly do graphic designers do all day?</h3><p>You may well ask. Well, one thing&#8217;s for sure, they don&#8217;t spend all the day designing. In most cases, they don&#8217;t even spend half the day designing&#8230;</p><p><strong>On average, how many hours a day do you spend actually designing?</strong><br
/> <img
class="alignnone size-full wp-image-3527" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/designing-hours.jpg" alt="designing hours" width="600" height="328" /></p><p>Bear in mind the question didn&#8217;t specify the separate stages of the design process. For web design there&#8217;s the visual stage and the development stage, for print design there&#8217;s the design stage and the artworking stage. So even the designing hours may not be spent doing creative work.</p><p>So what are we doing if not designing? My next two questions were about social media. And I got some unbelievably honest answers&#8230;</p><p><strong>How many hours a day do you spend on social media/web browsing unrelated to your marketing</strong> (Facebook, Twitter, networking with friends and family, and general web surfing)<strong>?</strong><br
/> <img
class="alignnone size-full wp-image-3528" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/social-unrelated.jpg" alt="social unrelated graph" width="600" height="328" /></p><p>Yes, you saw it right, the designers surveyed spent an average of 1.6 hours a day on social networks unrelated to work (above) and only 1 hour a day on social networks related to their work (below). Naughty, naughty!</p><p><strong>How many hours a day do you spend on social media/web browsing specifically related to marketing yourself</strong> (Facebook, Twitter, voting for your blog posts, forums, liaising/networking with designers)<strong>?</strong><br
/> <img
class="alignnone size-full wp-image-3529" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/social-related.jpg" alt="social related graph" width="600" height="328" /></p><p>I was expecting designers to spend a lot of time tweeting, etc., I know a lot of us get work that way. But, even I was surprised that we averaged at 2.6 hours a day on social networks!</p><p><strong>How many hours a day do you spend writing blog posts, responding to comments on your blog(s) or general work on your website?</strong><br
/> <img
class="alignnone size-full wp-image-3530" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/hours-blog.jpg" alt="hours blog graph" width="600" height="328" /></p><p>Bear in mind these are mainly designers that have a website (usually with a blog) and run their companies. For us, the website is the hub of our professional world. So, no surprise that they spend an average of an hour a day on it.</p><p><strong>How may hours a day do you spend liaising, meeting, talking or writing emails to clients?</strong><br
/> <img
class="alignnone size-full wp-image-3531" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/hours-clients.jpg" alt="hours clients" width="600" height="328" /></p><p>We all know how the most simple client job can involve much time in communication. Look how much time is spent in client communication and remember it next time you give a quote!</p><p>So is there anything else you spend time on? A few designers added these comments:</p><ul><li>&#8220;Parenting! <img
src='http://cdn.robcubbon.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8221;</li><li>&#8220;Travel to and from meetings.&#8221;</li><li>&#8220;It seems as if I spend a lot of time e-mailing and talking with clients as I design. The automatic feedback is great!&#8221;</li><li>&#8220;I didn&#8217;t include coding/debugging websites in the &#8220;hours actually designing.&#8221; Maybe I should have? That would bring the total up.&#8221;</li><li>&#8220;I spend a lot of time doing research for clients in order to come up with the best solutions.&#8221;</li><li>&#8220;Accounting, emails, consulting, freelance writing, ad management, SEO.&#8221;</li><li>&#8220;Market and Trend Research. Learning new techniques online.&#8221;</li><li>&#8220;I do spend quite a bit of time educating clients. I do small spot seminars by phone or in person for SEO basics, CMS overview, etc.&#8221;</li><li>&#8220;Studying &#8211; 2 hours a day.&#8221;</li><li>&#8220;Bookkeeping, live networking, professional groups.&#8221;</li><li>&#8220;Some other aspects of running a freelance business, for me, are also compiling quotations, sorting invoice and statements in Billings 3 for Mac and continually tidying up my desk!&#8221;</li><li>&#8220;An hour a week on accounts maybe?&#8221;</li></ul><h3>Graphic designers and their income</h3><p>I wondered how our designers were earning their money. Asking about the income source split brought some interesting results.</p><p><strong>What percentage of your annual income do you receive from clients from the country you operate in?</strong><br
/> <img
class="alignnone size-full wp-image-3532" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/country-income.jpg" alt="country income" width="600" height="328" /></p><p>I wanted to know how much our home-based designers worked internationally. It seems despite the global nature of what we do many clients still prefer to employ local designers. Some US-based designers worked only with clients from their home country. However, others had a totally international clientele.</p><p><strong>Roughly how much of your annual income do you receive for something other than client work</strong> (product sales, advertising, affiliate links, etc.)<strong>?</strong><br
/> <img
class="alignnone size-full wp-image-3533" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/other-income.jpg" alt="other income" width="600" height="328" /></p><p>Here I wanted to see how many were employing tactics from <a
href="http://www.amazon.com/gp/product/0307465357?ie=UTF8&#038;tag=graandwebdesl-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=0307465357">The 4-Hour Workweek by Tim Ferriss</a> and earning money while they slept. It seems, though a lot of us have other sources of income, these are still a very small in comparison with client work.</p><p><strong>Roughly how much of your annual income do you receive from your single biggest client?</strong><br
/> <img
class="alignnone size-full wp-image-3534" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/biggest-client.jpg" alt="biggest client" width="600" height="328" /></p><p>According to the <a
href="http://en.wikipedia.org/wiki/Pareto_principle">Pareto Principle</a> or 80:20 rule, you will receive 80% of your income from 20% of your clients. With this in mind the answers here came as no surprise.</p><h3>Graphic designers and their clients</h3><p><strong>How much client work do you outsource to others?</strong><br
/> <img
class="alignnone size-full wp-image-3535" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/outsource.jpg" alt="outsource" width="600" height="328" /></p><p>Graphic designers live on their reputation and can not afford to outsource too much so that the quality of work or personal interaction with the client suffers. I suspect our designers only outsource to companies like <a
href="http://www.anrdoezrs.net/click-4596814-10713612">oDesk</a> and <a
href="http://www.tkqlhce.com/click-4596814-10648152">crowdSPRING</a> when they don&#8217;t have the skills necessary to complete a particular job.</p><p><strong>Over the last year what percentage of income did you receive from clients you had worked for before?</strong><br
/> <img
class="alignnone size-full wp-image-3536" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/old-clients.jpg" alt="old clients" width="600" height="328" /></p><p>Your best clients are your current clients&#8230;</p><p><strong>Over the last year what percentage of income did you receive from recommendations?</strong><br
/> <img
class="alignnone size-full wp-image-3537" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/recommendations.jpg" alt="recommendations" width="600" height="328" /></p><p>Doing a good work results in recommendations. I&#8217;ve seen this again and again.</p><p><strong>Over the last year what percentage of income did you receive from new clients that weren&#8217;t recommended to you from someone or some company?</strong><br
/> <img
class="alignnone size-full wp-image-3538" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/new-clients.jpg" alt="new clients" width="600" height="328" /></p><p>Given that a lot of the designers questioned have only been in their current roles for 1, 2 or 3 years this is a staggering statistic. Only just over 20% of our designers&#8217; income is from new business.</p><p><strong>Where did you get most of those new clients from?</strong><br
/> <img
class="alignnone size-full wp-image-3539" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/getting-new-clients-from.jpg" alt="getting new clients from" width="600" height="328" /></p><p>This is something I get asked again and again – &#8220;how do you get new clients?&#8221; I suspected the website would be the best source but I had some great other answers. There&#8217;s some fantastic advice here:</p><ul><li>&#8220;I get my clients from a combination of cold emailing twice yearly, one print postcard mailed per year, my website, my blog, social media (LinkedIn and Twitter, particularly the latter), and commenting on others&#8217; blogs and on various online forums.&#8221; <a
href="http://www.tianobookdesign.com">Stephen Tiano</a></li><li>&#8220;Cold calling, but to people who are past or present colleagues of current clients in similar fields.&#8221; <a
href="http://www.theartmonkey.com">Lynne Venart</a></li><li>&#8220;Person to person marketing in associations and leads groups.&#8221; <a
href="http://www.bsiw.us">Michael King</a></li><li>&#8220;Through my blog I&#8217;ve made connections with other designers and developers and I receive work from them many times. Some of my best clients have come to me because other designers are too busy and hand off their new contacts to me!&#8221; <a
href="http://creativecurio.com">Lauren Krause</a></li><li>&#8220;Recommendations from friends.&#8221; <a
href="http://www.enrichdesign.us">Kyle Richardson</a></li><li>&#8220;90% of my clients I get from word of mouth referrals. I occasionally get queries for work through my website. I don&#8217;t advertise.&#8221; <a
href="http://www.omegared.co.za">Karen McDade</a></li><li>&#8220;Most of my business comes from referrals and business contacts. I market my design services through networking groups and I do a quartely mail peice to current and potential clients. When I finish a job for a client I ask them if they are happy with the results and the service. If they are, I ask them to keep me in mind for future projects and ask for 2 or 3 names of people I might contact for more work.&#8221; <a
href="http://www.magnumcreativegroup.com">Justin Miller</a></li><li>&#8220;Word of mouth recommendations&#8221; <a
href="http://carmiacronje.blogspot.com">Carmia Cronje</a></li><li>&#8220;I meet most of my clients through attending networking events, or attending classes at my local Small Business Development Center&#8221; <a
href="http://www.anneswansondesign.com">Anne Swanson</a></li><li>&#8220;I get most new clients from my website, with much of new work coming from churches, as my site ranks highly for the term Christian graphic designer in Google. I also produce work directly from client recommendations, too.&#8221; <a
href="http://www.andrewkelsall.com/">Andrew Kelsall</a></li><li>&#8220;I would estimate a roughly even mix of via my website, recommendations and repeat business.&#8221; <a
href="http://www.andrewkeir.com">Andrew Keir</a></li></ul><h3>Thank you</h3><p>A huge thank you to everyone who participated. I learned a lot from this. I know some of the questions were difficult to answer – it&#8217;s hard to guess how much time you spend doing certain tasks in a day, especially when no two days are ever the same. So, heartfelt thanks to the following:</p><p>Lucas Tetrault from <a
href="http://www.phoenixwave.com">Phoenix Wave Portfolio</a><br
/> Lynne Venart from <a
href="http://www.theartmonkey.com">The Art Monkey</a><br
/> Matthew Harpin from <a
href="http://www.brand-design.co.uk">Freelance Web &amp; Logo Design</a><br
/> Michael King from <a
href="http://www.bsiw.us">Black Swan Image Works</a><br
/> Mike Smith from <a
href="http://www.madebyguerrilla.com">GUERRILLA</a><br
/> Randa Clay from <a
href="http://randaclay.com">Randa Clay WordPress Design</a><br
/> Ryan Scherf from <a
href="http://ryanscherf.net">Ryan Scherf</a><br
/> Stephen Tiano from <a
href="http://www.tianobookdesign.com">Freelance book designer, page compositor &amp; layout artist</a><br
/> Derek Kirk from <a
href="http://www.creativeweb-design.com">creative web design</a><br
/> Andrew Keir from <a
href="http://www.andrewkeir.com">Melbourne graphic designer, Andrew Keir</a><br
/> Andrew Kelsall from <a
href="http://www.andrewkelsall.com/">Andrew Kelsall Design</a><br
/> Anne Swanson from <a
href="http://www.anneswansondesign.com">Anne Swanson Graphic Design</a><br
/> Bob Raynor from <a
href="http://raynordesign.net">Bob Raynor &#8211; Graphic Designer</a><br
/> Carmia Cronje from <a
href="http://carmiacronje.blogspot.com">Clementine Creative</a><br
/> Chris Metzner from <a
href="http://www.ChrisMetzner.com">data visualization graphic designer</a><br
/> Craig Wilson from <a
href="http://craigalanwilson.com">Craig Wilson</a><br
/> David Airey from <a
href="http://www.davidairey.com/">David Airey, graphic designer</a><br
/> Douglas Bonneville from <a
href="http://bonfx.com">freelance graphic designer</a><br
/> Hernan Valencia from <a
href="http://theconstructcreative.com">The Construct Creative</a><br
/> John O&#8217;Nolan from <a
href="http://john.onolan.org">John O&#8217;Nolan</a><br
/> Jon Phillips from <a
href="http://spyrestudios.com">SpyreStudios</a><br
/> Justin Miller from <a
href="http://www.magnumcreativegroup.com">Magnum Creative Group</a><br
/> Karen McDade from <a
href="http://www.omegared.co.za">Omega Red</a><br
/> Kyle Richardson from <a
href="http://www.enrichdesign.us">Enrich Design</a><br
/> Lauren Krause from <a
href="http://creativecurio.com">Creative Curio</a><br
/> Liam Swift from <a
href="http://www.attract.uk.com">Attract Love to Your Brand</a></p><h3>More to come</h3><p>That&#8217;s not it! More questions about our designers&#8217; equipment, software, billing, contracting and more great advice to come!</p><h3>What do you think?</h3><p>Are you a graphic designer who runs their own business or thinking of becoming a self-employed work-from-home type? What did you think of this survey? As always, I’d love to hear your thoughts. And, if you enjoyed the article, please consider tweeting or voting for it on your social network of choice!</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/what-designers-do-make-money-find-clients/feed/</wfw:commentRss> <slash:comments>21</slash:comments> </item> <item><title>Graphic Designer&#8217;s Business Survey</title><link>http://robcubbon.com/graphic-designers-business-survey/</link> <comments>http://robcubbon.com/graphic-designers-business-survey/#comments</comments> <pubDate>Mon, 14 Feb 2011 12:43:28 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[design]]></category> <category><![CDATA[graphic design]]></category> <category><![CDATA[questionnaire]]></category> <category><![CDATA[survey]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=3449</guid> <description><![CDATA[<p>I&#8217;ve created a survey about graphic designers who run their own businesses – whether they work at home or have employees, outsource and run much larger companies. There are many design and business sites in the blogosphere. However, design sites tend to focus on tutorials and inspiration whereas there isn&#8217;t a great deal of information [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-3450" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/questions-graphic-designer.jpg" alt="head of man with question marks" width="600" height="320" /></p><p>I&#8217;ve created a survey about graphic designers who run their own businesses – whether they work at home or have employees, outsource and run much larger companies.</p><p>There are many design and business sites in the blogosphere. However, design sites tend to focus on tutorials and inspiration whereas there isn&#8217;t a great deal of information on how to run the business side of things as an independent graphic designer.</p><p>So this survey is about the practicalities, eg. equipment, charging procedures, marketing, income sources, etc., asking questions such as:</p><ul><li>How much client work do you outsource to others?</li><li>Do you work from home or elsewhere?</li><li>Roughly how much of your annual income do you receive from your single biggest client?</li><li>Do you have contracts with your clients?</li></ul><p><img
class="alignnone size-full wp-image-3457" src="http://cdn.robcubbon.com/wp-content/uploads/2011/02/questionnaire2.jpg" alt="questionnaire" width="600" height="100" /></p><p>The questionnaire took 5-10 minutes to fill out.</p><p>It was great to get the feedback from everyone out there.</p><p>I have had a great response from people I&#8217;ve sent it to (including some really great designers that I admire very much) as well as from others who simply wanted to help.</p><p>The results are in my e-book <a
href="http://robcubbon.com/running-a-web-design-business/">Running a Web Design Business</a>.</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/graphic-designers-business-survey/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>What you need to start a graphic design business</title><link>http://robcubbon.com/need-start-graphic-design-business/</link> <comments>http://robcubbon.com/need-start-graphic-design-business/#comments</comments> <pubDate>Mon, 29 Nov 2010 12:19:33 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[design]]></category> <category><![CDATA[graphic]]></category> <category><![CDATA[graphic designer]]></category> <category><![CDATA[Illustrator]]></category> <category><![CDATA[imac]]></category> <category><![CDATA[InDesign]]></category> <category><![CDATA[macbook]]></category> <category><![CDATA[Photoshop]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=3046</guid> <description><![CDATA[<p>It pains me to think of the $3000 I spent on a Mac Performa 6400 complete with a huge monitor and in-built 28K dial-up modem in the mid-90s. The machine chugged along like an aging donkey and the information super-highway felt more like a traffic jam. I wish I was starting now with readily available [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-3047" src="http://cdn.robcubbon.com/wp-content/uploads/2010/11/home-working.jpg" alt="man working from home with laptop" width="600" height="400" /></p><p>It pains me to think of the $3000 I spent on a Mac Performa 6400 complete with a huge monitor and in-built 28K dial-up modem in the mid-90s. The machine chugged along like an aging donkey and the information super-highway felt more like a traffic jam. I wish I was starting now with readily available broadband connections and quality computers at affordable prices!</p><p>The most important thing when setting up a home business is to <strong>not spend money</strong>. Try, wherever possible, to utilize the equipment and communication infrastructure you already have rather than rushing out to the stores. We&#8217;re trying to get the money coming in here, not the other way round!</p><h3>Computer</h3><p>Whether you are a Mac or PC person, you will need a fairly decent computer with large disc space, fast processor and bags of RAM. If I was starting out today I would buy something like an <a
href="http://www.amazon.com/gp/product/B002QQ8IO6?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B002QQ8IO6"><strong>Apple iMac 21.5-Inch Desktop</strong></a> for around <strong>$1140/£730</strong>. With a 3.06 GHz Intel i3 dual-core processor and 4GB of RAM you&#8217;ll have all the computing power and speed needed to get you going and 500GB hard drive will be more than enough to store your work at first.</p><p
style="text-align: center;"><a
href="http://www.amazon.com/gp/product/B002QQ8IO6?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B002QQ8IO6"><img
class="size-full wp-image-3048 aligncenter" style="border: none;" src="http://cdn.robcubbon.com/wp-content/uploads/2010/11/Apple-iMac-21.5-Inch-Desktop.jpg" alt="Apple iMac 21.5 Inch Desktop" width="400" height="316" /></a></p><h3>Software</h3><p>In order to do some design work, you&#8217;re going to have to get some software. There&#8217;s a lot of great <a
href="http://robcubbon.com/free-open-source-alternatives-to-photoshop-indesign-and-illustrator">free and open source tools</a> out there that in some cases do the job as well as the expensive stuff. But, for graphics, unfortunately, you pretty much have to get the Adobe Creative Suite.</p><p><a
href="http://www.amazon.com/gp/product/B003B328TE?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B003B328TE"><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/11/adobe-cs-5.jpg" alt="adobe cs5" title="" width="100" height="150" class="alignnone size-full wp-image-3059" style="border:none;" /></a></p><p>You have four options of Adobe graphics packages:</p><ul><li><a
href="http://www.amazon.com/gp/product/B003B32A1A?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B003B32A1A"><strong>Adobe Creative Suite 5 Design Standard</strong></a> <strong>$1,239.00</strong> &#8211; Photoshop, Illustrator, InDesign and Acrobat Pro</li><li><a
href="http://www.amazon.com/gp/product/B003B328KI?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B003B328KI"><strong>Adobe Creative Suite 5 Web Premium</strong></a> <strong>$1,613.18</strong> &#8211; Photoshop Extended, Illustrator, Acrobat Pro, Flash, Dreamweaver, Fireworks, Contribute</li><li><a
href="http://www.amazon.com/gp/product/B003B329U2?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B003B329U2"><strong>Adobe Creative Suite 5 Design Premium</strong></a> <strong>$1,774.96</strong> &#8211; Photoshop Extended, Illustrator, InDesign, Acrobat Pro, Flash, Dreamweaver and Fireworks</li><li><a
href="http://www.amazon.com/gp/product/B003B328TE?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B003B328TE"><strong>Adobe Creative Suite 5 Master Collection</strong></a> <strong>$2,448.99</strong> &#8211; Photoshop Extended, Illustrator, InDesign, Acrobat Pro, Flash, Dreamweaver, Fireworks, and video editing products such as Premier, After Effects, Soundbooth</li></ul><p>The good news is, you can probably run a graphics business quite well with the cheapest option: <a
href="http://www.amazon.com/gp/product/B003B32A1A?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B003B32A1A">Adobe Creative Suite 5 Design Standard</a>. The 3 applications I use the most are Photoshop, Illustrator and InDesign. Dreamweaver is not essential for creating websites (although, it does speed things up) you can use a text editor and an FTP client. You can advise your clients against using Flash, but, I&#8217;m afraid I find I still need it from time to time.</p><p>If the above purchases are too much for you, you can look on Ebay for a computer with CS5 already installed.</p><p><a
href="http://www.amazon.com/gp/product/B003YCOJA8?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B003YCOJA8"><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/11/office-for-mac.jpg" alt="office for mac" title="" width="100" height="190" class="alignnone size-full wp-image-3060" style="border:none;" /></a></p><p>You may already have <a
href="http://www.amazon.com/gp/product/B003YCOJA8?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B003YCOJA8">Microsoft Office</a> but, if not, don&#8217;t rush out and buy it. See how you get on with <a
href="http://www.openoffice.org/">OpenOffice</a> first.</p><p><a
href="http://www.amazon.com/gp/product/B0041A82OG?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B0041A82OG"><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/11/suitcase-fusion-3.jpg" alt="suitcase fusion 3" title="" width="100" height="165" class="alignnone size-full wp-image-3061" style="border: none;" /></a></p><p>After you&#8217;ve had a few jobs you may want to purchase a font management program. I use <a
href="http://www.amazon.com/gp/product/B0041A82OG?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B0041A82OG">Suitcase Fusion3</a>.</p><p>If you have too many fonts open that you are using for different projects it can cause decreased performance in your machine. Font management software will open and close fonts for you optimizing your computer&#8217;s speed.</p><p>As with everything else, don&#8217;t go and purchase a load of fonts first. Wait until the work comes in first and then, if you can&#8217;t find any <a
href="http://www.smashingmagazine.com/2010/01/18/25-new-high-quality-free-fonts/">good free fonts</a>, purchase a few of your tried and tested favorites.</p><h3>Other hardware</h3><p>Further down the line, you&#8217;ll have your hard drive stuffed with client work, software and not to mention your own personal photos and movies. What happens if something should go wrong with the machine. You need back up and a portable alternative.</p><p>The cost of external discs keeps going down and down. Here&#8217;s a 1TB (yes, that&#8217;s 1000GB) <a
href="http://www.amazon.com/gp/product/B002QEBMB4?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B002QEBMB4">Western Digital USB external drive</a> for only $67.00. And to think I spent over £100 on a zip drive once &#8211; and probably another £10 for the 100MB zip disc. If you don&#8217;t know what a zip disc is, don&#8217;t worry, you don&#8217;t need to know!</p><p>If you run a Mac, all you have to do is to set up Time Machine and all your work will be backed up so that if you deleted something a few days ago you can ride the cyber HG Wells machine back to get it.</p><p
style="text-align: center;"><a
href="http://www.amazon.com/gp/product/B0047DVW30?ie=UTF8&#038;tag=graandwebdesl-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B0047DVW30"><img
class="size-full wp-image-3057 aligncenter" src="http://cdn.robcubbon.com/wp-content/uploads/2010/11/macbook-air.jpg" alt="macbook air 13-inch laptop" width="400" height="301" style="border:none;" /></a></p><p>Once you get more clients and more money, you will probably want to buy a laptop so you can work when out and about. There&#8217;s nothing like working on a <a
href="http://www.amazon.com/gp/product/B0047DVW30?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B0047DVW30">MacBook Air</a> whilst sipping coffee and watching the world hurry by.</p><h3>Other things to think about</h3><p>I will be returning to the subject of setting up a home office soon. I have written an article with more general <a
href="http://robcubbon.com/freelance-graphic-design-advice">advice about rates, clients, accounting and networking for graphic designers</a>. And, the most important thing, I have also written about <a
href="http://robcubbon.com/how-to-get-freelance-graphic-design-jobs">how to get clients</a> and <a
href="http://robcubbon.com/marketing-small-business-website-social-media">how to market your business&#8217;s website</a>.</p><p>Of course there are always things to think about. But I am a great believer in just starting. Accountants can be sorted out later; the company name and stationery (if any) can be sorted out later; the business plan can be thought about and sorted out later. If you&#8217;ve got a full time job or if you&#8217;ve just been made redundant &#8211; now is the best time to start a new business and designing at home is a brilliant way to make money. You only need software, a computer and a broadband connection in order to undercut the big boys and provide grateful clients from all over the world with your fresh and original ideas.</p><p>Everyday you&#8217;ll wake up excited about the day ahead never knowing what it will bring. Once you start working, one job will lead to more jobs and pretty soon it&#8217;ll be a full-time occupation. I was working for other people during the day and then working on my own business during the evenings and weekends for about a year and a half.</p><p>Now I&#8217;m running the design business full time and I absolutely love it! Would you like to be a web or graphic designer and work from home? You can. Download my e-book about <a
href="http://robcubbon.com/running-a-web-design-business">Running A Web Design Business</a> now!</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/need-start-graphic-design-business/feed/</wfw:commentRss> <slash:comments>17</slash:comments> </item> <item><title>For print designers who want to learn web design</title><link>http://robcubbon.com/for-print-designers-who-want-to-learn-web-design/</link> <comments>http://robcubbon.com/for-print-designers-who-want-to-learn-web-design/#comments</comments> <pubDate>Mon, 20 Sep 2010 09:40:55 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[design]]></category> <category><![CDATA[fonts]]></category> <category><![CDATA[print design]]></category> <category><![CDATA[rgb]]></category> <category><![CDATA[web design]]></category> <category><![CDATA[web fonts]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2563</guid> <description><![CDATA[<p>6 years ago I was typesetting company reports, trying not to look at the clock to see how soon I could go home. Now I work from home and every time I look at the clock I marvel at how quickly time passes! I have managed to cross-over from being a print designer and artworker [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/09/print-designer-learning-web-design-4.jpg" alt="print designer learning web design" title="" width="600" height="375" class="alignnone size-full wp-image-2617" /></p><p>6 years ago I was typesetting company reports, trying not to look at the clock to see how soon I could go home. Now I work from home and every time I look at the clock I marvel at how quickly time passes! I have managed to cross-over from being a print designer and artworker to running an online design and marketing business.</p><p>It was difficult at first, putting my ruler and pantone swatches against the screen and thinking that JavaScript was some sort of Indonesian font, but I realized that some principles of design remain constant through print and web and it&#8217;s not as difficult as it looks.</p><p><img
class="alignnone size-full wp-image-2582" src="http://cdn.robcubbon.com/wp-content/uploads/2010/09/code.jpg" alt="code" width="100" height="83" /></p><h3>Here are some of the secrets of learning web design</h3><p>First of all, don&#8217;t make the same mistake I did and use Dreamweaver as a WYSIWYG design tool like QuarkXpress or InDesign! You&#8217;re going to have to <a
href="http://robcubbon.com/why-web-designers-should-learn-code ">learn some code</a>.</p><p>HTML, the mark-up language that is the bare bones of all web pages, can be mastered in only a few hours. It&#8217;s very probable you already know some of it. CSS (which can be included in HTML files but is ideally a separate file) will take longer to learn but is necessary for the designer to know.</p><p>The best way to learn the various technologies associated with web design is to find web sites that you like and view the code to see how it&#8217;s done.</p><ul><li>In Firefox go View &gt; Page Source</li><li>In Google Chrome View &gt; Developer &gt; View Source</li><li>In Internet Explorer go Page &gt; View Source</li></ul><p>Within the HTML you will see absolute and relative paths to other files, for example, the style sheet may be <code>http://www.website.com/css/styles.css</code> or an image may be <code>http://www.website.com/image/company-logo.jpg</code>. Follow these paths to find everything you can about the different elements of a website. This will help you to make them yourself.</p><p>Another  techniques that will help you learn HTML and CSS is viewing the Developer Tools in Chrome or Internet Explorer and in Firefox using the <a
href="http://getfirebug.com/">Firebug</a> extension. While in Developer Tools or the Firebug panel, select on the cursor (an arrow or a magnifying glass) and with that click on a web page element and the code affecting it will show up.</p><p>You can make HTML and CSS changes and see them live on the web page. These tools will also show you which CSS selectors affect an element and which are overrided.</p><p><img
class="alignnone size-full wp-image-2583" src="http://cdn.robcubbon.com/wp-content/uploads/2010/09/images-color.jpg" alt="images color" width="100" height="83" /></p><h3>Images should be 72 dpi and in RGB not CMYK</h3><p>Most computer monitors display at 72 pixels per inch – so a 72 pixels high image will be roughly one inch tall. In Photoshop, all web images should be 72 dpi and in the RGB color mode (unless Grayscale). Images viewed at 100% in Photoshop will be the same size on the web page. However the colors will all look different from monitor to monitor. Use the Color Picker in Photoshop to get the hexadecimal values of colors.</p><p>Use File &gt; Save for Web &amp; Devices… or Edit &gt; Copy Merged to export your web images. For file types, use:</p><ul><li>GIFs for graphics (maybe only a few tones of the same color)</li><li>JPGs for normal photographs (like a headshot)</li><li>PNGs if you want transparency (GIFs have transparency but only PNGs offer degrees of transparency – but don&#8217;t start dancing a jig of delight yet, you&#8217;ll need a <a
href="http://www.twinhelix.com/css/iepngfix/">hack</a> to get them to work in Internet Explorer 5.5 and 6)</li></ul><p>Think of space in terms of pixels and percentages not millimetres and inches! The content area of a website shouldn&#8217;t be much wider than about 1000 pixels. An HTML email really shouldn&#8217;t be wider than 600 pixels.</p><p>When designing or laying out web pages in Photoshop, try to use as many Vector Smart Objects as possible as they can be scaled, skewed and colored and will never lose their quality.</p><p><img
class="alignnone size-full wp-image-2584" src="http://cdn.robcubbon.com/wp-content/uploads/2010/09/type.jpg" alt="type" width="100" height="83" /></p><h3>Think of type in terms of pixels, percentages and ems not points</h3><p>For text you can use only a few core web fonts. There are ways of getting around this but that&#8217;s for another day. Maybe you&#8217;re only OK with the following:</p><ul><li>Arial</li><li>Avant Garde</li><li>Courier</li><li>Georgia</li><li>Times New Roman</li><li>Trebuchet MS</li><li>Verdana</li></ul><p>But you can choose fonts to use if the one you want is unavailable. So a CSS declaration such as <code>font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;</code> means: &#8220;if the computer reading this webpage doesn&#8217;t have a lovely Helvetica Neue, please use an ordinary Helvetica, otherwise Arial, and if they don&#8217;t have any Helveticas or Arials then just use any old sans-serif font – there&#8217;s no hope for them!&#8221;</p><p>No need to bother about hyphenation, widows, orphans, legs of copy – they don&#8217;t exist here. This is the web, baby! (If you really want to get rid of a widow – on a heading perhaps – use a non-breaking space (<code>&amp;nbsp;</code>) between the last two words.)</p><p><img
class="alignnone size-full wp-image-2588" src="http://cdn.robcubbon.com/wp-content/uploads/2010/09/resources.jpg" alt="resources" width="100" height="83" /></p><h3>Resources</h3><p>The best way to learn web design is to &#8230; design web pages. Challenge yourself – each time you create a new website. Otherwise you can:</p><ul><li>Try Google (obvious, I know, but &#8230; )</li><li>Ask a question at <a
href="http://www.sitepoint.com/forums/">SitePoint</a> or <a
href="http://forums.digitalpoint.com/">Digital Point</a> forums. If you have researched the query adequately and explained it simply, then 99 times out of 100 someone will provide you with a solution. There are many other excellent design forums as well that can be a great help: <a
href="http://www.estetica-design-forum.com/">Estetica Design Forum</a>, <a
href="http://www.designerstalk.com/forums/">DesignersTalk</a>, <a
href="http://www.webdesignerforum.co.uk/">Web Designer Forum</a>, to name but a few.  (If you&#8217;re interested in link juice Digital Point is dofollow for forum signatures!)</li><li>Use online browser rendering services like <a
href="https://browserlab.adobe.com/en-us/index.html">Adobe&#8217;s BrowserLab</a> and <a
href="http://browsershots.org/">BrowserShots</a>. BrowserShots has more browser choice but it&#8217;s painfully slow. Use <a
href="http://www.my-debugbar.com/wiki/IETester/HomePage">IETester</a> on a PC to test different versions of Internet Explorer – it&#8217;s crashy but it does the job.</li><li>Use these sites to validate the <a
href="http://validator.w3.org/">HTML</a> and <a
href="http://jigsaw.w3.org/css-validator/">CSS</a></li><li>Read books. I found this book very useful: <a
href="http://www.amazon.com/gp/product/0980455278?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0980455278">Build Your Own Web Site The Right Way Using HTML &amp; CSS, 2nd Edition</a> by Ian Lloyd</li><li>Get up, make a cup of tea, tear your hair out and shout expletives – it won&#8217;t make any difference but it might make you feel better</li></ul><p>Above all, don&#8217;t worry! Web design is sometime fiendishly tricky but strangely satisfying. And, if I can do it; anyone can.</p><h3>Conclusion</h3><p>Are you a convert from print design who has mastered the art of creating websites? What were the most confusing aspects of web design initially? Or, if you are just starting out, let me know if this has helped you at all.</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/for-print-designers-who-want-to-learn-web-design/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>Free open source alternatives to Photoshop, InDesign and Illustrator</title><link>http://robcubbon.com/free-open-source-alternatives-to-photoshop-indesign-and-illustrator/</link> <comments>http://robcubbon.com/free-open-source-alternatives-to-photoshop-indesign-and-illustrator/#comments</comments> <pubDate>Tue, 14 Sep 2010 09:47:07 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Illustrator]]></category> <category><![CDATA[InDesign]]></category> <category><![CDATA[Photoshop]]></category> <category><![CDATA[design]]></category> <category><![CDATA[graphic]]></category> <category><![CDATA[open source]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2540</guid> <description><![CDATA[<p>A guest post from Louise Baker of Zen College Life For web designers, developers and amateur creative types that work with a lot of graphics and image manipulation, the decision of which software to use is an important one. While Adobe Photoshop and its related Creative Suite programs are well respected throughout the world, open [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-2552" src="http://cdn.robcubbon.com/wp-content/uploads/2010/09/neon-open-sign.jpg" alt="neon open sign" width="600" height="298" /></p><blockquote><p
style="text-align: center;">A guest post from <strong>Louise Baker</strong> of <strong>Zen College Life</strong></p></blockquote><p>For web designers, developers and amateur creative types that work with a lot of graphics and image manipulation, the decision of which software to use is an important one. While Adobe Photoshop and its related Creative Suite programs are well respected throughout the world, open source software is making some big gains in terms of popularity and acceptance. Each graphics software release continues to push the envelop of what&#8217;s possible in terms of design. Here&#8217;s a quick comparison between the proprietary and free, open source software available for graphic designers and web developers.</p><p><img
class="alignnone size-full wp-image-2541" style="padding-top: 15px;" src="http://cdn.robcubbon.com/wp-content/uploads/2010/09/photoshop-vs-gimp-75.jpg" alt="photoshop vs gimp " width="75" height="75" /></p><h3>Photoshop vs. GIMP</h3><p>As the ultimate Swiss Army Knife of image manipulation and layout creation, the latest version of <a
href="http://www.adobe.com/products/photoshop/photoshop/">Adobe Photoshop</a> offers an impressive array of capabilities for almost every need. Photoshop handles paths, layers, color saturation and transparency impeccably. It&#8217;s easily the most polished raster graphics editor available. It&#8217;s also fairly expensive, retailing at a price of $699. It&#8217;s main competitor is the GNU Image Manipulation Program, also commonly referred to simply as <a
href="http://www.gimp.org/">GIMP</a>. GIMP is free, stable and supports a rich ecosystem of handy plugins, brushes and tools to extend the functionality of the basic program, but illustrators who are long used to Photoshop may find GIMP too dissimilar to use effectively.</p><p><img
class="alignnone size-full wp-image-2542" style="padding-top: 15px;" src="http://cdn.robcubbon.com/wp-content/uploads/2010/09/indesign-vs-scibus-75.jpg" alt="indesign vs scibus" width="75" height="75" /></p><h3>InDesign vs. Scribus</h3><p>When it comes to desktop publishing applications, the <a
href="http://www.adobe.com/products/indesign/index.html">Adobe InDesign</a> package is the go-to program for crafting newsletters, posters, promotional fliers and e-books. It allows even the most inexperienced user the ability to quickly and easily set layouts and play around with designs. <a
href="http://www.scribus.net/">Scribus</a> is the closest equivalent to InDesign in terms of ease of use and functionality. Boasting many of InDesign&#8217;s main features and with a similarly uncomplicated user interface, Scribus is available as a free download for Mac OS X, Windows and Linux. The major drawback is its inability to work with the file formats used by Adobe&#8217;s InDesign.</p><p><img
class="alignnone size-full wp-image-2543" style="padding-top: 15px;" src="http://cdn.robcubbon.com/wp-content/uploads/2010/09/illustrator-vs-inkscape.jpg" alt="illustrator vs inkscape" width="75" height="75" /></p><h3>Illustrator vs. Inkscape</h3><p>Finally, there&#8217;s the matter of vector graphics editing. <a
href="http://www.adobe.com/products/illustrator/">Adobe Illustrator</a> is one of the oldest vector graphics tools on the market. As such, it&#8217;s a highly stable and powerful way to work with icons, logos and any other type of 3D graphics that are beyond the capabilities of Photoshop or GIMP. Popular with Linux users, <a
href="http://inkscape.org/">Inkscape</a> has many of the same capabilities as Adobe Illustrator when it comes to vector graphics manipulation. Though lacking some of the refinement of Illustrator, it consistently produces smaller, lighter SVG files without a lot of &#8220;garbage code&#8221; and bloat.</p><h3>Conclusion</h3><p>Though pricey, using Adobe software has some key benefits. The Adobe Creative Suite is the industry standard for graphic design at present and will remain dominant for the foreseeable future. As such, there are many more tutorials and guides available online for beginners. Open source software, though free, has a steeper learning curve and can be challenging for the inexperienced. For many, the established community of developers using Adobe software and the support system they provide is enough of a reason to choose Creative Suite tools. For more advanced users, open source software is an appealing and low-cost alternative.</p><blockquote><p><strong>Louise Baker</strong> is a freelance blogger and journalist who writes for Zen College Life, the directory of higher education, distance learning, and <a
href="http://www.zencollegelife.com">online schools</a>. She most recently wrote about the <a
href="http://www.zencollegelife.com/the-top-10-best-online-schools/">top online colleges</a>.</p></blockquote><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/free-open-source-alternatives-to-photoshop-indesign-and-illustrator/feed/</wfw:commentRss> <slash:comments>18</slash:comments> </item> <item><title>Designers, how to avoid client disasters!</title><link>http://robcubbon.com/designers-how-to-avoid-client-disasters/</link> <comments>http://robcubbon.com/designers-how-to-avoid-client-disasters/#comments</comments> <pubDate>Mon, 12 Jul 2010 10:58:28 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[brief]]></category> <category><![CDATA[client]]></category> <category><![CDATA[design]]></category> <category><![CDATA[freelance]]></category> <category><![CDATA[graphic]]></category> <category><![CDATA[graphic designer]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2310</guid> <description><![CDATA[<p>There is a game in this industry: the trade off between graphic designer and client. I have heard this expression in large design agencies many times: &#8220;this would be a great job if it wasn&#8217;t for clients!&#8221; I disagree, I think it&#8217;s a great job period. If you don&#8217;t like your clients, get out of [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
class="alignnone size-full wp-image-2311" src="http://cdn.robcubbon.com/wp-content/uploads/2010/07/two-businessmen-shaking-hands.jpg" alt="two businessmen shaking hands" width="600" height="233" /></p><p>There is a game in this industry: the trade off between graphic designer and client. I have heard this expression in large design agencies many times: &#8220;this would be a great job if it wasn&#8217;t for clients!&#8221; I disagree, I think it&#8217;s a great job period.</p><p>If you don&#8217;t like your clients, get out of the industry!</p><h3>How can there be anything wrong with clients?</h3><p>Imagine the experience of having lovingly labored over an exquisite piece of design, only to have the client&#8217;s mother suggest a different color because it matches her curtains. The way you deal with these challenges will dictate the success of your business.</p><p>A disagreement with a client is an opportunity.</p><h3>Never, ever get angry</h3><p>I&#8217;m not saying, don&#8217;t show your anger in front of anyone. I&#8217;m actually saying, don&#8217;t be angry! Anger saps your energy and is unproductive. If you feel like getting angry with a client, don&#8217;t. Move on to something else, ask a third party for advice, sleep on it and see how you feel the next day.</p><p>There are a few classic problems. Clients will typically want the product shot to be as large as possible whereas the graphic designer will usually want more negative space around the image to balance the page and draw the customer in. Clients may also want to include as much product information as possible to persuade the customer of it&#8217;s merits, whereas graphic designers will usually seek to de-clutter wherever possible and condense the information to only a few unique selling points.</p><p>How do you square the circle between a client’s instinct to hard sell and the designer’s need to simplify the narrative to the end user?</p><p>Do you re-design as the client says and hope that the result will prompt a swift change of mind? Or do you explain as best you can the reasons why you think the current design works? Or, probably your best course of action, do you do both? Reconsider the design, listen to the client, introduce some of the suggested amendments whilst keeping the clarity of the original vision. The answer comes with communication.</p><p>If the client doesn&#8217;t agree with you, don&#8217;t take it personally. The client has more experience in the particular market and probably knows best.</p><p>The difference of opinions will give you a fascinating insight into the client&#8217;s world.</p><h3>There&#8217;s no such thing as bad clients</h3><p>There are only good clients and ex-clients. If you have a client that is a real pain to work with then that client is going to cost you money. So, you politely and unequivocally tell them to work with someone else.</p><p>But I never have any trouble with my clients. I really, really like them! I actually find it amazing that people phone me or email me and offer me money for what I do. The buzz I feel doesn&#8217;t diminish as time passes.</p><p>If you have trouble in this area I would suggest you start liking your clients. Become interested in their industry. So they sell widgets. Find out about their widgets. Ask them how the widget industry is at this time of year. Ask about their life, their family, their kids. Don&#8217;t force it. But ask and talk about them because you want to.</p><p>Otherwise, here&#8217;s some more specific advice about how to handle clients from my perspective as a <strong>freelance graphic designer</strong>:</p><h3>How to avoid pitfalls</h3><ol><li>I always have in writing exactly the nature of the job, the agreed price and, very importantly, the amount of design stages – so there’s a clear end in sight.</li><li>Many designers will say a contract is 100% necessary every time. Personally, when the client is a large enough organization based in London, UK, where I am I would never bother with contracts. If the client is an individual from overseas I will insist on a contract or half the money upfront. This is what experience has taught me.</li><li>If someone phones up and says &#8220;I wanna build this great site, yeah, like Facebook only better like, with all sorts of stuff&#8221;, politely to ask them to put all the available content and intended functionality in an email and that will get rid of 99% of all time-wasters. If someone is asking for a new website or an important piece of marketing to be put together it is essential that they are able to put something about the ideas, the market or the object of the project in writing. And, the wonderful nature of copying and pasting will mean less typos!</li><li>Generally clients who just want to natter for ages on the phone aren&#8217;t the ones you want.</li><li>Try to spend as little time with clients as possible. The more conversation about a brief, the more confusion. If, while working on a brief, you find an area of uncertainly, don&#8217;t immediately reach for the phone to bother the client. See if you can discover your own solution to the problem or mention it while you are showing the next design stage. This way the client sees progress before potential problems.</li><li>Read the brief, read the brief, read the brief. Take notes if the brief is over the phone. But, if the brief is written down, read it again and again.</li><li>Use your network. Email trusted colleagues, post in forums, even phone a friend when the going gets tough and see what they say about the client&#8217;s requests. You may find that they&#8217;re not as strange as you think.</li><li>Never say something is difficult.</li><li>If a client asks for extra work or less money because of a promise of more work or money in the future, politely decline. Tell them &#8220;my experience of this fast-moving and fickle industry has taught me to take care of the present as tomorrow never knows.&#8221;</li></ol><h3>Conclusion</h3><p>Generally, I think it&#8217;s all about attitude. If you genuinely like your clients, are interested in what they are trying to do and don&#8217;t think you&#8217;re right all the time then, I think, you will have successful relationships with them. Otherwise, resign yourself to a professional lifetime of discontent!</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/designers-how-to-avoid-client-disasters/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Teach yourself graphic design</title><link>http://robcubbon.com/teach-yourself-graphic-design/</link> <comments>http://robcubbon.com/teach-yourself-graphic-design/#comments</comments> <pubDate>Mon, 05 Jul 2010 09:52:04 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[client]]></category> <category><![CDATA[design]]></category> <category><![CDATA[graphic]]></category> <category><![CDATA[graphic designer]]></category> <category><![CDATA[negotiation]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2284</guid> <description><![CDATA[<p>This article comes with a warning: easily offended graphic designers please do not read on! Graphic design is not rocket science, nor does it depend on artistic talent – it just takes a lot of practice. Some designers love to say that graphic design is a God-given talent that only a select few special people [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/07/graphic-design-blackboard.jpg" alt="graphic design written on a blackboard in blue" title="" width="600" height="345" class="alignnone size-full wp-image-2285" /></p><p>This article comes with a warning: <strong>easily offended graphic designers please do not read on!</strong></p><p>Graphic design is not rocket science, nor does it depend on artistic talent – it just takes a lot of practice.</p><p>Some designers love to say that graphic design is a God-given talent that only a select few special people can have. Others will say that you also need an art college education. I say you need time and application – something we all have.</p><p>They are very angry about people who, with some knowledge of graphics programs and web promotion, can advertise themselves and do business as web designers without any training. I&#8217;m not. I say more power to them.</p><p>So what if some developers with limited design experience make some dreadful websites? They are only learning from mistakes that other &#8220;designers&#8221; did invisibly in college.</p><p>Let&#8217;s start with a definition:</p><h3>What is graphic design?</h3><p>Graphic design is usually described as visual communication of graphic elements and text to represent an idea or concept. A graphic designer improves the conversation between the client and the customers. A person who can combine the left brain thinking of the corporate world with right brain creativity.</p><p>So maybe somebody that is tremendously talented in the creative arts will be best suited to becoming an artist rather than a graphic designer.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/07/communication-compromise.jpg" alt="two men talking with a city backdrop" title="" width="600" height="187" class="alignnone size-full wp-image-2286" /></p><h3>Compromise and communication</h3><p>Some graphic designers continuously complain that their clients don&#8217;t appreciate their designs. A good graphic designer will listen to the client in order to understand the market.</p><p>There may be differences between the designer and the client about how to  communicate the message. This is where experience comes to the fore: How do you square the circle between a client&#8217;s instinct to hard sell and the designer&#8217;s need to simplify the narrative to the end user? No amount of talent nor hours in the classroom is going to help you with this one.</p><h3>So, how do you learn graphic design?</h3><p>Just do it!</p><p>I have laid out <a
href="http://robcubbon.com/what-you-need-to-be-a-freelance-graphic-designer">what you need to be a graphic designer</a> in terms of software, hardware and resources. But the most important thing is yourself and your network.</p><p>You have your family, friends, colleagues, and, of course nowadays, an online army of people who can help you in forums, groups and social media. Show your work to the world and invite feedback (a thick skin is needed). Ask people how to do things. See what others are doing. Watch. Learn. Adapt. Above all else, keep an open mind.</p><h3>Conclusion</h3><p>There is a tendency for some old school designers to sit back, congratulating themselves on their god-given talent which impedes their development in the newest areas of the industry and damages their relationships with clients.</p><p>Design doesn&#8217;t sit still. There are new areas of expression, new trends and new designers coming along everyday. People without a design background can learn design and find new ways of expression. I believe this has happened in the last few years with web design standards being set by people with all sorts of backgrounds – and all sorts of talents.</p><p>I would never discourage anyone from becoming a designer due to a perceived lack of &#8220;talent&#8221;. Who defines the word &#8220;talent&#8221; in design? Specifically the people who will benefit from the exclusivity of the profession. And what are you referring to when you say talent? The talent of dealing with clients? The talent to understand a brief? The artistic talent? This term is so subjective that an attempt to define it only hinders creativity.</p><p>So, don&#8217;t worry about your talent – worry about getting work!</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/teach-yourself-graphic-design/feed/</wfw:commentRss> <slash:comments>35</slash:comments> </item> <item><title>What you need to be a freelance graphic designer</title><link>http://robcubbon.com/what-you-need-to-be-a-freelance-graphic-designer/</link> <comments>http://robcubbon.com/what-you-need-to-be-a-freelance-graphic-designer/#comments</comments> <pubDate>Mon, 28 Jun 2010 13:49:14 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Freelancing]]></category> <category><![CDATA[adobe]]></category> <category><![CDATA[clients]]></category> <category><![CDATA[fonts]]></category> <category><![CDATA[freelance graphic designer]]></category> <category><![CDATA[freelancer]]></category> <category><![CDATA[hardware]]></category> <category><![CDATA[self employment]]></category> <category><![CDATA[software]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2250</guid> <description><![CDATA[<p>I wasn&#8217;t always a freelance graphic designer. I used to teach English to Brazilian businessmen but that&#8217;s another story. I started by working for newspapers and magazines so my background is in print. By a mixture of application and good fortune I taught myself how to create usable, aesthetic, standards-compliant websites and discovered how to [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/different-coloured-crayons.jpg" alt="different coloured crayons"  width="600" height="250" class="alignnone size-full wp-image-2253" /></p><p>I wasn&#8217;t always a <strong>freelance graphic designer</strong>. I used to teach English to Brazilian businessmen but that&#8217;s another story. I started by working for newspapers and magazines so my background is in print. By a mixture of application and good fortune I taught myself how to create usable, aesthetic, standards-compliant websites and discovered how to get visitors to them by running this blog. So I&#8217;m lucky to be able to offer a large range of services to my many amazing clients.</p><p>I&#8217;m also lucky that commuting into work for somebody else is a distant memory for me. But I distinctly remember an aura of elitism that existed around senior designers when I was starting out. Maybe it&#8217;s because I never went to design school but I passionately believe that anyone can do this (or anything) if they want. Here is what you need to have this fantastic career:<br
/> <img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/adobe-creative-suite.jpg" alt="adobe creative suite" title="" width="90" height="86" class="alignnone size-full wp-image-2259" style="padding-top: 20px;"/></p><h3>Proprietary Software</h3><p>Adobe CS is the only proprietary software you&#8217;ll need. Of this suite of programs I find Photoshop, Illustrator and InDesign are the ones you really need to get to grips with. Illustrator for vectors, Photoshop for photos, effects and graphics and InDesign for long documents. If you&#8217;re only interested in web design, you can scrub InDesign from the list. There are open source graphics packages such as Gimp but I would find things very difficult without Creative Suite.<br
/> <img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/cyberduck-icon.jpg" alt="cyberduck icon" title="" width="90" height="86" class="alignnone size-full wp-image-2260"  style="padding-top: 20px;"/></p><h3>Free Software</h3><p>You will need software for just about everything. The good news is that most of it is available for free. I have just been featured <a
href="http://essentialkeystrokes.com/">Char Polanosky</a>&#8216;s blog detailing my <a
href="http://essentialkeystrokes.com/essential-tools-featuring-web-designer-rob-cubbon-2/">essential tools</a>.<br
/> <img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/imac.jpg" alt="imac" title="" width="90" height="86" class="alignnone size-full wp-image-2261" style="padding-top: 20px;" /></p><h3>Hardware</h3><p>I have an iMac at home and a Macbook for travel. You don&#8217;t need to go down the Mac route but it was what I started with so I&#8217;m hooked now. You will need a fairly powerful computer with a decent sized screen. You should also have external drives and a back up for when it all goes horribly wrong.<br
/> <img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/fonts.jpg" alt="do not use comic sans written in different fonts" title="" width="90" height="86" class="alignnone size-full wp-image-2262"  style="padding-top: 20px;"/></p><h3>Fonts</h3><p>All designers need a knowledge of typefaces. But take it nice and slow. Don&#8217;t rush out and buy Helvetica Neue or download a million free fonts. Continuously ask yourself when you see design work whether or not the font works with it and why. There are some fantastic new free fonts out there but you will need several weights of the classics.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/camera.jpg" alt="camera" title="" width="90" height="86" class="alignnone size-full wp-image-2263" style="padding-top: 20px;" /></p><h3>Imagery and graphics</h3><p>We all the know the usual stock and micro-stock photo libraries but there are a lot of great <a
href="http://robcubbon.com/free-stock-photography-for-a-graphic-designer">free photography sites</a> and lots of great free vector content out there too.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/terminal-icon.jpg" alt="terminal" title="" width="90" height="86" class="alignnone size-full wp-image-2264"  style="padding-top: 20px;"/></p><h3>Web presence and host</h3><p>If you want to be a freelance graphic designer, a freelance web designer or anything at all you need your own website. Do not waste your time putting your portfolio on a 3rd party site or indeed putting your details on a bidding site. You may experiment with these sites and social media later. The first thing you need to do is to decide on your web address, <a
href="http://affiliate.godaddy.com/redirect/2675E9037420B6AC5A5E9A910A260E811A3CBDFB6F1C19160FC73A53303B1B34">register it</a> and get a <a
href="http://robcubbon.com/the-best-shared-hosting-for-wordpress-websites">shared server</a> or <a
href="http://robcubbon.com/recommended-vps-hosts-for-wordpress">VPS server</a> to host your own personal website.</p><p>Get clients to come to you so that you don&#8217;t have to go out and find clients. <a
href="http://robcubbon.com/how-to-market-yourself-3-how-to-install-wordpress-blog-on-your-site">Start a self hosted WordPress blog</a> and <a
href="http://robcubbon.com/how-to-market-yourself-4-what-to-write-in-your-blog-or-website">write about what you do</a>.<br
/> <img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/network.jpg" alt="network" title="" width="90" height="86" class="alignnone size-full wp-image-2278"  style="padding-top: 28px;"/></p><h3>A network</h3><p>This is an added section due to a very useful comment I got below from Jonathan. You are going to need a network of people, other designers, photographers, artists, developers, etc., to help you. Sometimes it&#8217;s just great to be able to ask for help. So, join design forums, participate in relevant LinkedIn groups, leave comments on blogs and generally interact with people both on and offline to strengthen and expand your network. Help people and they will help you.</p><p>Jonathan&#8217;s comment below is a case in point. He has made an excellent addendum to this post and now we are connected. Thanks, Jonathan!</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/people-walking.jpg" alt="people walking" title="" width="90" height="86" class="alignnone size-full wp-image-2265"  style="padding-top: 20px;"/></p><h3>Clients</h3><p>I knew I was forgetting something&#8230; clients are more-or-less essential to your business! The one thing that I can not stress enough is the value of keeping clients. More than half the work I do is for existing clients rather than new business. And a significant amount of new business comes from recommendations. So, remember, the best clients are the ones you already have.</p><p>All the clients I have (apart from recommendations from old clients) have contacted me from this website. Which is why I think it&#8217;s so important to have an active website that appears high in Google searches for a variety of keywords. Regular readers of this blog will know I&#8217;ve written about <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">how to market yourself</a> in this way.</p><h3>Anything else?</h3><p>I&#8217;m not going to insult anyone by saying the usual: &#8220;you need a thick skin, hard work, dedication and passion&#8221; – I assume you have all these in spades as you are reading this. And, to be honest, you&#8217;re also probably going to need a little bit of luck. But, don&#8217;t we all? People will say you need talent. But I won&#8217;t. For me, hard work, dedication and passion will beat talent any day.</p><p>So, is that it? Is there anything else you need to be a freelance graphic designer?</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/what-you-need-to-be-a-freelance-graphic-designer/feed/</wfw:commentRss> <slash:comments>16</slash:comments> </item> <item><title>10 things I wish I had known about web designing 10 years ago</title><link>http://robcubbon.com/10-things-i-wish-i-had-known-about-web-designing-10-years-ago/</link> <comments>http://robcubbon.com/10-things-i-wish-i-had-known-about-web-designing-10-years-ago/#comments</comments> <pubDate>Mon, 21 Jun 2010 13:34:54 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[color]]></category> <category><![CDATA[design]]></category> <category><![CDATA[host]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[speed]]></category> <category><![CDATA[standards]]></category> <category><![CDATA[usability]]></category> <category><![CDATA[web design]]></category> <category><![CDATA[WordPress]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2193</guid> <description><![CDATA[<p>10 years ago I had a big problem. I was a print designer but I loved the internet and desperately wanted to work with it. I wanted a software package that would let me mess around with drag-and-drop functionality and when I was ready I could click &#8220;GO&#8221; and miraculously produce perfect code. I was [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
class="aligncenter size-full wp-image-2197" src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/world-through-tear.jpg" alt="world showing through a tear in the page" width="400" height="421" /></p><p>10 years ago I had a big problem. I was a print designer but I loved the internet and desperately wanted to work with it.</p><p>I wanted a software package that would let me mess around with drag-and-drop functionality and when I was ready I could click &#8220;GO&#8221; and miraculously produce perfect code. I was probably using Internet Explorer as my web browser and used Dreamweaver as a design tool to churn out horrendous tabled mark up.</p><p>I gradually came around to seeing that web design was about standards, SEO, speed, aesthetics &#8211; and &#8230; horror of horrors &#8230; that <a
href="http://robcubbon.com/why-web-designers-should-learn-code">I was going to have to learn code</a>.</p><p>I certainly learnt the hard way &#8211; going up countless blind alleys that turned out to be cul-de-sacs &#8211; in my path to creating websites. Here are some of the most useful things I have learnt in the last few years:</p><p><img
style="padding-top: 25px;" src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/firebug.jpg" alt="firebug logo" width="125" height="100" /></p><h3>1. Web developer tools and Firebug</h3><p>One of the most useful previewing techniques that will help you learn CSS is viewing the Developer Tools in Chrome or Internet Explorer and in Firefox the <a
href="http://getfirebug.com/">Firebug</a> extension. While using these tools’ cursor (it can be an arrow or a magnifying glass) click on an element and the styles and style sheet that is affecting it will show up in the Developer Tools or Firebug panel.</p><p>You can actually make HTML and CSS changes on the fly so if you want to see what a web page would look like with different colored links you can. These tools will also show you which CSS selectors effect an element and which are overrided.</p><p><img
class="alignnone size-full wp-image-2202" style="padding-top: 25px;" src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/wordpress-logo.jpg" alt="wordpress logo" width="80" height="80" /></p><h3>2. WordPress.org as blogging software</h3><p>WordPress was first released in May 2003 by Matt Mullenweg as a fork of b2/cafelog so I couldn&#8217;t have known about it 10 years ago but I would say discovering <a
href="http://wordpress.org">WordPress</a> was one of the best things that happened to me as a web designer. It&#8217;s essential, once you&#8217;ve learnt HTML and CSS, to get to grips with a CMS (Content Management System) to organize your website.</p><p><img
class="alignnone size-full wp-image-2203" style="padding-top: 25px;" src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/server.jpg" alt="server" width="100" height="100" /></p><h3>3. Hosts</h3><p>Not all hosts are created equal. It is incredibly important to spend a bit of time on forums and social networking sites asking people with similar sites their experiences with hosts. Here are the results of surveys I did to find the best <a
href="http://robcubbon.com/the-best-shared-hosting-for-wordpress-websites">shared hosts</a> and <a
href="http://robcubbon.com/recommended-vps-hosts-for-wordpress">VPS hosts</a> for WordPress.</p><p><img
class="alignnone size-full wp-image-2204" style="padding-top: 25px;" src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/browser-logos.jpg" alt="browser logos" width="375" height="75" /></p><h3>4. Ensure cross browser consistency</h3><p>Different browsers will apply different default paddings and margins, even to common elements like paragraphs, body and forms. Put this handy bit of code in your CSS as a starter for ensuring your web page will look the same in all browsers:</p><blockquote><p><code>*{margin:0;padding:0}</code></p></blockquote><p>Make sure you have a local version of all the major browsers Chrome, Opera, Safari, Internet Explorer and Firefox &#8211; as well as the ability to view the browsers on the Mac and Windows operating systems. The best online browser rendering service is <a
href="https://browserlab.adobe.com/en-us/index.html">Adobe&#8217;s BrowserLab</a>.<br
/> <img
class="alignnone size-full wp-image-2210" style="padding-top: 25px;" src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/testing.jpg" alt="hand with blue pen checking boxes in a test" width="150" height="100" /></p><h3>5. Test</h3><p>Whenever you change a bit of code in a CSS, HTML, JavaScript or PHP file always be sure to test the effected page straight after you&#8217;ve done it. It&#8217;s a no brainer really but I can&#8217;t tell you how many times I&#8217;ve made two or more changes to code only to find the web page broken with no idea which change had caused the break.</p><p>Obviously, you don&#8217;t want to test on every different browser after every particular change as that would drive you potty. But try to check each time in Firefox and check Internet Explorer or Chrome every other change as well.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/w3c-markup-service.jpg" alt="w3c markup service" title="" width="281" height="50" class="alignnone size-full wp-image-2224" style="padding-top: 25px;"/></p><h3>6. Validate</h3><p>And as you go along testing, so should you go along validating the <a
href="http://validator.w3.org/">HTML</a> and <a
href="http://jigsaw.w3.org/css-validator/">CSS</a>. It&#8217;s easier to sort out validation errors when you&#8217;ve just started the first page than when the site is further down the line and has several pages. Sorting out validation errors can solve a lot of IE problems as well.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/JQuery_logo_color_onwhite-small1.jpg" alt="jQuery logo" title="" width="200" height="50" class="alignnone size-full wp-image-2230" style="padding-top: 25px;"/></p><h3>7. Use JavaScript not Flash</h3><p>I&#8217;ve got nothing against Flash, in fact the first time I saw it I remember thinking it was the answer to all my prayers &#8211; you could use any font you wanted and it would compress files pretty well as it used vectors I was used to in print design. However, it was never well crawled by the search engine bots, it made designers &#8220;over-design&#8221; and now it&#8217;s not even supported by certain devices.</p><p>For the sort of user-friendly sites I do I&#8217;m much better off using JavaScript, and more specifically <a
href="http://jquery.com/">jQuery</a>, solutions as they degrade better: if you don&#8217;t have JavaScript enabled on your browser the jQuery device can still work, whereas if you don&#8217;t have the correct version of Flash running, Flash doesn&#8217;t.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/address-bar3.jpg" alt="address bar in browser" title="address-bar" width="133" height="88" class="alignnone size-full wp-image-2235" style="padding-top: 25px;"/></p><h3>8. SEO</h3><p>The practice of getting your site indexed and high up the search engines&#8217; results pages is something that starts the first second you work on it. The HTML should be as clean and as sparse as possible, marked up to leave the search engines in no doubt as to the contents and hierarchy of the pages.</p><p>The most important factors for good search engine rankings are firstly good content and secondly good incoming links and, usually, the first will ensure the second. However, there are other important things to learn and implement on the site such as XML sitemap, robots.txt, .htaccess and <a
href="https://www.google.com/webmasters/tools/">Google Webmaster Tools</a> to check broken links, etc.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/speed-racer-car1-150x90.jpg" alt="racing car" title="" width="150" height="90" class="alignnone size-thumbnail wp-image-2227" style="padding-top: 25px;" /></p><h3>9. Speed and compression</h3><p>And, as with SEO, the practice to get you site load as quickly as possible starts right at the beginning. So, combine external CSS and JavaScript files, enable gzip compression and caching server side, optimise your images as much as possible (even sacrifice quality a little bit), minimize code and PHP calls.</p><p>It&#8217;s good for your visitors and now Google uses speed in it&#8217;s algorithm for calculating a site&#8217;s ranking.</p><p><img
class="alignnone size-full wp-image-2216" src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/web-design-color.jpg" alt="different colors for web design" width="172" height="100" style="padding-top: 25px;"/></p><h3>10. Picking colors and adding space</h3><p>With designing generally it is usually a good idea to choose two colors, a primary and a secondary, to build your color scheme around. The tendency, particularly with webpages, is to have just one color for links and then use different tints of that color for backgrounds etc. But this leads to a very monochromatic look. So it helps to choose at least one other color other than the main color. Of course, the choice of colors depends on the client and the type of site, but it&#8217;s something you need to get right and to get right early.</p><p>The amount of web page real estate with nothing in it is almost as important as the pixels that contain information. Spacing out the design will make it easier for the visitors to digest the information. You will not only have to learn how to do this; you will also have to learn how to persuade the client that this is necessary &#8211; as with many of the above.</p><h3>Extras</h3><p>Other things that would have made my learning less painful are listed here:</p><ul><li><strong>Sidebar</strong> &#8211; all website&#8217;s need a sidebar &#8211; OK that&#8217;s a bit of a generalization and not always true but a designer will always want things to look clean and so many times I have tried to get the page contents to stretch right across the full width of the browser. Ouch, no, big mistake!</li><li><strong>Put the client&#8217;s logo on the top left hand corner and link it to the home page</strong> &#8211; as you go along there are more and more standards that visitors are coming to expect. It&#8217;s usually important not to disappoint or confuse your visitors!</li><li><strong>Contact page</strong> &#8211; just as ubiquitous as the Home link is the Contact link somewhere on every page.</li><li><strong>Vectors</strong> &#8211; when designing your site in Photoshop or Fireworks, use vectors as much as possible so that the continuous re-sizing doesn&#8217;t affect the quality of the finished image.</li></ul><h3>And what about you?</h3><p>What would you have loved to have known about web design when you were starting out?</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/10-things-i-wish-i-had-known-about-web-designing-10-years-ago/feed/</wfw:commentRss> <slash:comments>28</slash:comments> </item> <item><title>Designers&#8217; Social Media Partnership</title><link>http://robcubbon.com/designers-social-media-partnership/</link> <comments>http://robcubbon.com/designers-social-media-partnership/#comments</comments> <pubDate>Tue, 01 Jun 2010 13:18:12 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Social media]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[design]]></category> <category><![CDATA[graphic]]></category> <category><![CDATA[promotion]]></category> <category><![CDATA[social bookmarking]]></category> <category><![CDATA[social networking]]></category> <category><![CDATA[traffic]]></category> <category><![CDATA[votes]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2132</guid> <description><![CDATA[<p>We all know that after writing a great post and hitting the publish  button we&#8217;re not even halfway finished! There can be a seemingly endless marketing job to do by submitting a  blog article to various social bookmarking sites like Digg,  StumbleUpon and Delicious. We can also choose to submit to social  networking sites like [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p>We all know that after writing a great post and hitting the publish  button we&#8217;re not even halfway finished!</p><p>There can be a seemingly endless marketing job to do by submitting a  blog article to various social bookmarking sites like <strong>Digg</strong>,  <strong>StumbleUpon</strong> and <strong>Delicious</strong>. We can also choose to submit to social  networking sites like <strong>LinkedIn</strong> and <strong>Facebook</strong>. Also, for designers and  web developers there are several niche bookmarking sites springing up  like <strong>DesignBump</strong>, <strong>DesignFloat</strong>, <strong>Dzone</strong>, etc. The good thing about the lesser known niche bookmarking sites is that only a few votes will put you to the top of the page and can get you great traffic.</p><p>But after we&#8217;ve done this there is no way of knowing that our efforts  have paid off! The article will sometimes sit on the bookmarking site with just  one vote and therefore unseen by the majority of the  site&#8217;s visitors.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/hands-up-illustration.jpg" alt="hands up illustration"  width="600" height="250" class="aligncenter size-full wp-image-2133" /></p><p>Here&#8217;s where the <a
href="http://groups.google.com/group/designers-social-media-partnership?hl=en">Designers&#8217; Social Media Partnership</a> Google Group comes in&#8230;</p><h3>Promote your fantastic posts!</h3><p>After you have written your blog post you can post the link and ask people to vote, bump,  thumbs up, or generally big up your post. Maybe you can provide the  links to the various voting sites so people can just click away very quickly to promote your  article. I&#8217;ll write an example post to the group to show you what I mean by this.</p><p>Using the universal &#8220;I&#8217;ll scratch your back&#8230;&#8221; rule, people will be  compelled to vote for your articles if you&#8217;ve voted for theirs. You  may like to send them a private mail through the group to let them know.</p><p>Joining the group is easy with your Google ID and posting on the group is as easy as writing an email. You are, of course, completely at liberty to vote for the articles you  consider good enough.</p><p>Remember, this isn&#8217;t confined to designers or developers, any blogger who wishes to promote their latest masterpieces can <a
href="http://groups.google.com/group/designers-social-media-partnership?hl=en">join the group</a>.</p><p>Happy blogging, happy voting and I hope you enjoy being a member of  this group! Thanks to <a
href="http://www.brandonacox.com/">Brandon Cox</a> for this idea.</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/designers-social-media-partnership/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Essentials of great blog post design</title><link>http://robcubbon.com/essentials-blog-post-design/</link> <comments>http://robcubbon.com/essentials-blog-post-design/#comments</comments> <pubDate>Mon, 17 May 2010 11:59:03 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[blog post]]></category> <category><![CDATA[css]]></category> <category><![CDATA[design]]></category> <category><![CDATA[headings]]></category> <category><![CDATA[images]]></category> <category><![CDATA[spacing]]></category> <category><![CDATA[styles]]></category> <category><![CDATA[typography]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2075</guid> <description><![CDATA[<p>Blogs are, in my opinion, the easiest and best way to get stuff on the web. With a blog you can publish constantly updated information about yourself, your company or your interests to the world. And what makes it even better is that this information is chronologically ordered and categorized for search engines almost automatically. [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><a
href="http://cdn.robcubbon.com/wp-content/uploads/2010/05/blog-word-image.jpg"><img
class="aligncenter size-full wp-image-2112" src="http://cdn.robcubbon.com/wp-content/uploads/2010/05/blog-word-image.jpg" alt="blog word image" width="600" height="250" /></a></p><p>Blogs are, in my opinion, the easiest and best way to get stuff on the web.</p><p>With a blog you can publish constantly updated information about yourself, your company or your interests to the world. And what makes it even better is that this information is chronologically ordered and categorized for search engines almost automatically.</p><p>Your blog posts should be delivered in the most beautiful and readable way to get the most out of this fantastic medium.</p><p>Here are some design essentials you can use to improve the look of your blog and your blog posts.</p><h3>Body text size and line spacing</h3><p>The body text is the text you are reading at the moment – a normal paragraph within an article. It&#8217;s the meat and drink of the blog so it has to be readable. Having said that it&#8217;s amazing how many websites have their body text too small. Some people will not read text below a certain size.</p><p>I&#8217;m going to stick my neck out now and say that the font size of body text on a website should never be smaller than 15 pixels or 1 em in size. Furthermore the line height (the line spacing or leading) should always be 25% larger than the font size or more. So if the font size of your body text is 15 pixels; your line height should be 19 pixels or more. If the font size of your body text is 1 em; your line height should be 1.25 em or more.</p><p><img
class="aligncenter size-full wp-image-2080" src="http://cdn.robcubbon.com/wp-content/uploads/2010/05/body-text-on-screen1.jpg" alt="body text on screen" width="600" height="150" /></p><p>If you are not familiar with the terms pixels, ems, font size, line height, etc., or don&#8217;t know how to change them read on.</p><p>The file that controls the size of the body text on your blog is the CSS (Cascading Style Sheets) file. If you are are a WordPress user it will most likely be in your theme folder and called &#8220;style.css&#8221;.</p><p>You can identify the font size and the location of this CSS file as well as previewing the changes using your browser. If you&#8217;re using Chrome or Internet Explorer you can view Developer Tools. And if you&#8217;re using Firefox you can use the <a
href="https://addons.mozilla.org/en-US/firefox/addon/1843/">Firebug</a> extension.</p><p>While using these tools&#8217; cursor (it can be an arrow or a magnifying glass), click on the element that concerns you and then the styles and style sheet that is affecting it will show up in the Developer Tools or Firebug panel. So, if you click on a body text paragraph you may see that it is controlled by the body element in your main CSS file.</p><p><img
class="aligncenter size-full wp-image-2076" src="http://cdn.robcubbon.com/wp-content/uploads/2010/05/firebug-screenshot.jpg" alt="firebug screenshot" width="406" height="295" /></p><p>Above you can see in a screen shot from the Firebug panel in Firefox that the font size of the body text is 12 pixels and the line height is 20 pixels. You can actually change the values in this panel and the browser will render the changes live. This is a great way to learn CSS and mess around with different design elements. You can also see that the file controlling these styles is called &#8220;style.css&#8221;, hover over the file name in this panel and the web address of the CSS file will show as a tool tip.</p><h3>Paragraph spacing</h3><p>Paragraphs on the web should have a space between them. It should be around half the line height. So, if your line height is 20 pixels, you should add a 10 pixel gap between paragraphs. This is usually done with either padding or margin on the <code>&lt;p&gt;</code> tag. Here is a sample CSS code that adds a 10 pixel gap to the end of each paragraph:</p><blockquote><p><code>p { margin-bottom: 10px }</code></p></blockquote><h3>Include sub-headings in your blog posts</h3><p>If you are writing a post with more than a few hundred words then you should use subheadings. They improve the post for your readers as they break up and order the text and they are also good for SEO. Here is the HTML code for the above subheading:</p><blockquote><p><code>&lt;h3&gt;Include sub-headings in your blog posts&lt;/h3&gt;</code></p></blockquote><p>As my normal blog title is wrapped inside <code>&lt;h2&gt;</code> tags my subhead text is therefore wrapped inside <code>&lt;h3&gt;</code> tags. This shows the hierarchy of headings – the subheading isn&#8217;t as important as the heading. Some blog post titles are <code>&lt;h1&gt;</code> in which case the subheadings should be <code>&lt;h2&gt;</code>.</p><p>As above, use Firebug for Firefox and the Developer Tools in Internet Explorer and Chrome to identify the title tag and then set up an <code>&lt;h2&gt;</code> tag or <code>&lt;h3&gt;</code> tag in your stylesheet accordingly. Here is the CSS for my titles and subheadings:</p><blockquote><p><code>h2 { font-size: 23px; line-height:27px; color: #4c5464; }<br
/> h3 { font-size: 18px; line-height:22px; color: #243f76; }</code></p></blockquote><h3>Make your text scannable</h3><p>Remember your visitors will typically spend a few seconds on your website so it is necessary to make them feel at ease and entrap them. So far we have talked about good body text typography, paragraph spacing and subheadings to do this. But you can also add <strong>bold</strong> text, <em>italics</em>, bullets, numbered lists, <a
href="http://robcubbon.com">links</a>, etc. to break up otherwise dull lines of text. These highlighted words jump out and may interest your readers. It also looks nicer.</p><h3>Insert images</h3><p>Blog posts are incredibly boring without images or video. Use them. Here is an article I wrote on <a
href="http://robcubbon.com/adding-images-to-a-wordpress-post">how to add images to WordPress posts</a>.</p><h3>Conclusion</h3><p>I wrote more about the <a
href="http://robcubbon.com/how-to-market-yourself-7-how-to-write-and-design-a-wordpress-page-or-post">technicalities of writing and designing a WordPress post here</a>.</p><p>Font size, line height, paragraph spacing, subheads, images and other typographical elements can all be used to improve legibility and aesthetics in your blog posts. Have I forgotten something? Can you suggest other ways to improve the design of blog posts?</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/essentials-blog-post-design/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Why web designers should learn code</title><link>http://robcubbon.com/why-web-designers-should-learn-code/</link> <comments>http://robcubbon.com/why-web-designers-should-learn-code/#comments</comments> <pubDate>Sun, 09 May 2010 15:10:28 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[coding]]></category> <category><![CDATA[design]]></category> <category><![CDATA[usability]]></category> <category><![CDATA[web]]></category> <category><![CDATA[web design]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2034</guid> <description><![CDATA[<p>Back in the olden days just after Al Gore invented the internet, designers designed and programmers programmed. The web was full of slow good-looking sites that didn&#8217;t do much and useful busy sites that, frankly, looked like a dog&#8217;s dinner. But every year since then more and more fantastically usable sites that also look great [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/05/pantone-book-zeros-ones.jpg" alt="pantone book with zeros and ones"  width="600" height="250" class="aligncenter size-full wp-image-2035" /></p><p>Back in the olden days just after Al Gore invented the internet, designers designed and programmers programmed. The web was full of slow good-looking sites that didn&#8217;t do much and useful busy sites that, frankly, looked like a dog&#8217;s dinner.</p><p>But every year since then more and more fantastically usable sites that also look great have cropped up. Why? The two previously separate disciplines of design and code have combined and at the intersection point is usability.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/05/design-code-usability1.jpg" alt="design code usability" title="" width="300" height="97" class="aligncenter size-full wp-image-2041" /></p><h3>Usability</h3><p>Everyone wants user-friendly websites that are easy to navigate and interact with the user without mess or confusion. A designer is more likely to achieve this when coding it himself. A knowledge of code is a knowledge of how the website works. If you know how the web works you can make it work well.</p><p>A designer who codes understands the pay off between clean code and great user experience. They know that if they want the website to load fast they may have to cut out some of the more gimmicky processor-hungry bells and whistles. The user is the winner as the website will do the job and won&#8217;t show off.</p><h3>Less confusion, time and money</h3><p>The more people involved in a project the more time and money is spent. The interaction between a designer and a developer is so often a compromise between what was wanted and what is now possible. A flexible designer will reinterpret the original design to the practicalities of the project. This is more likely to happen with a designer who codes as (s)he will understand the limitations much better.</p><p>With a designer designing and a coder coding the two processes have to run sequentially with one party waiting for the other to finish before they can start. With a designer coding the processes will be sequential the design will grow along with the website with tweaking and improvements being easily implemented along the way.</p><h3>Better SEO</h3><p>And while I&#8217;m talking about clean code I should mention SEO. The code-savvy designer will know to write good file names and alt text for images, for example, and write standards-compliant code. All good for getting the website higher in search engine results.</p><p>In my experience when the designer passes the Photoshop file to the coder it gets chopped up and called &#8220;image01.jpg&#8221; and &#8220;image02.jpg&#8221;, etc. Not very descriptive.</p><h3>Ignore the nay-sayers</h3><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/05/nay-sayers.png" alt="nay-sayers" title="" width="600" height="163" class="aligncenter size-full wp-image-2037" /></p><p>The wonderful thing about the internet is that many people are dropping the constraints of old-fashioned thinking that said &#8220;this person can&#8217;t do that; that person can&#8217;t do this&#8221;.</p><p>Open source CMSs, plugins and JavaScript libraries make it easier for the designer to learn new skills.</p><p>People are saying &#8220;why can&#8217;t I start up a website on my own&#8221; or &#8220;why can&#8217;t I set up an e-commerce facility&#8221;. The tools are freely available; you just have to learn how to use them.</p><p>Indeed, people who would never have been considered musicians 20 years ago are now successfully creating music online. Others who would never have had the financial ability to buy film cameras are shooting, editing and marketing their own movies successfully.</p><p>Don&#8217;t let negative thinking from yourself or from others get to you. I used to think HTML and CSS were beyond me. And then I thought I&#8217;d have nothing to do with PHP or JavaScript. But I was wrong. I was guilty of listening to nay-sayers.</p><p>Now I hope I can carry on exploring new avenues and encourage others to do so.</p><p>It&#8217;s never too late to learn!</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/why-web-designers-should-learn-code/feed/</wfw:commentRss> <slash:comments>19</slash:comments> </item> <item><title>How to create a simple flat web button</title><link>http://robcubbon.com/how-to-create-a-simple-flat-web-button/</link> <comments>http://robcubbon.com/how-to-create-a-simple-flat-web-button/#comments</comments> <pubDate>Tue, 16 Mar 2010 16:36:17 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[Photoshop]]></category> <category><![CDATA[button]]></category> <category><![CDATA[graphics]]></category> <category><![CDATA[web]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=1118</guid> <description><![CDATA[<p>Here is an in depth tutorial explaining how to create the flat web button below in Photoshop and introducing the concept of the web designers&#8217; secret penultimate pixels! Go cmd/cntl-N or File &#62; New&#8230; to create a new Photoshop document of the size of your button. This one has a width of 175 pixels and [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p>Here is an in depth tutorial explaining how to create the flat web button below in Photoshop and introducing the concept of the web designers&#8217; secret penultimate pixels!</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/flat-button.jpg" alt="flat button" /></p><p>Go cmd/cntl-N or File &gt; New&#8230; to create a new Photoshop document of the size of your button. This one has a width of 175 pixels and a height of 35 but it can be any size. (You knew that, didn&#8217;t you?). The Resolution should be 72 pixels per inch and Color Mode RGB for websites, of course, and I have the Background Contents to be White as the button is going on an area of a website that has a white background.</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/new-photoshop-document-box.jpg" alt="New photoshop document box" /></p><p>Draw a rounded rectangle with, you guessed it, the Rounded Rectangle Tool (U) make the radius 3 pixels in the Options bar at the top.</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/rounded-rectangle-tool-photoshop.jpg" alt="rounded rectangle tool photoshop" /></p><p>Make sure the rounded rectangle snaps to the edges and fits exactly the size of the image. It doesn&#8217;t matter what color. Here&#8217;s a gray one zoomed in to 200%.</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/gray-flat-button-200-percent.jpg" alt="gray flat button 200 percent" /></p><p>Now there are two Layer Styles you want to give the rounded rectangle &#8211; Gradient Overlay and Stroke. So with the rounded rectangle selected in the Layers palette go to the &#8220;fx&#8221; icon at the bottom and choose Gradient Overlay.</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/gradient-overlay-layer-style.jpg" alt="gradient overlay layer style" /></p><p>On the first panel you should make sure that the angle of the gradient is either 90º or -90º so the gradient either goes straight up or straight down. (Otherwise keep the default values of Normal Blend Mode, 100% Opacity, Linear Style and 100% Scale). To choose the actual colors of the gradient you need to click on the gradient to get the Gradient Editor to pop-up.</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/photoshop-gradient-editor.jpg" alt="photoshop gradient editor" /></p><p>Here the trick is to choose two colors that are of the same tone but very close together so that you can only just tell them apart. To choose the colors click of one of the colored squares (stops) with triangles on top of them underneath the gradient (the default is black and white). Once the stop is clicked on, click on the color where it says &#8220;Color:&#8221; and that will give you a Select stop color box. Here I have also copied the darker of the two colors in the Gradient Editor by option dragging the stop. This ensures that more of the gradient is a solid color and the color change occurs more quickly at one end (in this case at the top).<br
/> And the second Layer Style is Stroke. Here you want to choose a color that is darker than the darker of your two colors but only just (with the same degree of separation as the difference between the two colors in the gradient. The size should be 1 pixel and the Position should be Inside. The other values should be the default ones.</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/stroke-layer-style-photoshop.jpg" alt="stroke layer style photoshop" /></p><p>Now your button should look like this:</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/boring-flat-button.jpg" alt="boring flat button" /></p><p>&#8230; a little too flat! Now we&#8217;ve got to get a bit creative with our penultimate pixels!</p><h3>The web designer&#8217;s secret penultimate pixels!</h3><p>In order to give the illusion of a flat but 3D button there needs to be a slight highlight near the top and a slight shadow near the bottom &#8211; so slight, in fact, it&#8217;ll be the height of one pixel; so near the top and bottom, in fact, it will be offset by one pixel. In order to do this, it is necessary to create a new layer and select the Single Row Marquee Tool.</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/create-new-layer-marquee.jpg" alt="create new layer and select the Single Row Marquee Tool" /></p><p>You will need to zoom in to your button by going Cmd/Ctrl-+ a few times. And then position your single row of pixels with the marquee on the second row of pixels just below the top. You can do this easily by just dragging the Single Row Marquee Tool to the top of the image and then moving it down one pixel by hitting the down cursor key once. Now fill this white &#8211; (get the Default Background and Foreground Colors by hitting &#8220;D&#8221; and filling with the Foreground Color (white) by going alt/opt-delete). This will leave you with this:</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/flat-button-white-line.jpg" alt="flat button with white line" /></p><p>The do the same again but for the black line. First create a new layer (very important that the white and black lines are on different layers for reasons you will see in a moment), then put a row of black pixels on the second to bottom row of pixels using the same method. And you will be left with something like this:</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/flat-button-white-line-black-line.jpg" alt="flat button with white line and black line" /></p><p>There&#8217;s one more important thing to be done with these pixels. As the corners of this button are slightly rounded we need to shave a couple of pixels off the ends of the black and white lines. You can do this with the Rectangular Marquee Tool (M) and using the cursor keys for positioning. Remember the marquee will move one pixel to the left, right or up or down every time you hit one of the cursor keys. If nothing happens when you hit delete be sure you are on the correct layer!</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/flat-button-deleting-pixels.jpg" alt="flat button deleting pixels" /></p><p>When you&#8217;re finished you will be left with something like this, with two pixels deleted off both ends off the black and white lines:</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/flat-button-white-line-black-line-shorter.jpg" alt="flat button with white and black lines shorter" /></p><p>The last thing that remains to be done (as you can see above) is just to make the white penultimate pixels line less prominent. Do this by changing the white line&#8217;s layer opacity to 30% (hit &#8220;3&#8243; with the layer selected).<br
/> And now you should by left with this:</p><p
style="text-align: center;"><img
class="aligncenter" src="http://robcubbon.com/images/flat-button-blank.jpg" alt="blank flat button" /></p><h3>Other web button tutorials</h3><p>This is a very flat button. I have written lots of tutorials about more bulging, shiny, jelly buttons. Here is one for <a
href="http://robcubbon.com/how-to-design-a-cool-web-20-button-in-illustrator-and-photoshop">a cool, shiny, web2.0 button</a>. (If anyone get excited by my use of the expression &#8220;web2.0&#8243; to describe the look of a button, please be advised that it wasn&#8217;t me who coined that first as a design term!!!)</p><p
style="text-align: center;"><a
href="http://robcubbon.com/how-to-design-a-cool-web-20-button-in-illustrator-and-photoshop"><img
class="aligncenter" src="http://robcubbon.com/images/a-cool-web-2-shiny-button-home.jpg" alt="cool web2.0 shiny button home"  style="border:none;" /></a></p><p>And, here&#8217;s another tutorial about <a
href="http://robcubbon.com/how-to-design-shiny-web-20-buttons-in-illustrator">how to create cool shiny buttons in Illustrator alone</a>.</p><p
style="text-align: center;"><a
href="http://robcubbon.com/how-to-design-shiny-web-20-buttons-in-illustrator"><img
class="aligncenter" style="border:none;" src="http://robcubbon.com/images/shiny-cool-green-button.jpg" alt="cool web2.0 shiny green button" /></a></p><p>That&#8217;s all for now and please accept a big apology, especially to my regular readers, for the month&#8217;s gap in between my last two posts. I will shortly be writing and backlogging a number of great posts about design and marketing so this won&#8217;t happen again. Goodbye, everybody!</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/how-to-create-a-simple-flat-web-button/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Some tips on designing logos with Adobe Illustrator</title><link>http://robcubbon.com/tips-designing-logos-adobe-illustrator/</link> <comments>http://robcubbon.com/tips-designing-logos-adobe-illustrator/#comments</comments> <pubDate>Mon, 28 Dec 2009 13:32:43 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Illustrator]]></category> <category><![CDATA[Logos]]></category> <category><![CDATA[design]]></category> <category><![CDATA[logo]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=911</guid> <description><![CDATA[<p>Designing logos are the ultimate challenge for the graphic designer and there is nothing simple about doing them. The logo is the first and most important visual cue of a company or brand. Logos (usually) should be simple, compact and of one or two colors. Because you have less to play with, it&#8217;s the design [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p>Designing logos are the ultimate challenge for the graphic designer and there is nothing simple about doing them. The logo is the first and most important visual cue of a company or brand. Logos (usually) should be simple, compact and of one or two colors. Because you have less to play with, it&#8217;s the design equivalent of writing poetry. And, like poetry, a lot of people do it; but only a very few people do it well.</p><p><img
src="http://robcubbon.com/images/link-and-talk-company-logo.png" alt="logo for Link and Talk Communications" /></p><p>It is not the case that a logo will cost an extra 50$ and is just a matter of spelling out the company name in an attractive typeface. I did the logo above for a client who wanted a simple, modern and dependable characteristics displayed through the logo for his communications company.</p><p>So, instead of writing about <a
href="http://www.davidairey.com/what-makes-a-good-logo/">what makes a good logo</a> I&#8217;m going to give a few tips on how to use Adobe Illustrator to put together a logo.</p><h3>Why should you create a logo with vector graphics?</h3><p>Vectors consist of points, lines, and curves which, when combined, can form complex objects. Whereas bitmap or raster graphics (eg. JPGs) are composed of pixels that contain specific color information. When enlarged, bitmaps pixelate. Whereas vectors will scale up or down without loss of quality or sharpness. So the same vector logo file looks as great on a business card as on a billboard­.</p><p>So, with logos, it&#8217;s vector, vector, vector all the way.</p><h3>Using Adobe Illustrator to Snap to Point</h3><p>You can use many different packages to handle and create vectors. My choice of software for doing this is Adobe Illustrator. Whether you have sketched the logo by hand on paper first or whether you are creating the logo from scratch in Illustrator, it&#8217;s important to make sure you have Illustrator&#8217;s Snap to Point feature running. Snap to Point allows you, when dragging objects, to align an anchor point exactly with another anchor points (anchor points are the beginnings and ends of paths or lines).</p><p>So the first thing you must do in Illustrator is to go into Preferences&#8230; and choose Selection &amp; Anchor Display and make sure that Snap to Point is checked with a value like 2 px set.</p><p><img
src="http://robcubbon.com/images/snap-to-point-illustrator.jpg" alt="screen shots showing snap to point in Illustrator" /></p><p>The screenshot on the left above shows the plus sign being dragged by one of the anchor points. The cursor (as we are using the Selection Tool (V) to move the object), is a black arrowhead with a white outline. When the arrowhead is precisely on top of another anchor point while dragging it will turn white with a black outline. At this moment, you know if you let go of the object it will land exactly where you want it to be.</p><p>So grabbing objects by anchor points and using Snap to Point to place them in precisely defined positioned is crucial to creating logos in Illustrator.</p><h3>Viewing and Hiding the Bounding Box in Adobe Illustrator</h3><p>One of the problems you can face whilst moving objects by a corner anchor point is inadvertently re-sizing the object!</p><p><img
src="http://robcubbon.com/images/with-and-without-bounding-box.jpg" alt="screen shots object with and without a bounding box" /></p><p>In the image above you can see an object without (left) and with (right) a Bounding Box. The Bounding Box is an extra line around an object with eight white handles which can be using for scaling. It&#8217;s very handy sometimes but other times it just gets in the way. To get rid of the Bounding Box, simply go View &gt; Hide Bounding Box or Cmd/Ctrl-Shift-B.</p><h3>Converting text to outlines in Adobe Illustrator</h3><p>While doing logos it&#8217;s fairly usual that you type out the company&#8217;s name in a typeface close to how you want it to look (in this case Dax) and then edit the letters separately. To do this, with the type selected by the Selection Tool (V), go Type &gt; Create Outlines or Cmd/Ctrl-Shift-O. Follow this up with a Cmd/Ctrl-Shift-G or  Object &gt; Ungroup to ungroup the letters.</p><h3>Lining up objects in Adobe Illustrator</h3><p>Fairly often, when designing logos, you will want to get certain letters to line up. I do this by using the Control Palette which is usually beneath the main menu. When two or more objects or groups of objects are selected by the Selection Tool (V) the Space and Align icons appear.</p><p><img
src="http://robcubbon.com/images/space-align-icons.jpg" alt="Space/Align icons in illustrator" /></p><p>The use and look of these icons are exactly the same in Photoshop and very intuitive. I use them all the time.</p><h3>What do you think?</h3><p>Do you use Illustrator to design or to create logos? What methods do you find yourself using again and again?</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/tips-designing-logos-adobe-illustrator/feed/</wfw:commentRss> <slash:comments>17</slash:comments> </item> <item><title>Free stock photography for a graphic designer</title><link>http://robcubbon.com/free-stock-photography-for-a-graphic-designer/</link> <comments>http://robcubbon.com/free-stock-photography-for-a-graphic-designer/#comments</comments> <pubDate>Sun, 18 Oct 2009 13:12:15 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Freelancing]]></category> <category><![CDATA[copywrite]]></category> <category><![CDATA[free]]></category> <category><![CDATA[graphic design]]></category> <category><![CDATA[photo agencies]]></category> <category><![CDATA[photography]]></category> <category><![CDATA[photos]]></category> <category><![CDATA[stock photography]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=760</guid> <description><![CDATA[<p>All graphic designers and people trying to create eye-catching imagery for print or web with have at some point used stock photography. Stock photography negates the need for hiring expensive photographers can license individual photos for specific uses. The two largest traditional stock photography agencies are Getty Images and Corbis. They offer mostly photographs that [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
src="http://robcubbon.com/images/camera-lens-close-up.jpg" alt="camera lens close up" /></p><p>All graphic designers and people trying to create eye-catching imagery for print or web with have at some point used stock photography.</p><p>Stock photography negates the need for hiring expensive photographers can license individual photos for specific uses. The two largest traditional stock photography agencies are <a
href="http://www.gettyimages.com/">Getty Images</a> and <a
href="http://pro.corbis.com/">Corbis</a>. They offer mostly photographs that have been shot by professional photographers. But these are still quite expensive for a freelance graphic designer as individual images can cost hundreds of dollars.</p><p>Meanwhile there are many alternative agencies like <a
href="http://www.shutterstock.com/">Shutterstock</a>, <a
href="http://www.fotolia.com/">Fotolia</a> and, the one all my clients seem to know <a
href="http://www.istockphoto.com/index.php">iStockphoto</a> (acquired by Getty Images in 2006 although both businesses are kept visually separate). Since these agencies charge less ($1 to $20 per image) this is called sometimes called microstock photography.</p><p>However, hardworking graphic designers may need photographs as place holders or for different options to show a client before they have decided on a finished version. Who would want to spend money on something that may never see the light of day? This is where <strong>free stock photography</strong> comes in!</p><p>Here is my personal list of free stock photography sites.</p><ul><li><a
href="http://www.sxc.hu/home">stock.xchng</a> The best and most reliable for me. Some of the free images are large enough to use for print. Some are of excellent quality. Log in necessary.</li><li><a
href="http://www.morguefile.com/">morgueFile</a> I haven&#8217;t use them for long but I have found some impressive and large images here. No login necessary.</li><li><a
href="http://www.freefoto.com/">FreeFoto</a> Not fantastic. Email address required.</li><li><a
href="http://www.freedigitalphotos.net/">FreeDigitalPhotos</a> OK. Small web images only. No login necessary.</li><li><a
href="http://www.imageafter.com/index.php">ImageAfter</a> I&#8217;ve just started using them but they seem good. You can choose the number of thumbnails viewable on page. Some nice large images. No login necessary</li><li><a
href="http://www.indisain.com/">indisain.com</a> Annoying website in terms of usability but good quality large images.</li><li><a
href="http://photobucket.com/">PhotoBucket</a> Good, large selection. Small web images only. No login necessary.</li></ul><h3>Other sources of free imagery on the internet</h3><p>Of course you can find images in the internet using <a
href="http://images.google.com/">Google image search</a>, <a
href="http://www.deviantart.com/">deviantArt</a>, <a
href="http://www.flickr.com/">Flickr</a> or <a
href="http://picasaweb.google.com">Picasa</a> but these images may be subject to copyright so please check with the owner first.</p><p>Also you can turn a <a
href="http://robcubbon.com/how-to-turn-a-photo-into-an-illustration">photo into an illustration</a> using Illustrator&#8217;s Live Trace function, Photoshop filters or by whatever other means. But, again, it will be always necessary to check the images&#8217; copyright first!</p><p>I hope you found my list of free photo sources helpful. What do you do when searching for free quality stock photography?</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/free-stock-photography-for-a-graphic-designer/feed/</wfw:commentRss> <slash:comments>22</slash:comments> </item> <item><title>How to market yourself #8: How to offer RSS feed and email subscriptions</title><link>http://robcubbon.com/how-to-market-yourself-8-how-to-offer-rss-feed-and-email-subscriptions/</link> <comments>http://robcubbon.com/how-to-market-yourself-8-how-to-offer-rss-feed-and-email-subscriptions/#comments</comments> <pubDate>Mon, 03 Aug 2009 16:46:55 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[Marketing]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[burn]]></category> <category><![CDATA[email]]></category> <category><![CDATA[feed]]></category> <category><![CDATA[feedburner]]></category> <category><![CDATA[rss]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=677</guid> <description><![CDATA[<p>So you&#8217;ve got your self-hosted WordPress blog set up, optimized and have already published a few great posts and you want to offer an RSS feed and email subscription to your posts. What is RSS? RSS stands for Real Simple Syndication and is a format used to publish frequently updated content from the web on [...]</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></description> <content:encoded><![CDATA[<p><img
style="border: 0; float: right; margin: 0px 0px 0px 10px;" src="http://www.robcubbon.com/images/3d-rss-icon.png" alt="3D RSS icon with reflection" />So you&#8217;ve got your <a
href="http://wordpress.org/">self-hosted WordPress</a> blog set up, optimized and have already published a few great posts and you want to offer an RSS feed and email subscription to your posts.</p><h3>What is RSS?</h3><p>RSS stands for <strong>Real Simple Syndication</strong> and is a format used to publish frequently updated content from the web on the web. The RSS feed is your posts&#8217; content without any of your website&#8217;s style so it will contain just the titles, body text and image paths of your posts. So you better make your image paths absolute not relative!</p><p>The benefit of RSS is the aggregation of your favorite websites from multiple sources in one place. RSS content can be read using software called an &#8220;RSS reader&#8221;, &#8220;feed reader&#8221; or an &#8220;aggregator&#8221;, which can be on your browser or on your desktop.</p><h3>How to set up a Feedburner feed</h3><p>Google has bought <a
href="http://feedburner.google.com/">FeedBurner</a>, so you need to sign in to Google and then go to Feedburner and look for where it says something like &#8220;Burn a feed right this instant&#8221;. WordPress blogs already come with a feed so you can enter either your blog&#8217;s URL (eg: http://www.my-blog.com) or your blog&#8217;s feed (eg: http://www.my-blog.com/feed, http://www.my-blog.com/?feed=rss2), check a box if you are a podcaster and hit &#8220;Next&#8221;.</p><p>You will next be greeted with a page where you can change your feed title and feed address. Once you are satisfied with those hit &#8220;Next&#8221; again. After this there are further Feedburner options to choose from &#8211; most of which I ignore, it&#8217;s FeedBurner&#8217;s email subscription that rocks but I&#8217;ll come to that later!</p><h3>Install the FeedBurner plugin</h3><p>For the best results using FeedBurner with your self-hosted WordPress site, the <a
href="http://wordpress.org/extend/plugins/feedburner-plugin/">FeedBurner FeedSmith plugin</a> is recommended. It will detect all ways to access your feed (e.g. http://www.my-blog.com/feed/ or http://www.my-blog.com/wp-rss2.php, etc.), and redirect them to your FeedBurner feed so you can track every possible subscriber.</p><h3>WordPress settings</h3><p>Feedburner can only handle feeds under 512K. In WordPress, make sure your feed doesn&#8217;t exceed this in the administration area, by going Settings > Reading, &#8220;For each article in a feed, show&#8221; &#8211; you can choose &#8220;Summary&#8221; although I like to have &#8220;Full text&#8221; and don&#8217;t put more than 50 in &#8220;Syndication feeds show the most recent&#8221; if you write long posts.</p><h3>What is email subscription and how can you set it up?</h3><p><img
style="border: 0; float: right; margin: 0px 0px 0px 10px;" src="http://www.robcubbon.com/images/3d-email-icon.png" alt="3D email icon with reflection" />Email subscription to your blog allows those who have signed up for it to receive your blog posts in their inbox. You can use Aweber to do this but I&#8217;ll show you how to do it for free with FeedBurner.</p><p>With your feed selected click the &#8220;Publicize&#8221; tab, then click &#8220;Email Subscriptions&#8221; on the left, making sure &#8220;Feedburner&#8221; is selected, and click &#8220;Activate&#8221;. This will then present you with some HTML code in the box which you will need to copy and paste somewhere in your website.</p><p>Once signed up a subscriber will receive your posts as emails shortly after they are published. Google/FeedBurner handles all the backend work &#8211; subscribers verify themselves by email and have the option of unsubscribing at the bottom of every email they receive.</p><h3>Design your posts so they look great as an email</h3><p>Underneath the &#8220;Email Subscriptions&#8221; link in FeedBurner whilst in the &#8220;Publicize&#8221; tab there is another link entitled &#8220;Email Branding&#8221;. Do spend some time on this page formatting text, headings and links –  you can specify the font, size and color. You can also add your logo and specify the title of the email.</p><h3>Advertise the RSS feed and email subscription on your website</h3><p>On my website I advertise the RSS feed with the familiar RSS icon which is linked to <a
href="http://feeds.feedburner.com/robcubbon/MBQo">my FeedBurner feed</a>. And I use the familiar email icon which takes you to the <a
href="http://robcubbon.com/subscribe/">page where you can subscribe to my posts by email</a>. I&#8217;ve also got some general information about feeds on this page so that my readers can decide which is the best way for them to subscribe to my blog.</p><h3>What&#8217;s the benefit of RSS and email subscription?</h3><p>They are both fantastic marketing tools. RSS brings in traffic as it is, for some people, an easy way of reading a site&#8217;s content. Email subscription can work like a weekly newsletter to your subscribers with a link back to your site. A subscriber is always worth more than a visitor because, more often than not they will return to your site again and again. The added advantage of the email subscribers is that you have the list of their email address&#8217;s although I wouldn&#8217;t advocate sending them much in the way of extra mail.</p><p><p>This is an article from <a
href="http://robcubbon.com">Rob Cubbon</a><br/> <br/> Please download your free copy of <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">How to Market Yourself Online</a> a PDF eBook which contains all my best tips on internet marketing, social media and blogging.</p></p>]]></content:encoded> <wfw:commentRss>http://robcubbon.com/how-to-market-yourself-8-how-to-offer-rss-feed-and-email-subscriptions/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 1/72 queries in 0.041 seconds using disk: basic
Object Caching 3736/3957 objects using disk: basic
Content Delivery Network via cdn.robcubbon.com

Served from: robcubbon.com @ 2012-05-17 08:47:09 -->
