<?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; Internet</title> <atom:link href="http://robcubbon.com/internet/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>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>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>Creating Content and Experiences People Want</title><link>http://robcubbon.com/creating-content-experiences-people-want/</link> <comments>http://robcubbon.com/creating-content-experiences-people-want/#comments</comments> <pubDate>Tue, 26 Jul 2011 11:55:15 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[content]]></category> <category><![CDATA[epic]]></category> <category><![CDATA[testing]]></category> <category><![CDATA[usability]]></category> <category><![CDATA[WordPress]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=4627</guid> <description><![CDATA[<p>I&#8217;ve only used a gun on one occasion – the results were catastrophic. That sentence has nothing to do with this article, its only purpose was to get your attention. And that second sentence&#8217;s job was to keep you interested. Once I have got you to read the headline, I have maybe 2 to 3 [...]</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-4634" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/07/gun-pow1.jpg" alt="gun-pow" width="600" height="390" /></p><p>I&#8217;ve only used a gun on one occasion – the results were catastrophic.</p><p>That sentence has nothing to do with this article, its only purpose was to get your attention. And that second sentence&#8217;s job was to keep you interested.</p><p>Once I have got you to read the headline, I have maybe 2 to 3 seconds to get you to hang around and read the rest of this article.</p><p>This is the way of the internet. In his book <a
href="http://robcubbon.com/go/dontmakemethink">Don&#8217;t Make Me Think</a>, Steve Krug advises us to reduce &#8220;noise&#8221; on web pages. With less distractions visitors understand the site, feel smarter, and are more likely to return.</p><p>And <a
href="http://www.bbc.co.uk/news/science-environment-14145045">recent experiments at Columbia University</a> show people have poor recall of facts that are available on computers (but enhanced recall of where they are stored). Computers and the internet are changing the nature of our memory and the way we think. And online, at least, we have a shorter attention span.</p><p><em>What does all this mean to you?</em> In a web of trillions of pages and a complex life full of &#8220;noise&#8221; you need to get yourself heard. So here are some content, usability and life tips to get you started:</p><h2>Add impact and decrease noise</h2><p>With everything (not just websites but with emails, documents, presentations, your desk) decrease clutter. Go through your sidebars and headers and ask yourself what is really necessary.</p><p>When writing emails to clients reduce everything down to <em>what they need to know</em>. Don&#8217;t tell them how hard the job was, tell them you&#8217;ve done it.</p><p>De-clutter your writing. Do not use a 5-word sentence when a 4-word sentence will do.</p><h2>Make sure you are creating content that the visitor needs</h2><p>We all know that the content is all important. But if you&#8217;ve been publishing for a while and no-one seems to be listening, you may need to present the content in terms of its usefulness to the user.</p><p>Try to establish an emotional need in the visitor for the material you are offering.</p><p><strong>Spark curiosity, point out benefits and emphasise the uniqueness of your content.</strong></p><h2>Be consistent</h2><p>Try to maintain consistent color schemes in your websites. Use the same color for headlines, the same color for subheads, the same color for links (and make sure they always have a different hover state).</p><p>Be consistent in everything you do online. Always maintain the same tone, same avatar, same attention to spelling and grammar (whilst always keeping an open mind about your goals and how to achieve them.)</p><p>Blog, comment and tweet consistently. This is more important than quantity. If you can&#8217;t maintain the quality, drop the frequency, but make sure you do everything well and consistently. Who would you want to work with, someone who bursts on the scene with a flurry of activity or someone who&#8217;s been doing great work for a period of time?</p><h2>Visualise and illustrate</h2><p>Glance at the example below. Is it better to present the options with text or buttons? Which will the user react to faster?</p><p><img
class="aligncenter size-full wp-image-4649" title="" src="http://cdn.robcubbon.com/wp-content/uploads/2011/07/button-vs-text.jpg" alt="button-vs-text" width="559" height="173" /></p><p>Apply this principle elsewhere. Don&#8217;t make notes for yourself make mind maps with lines, arrows and circles to represent the relationship between the elements. Illustrate web how-to&#8217;s with screenshots.</p><h2>Divide information down into bite-sized chunks</h2><p>When writing long documents it has always been important to order the information logically. Online these information chunks need to be visually differentiated.</p><p>Reading a European novella on holiday is one thing, combing the internet for information is quite another. Consider the reader when you are presenting text. If your information competes favorably against distractions your visitors will reward you with loyalty.</p><h2>Simple vs Epic – Simplicity does not mean &#8220;dumbing down&#8221;</h2><p>I&#8217;m a huge fan of Corbett Barr from <a
href="http://www.thinktraffic.net">Think Traffic</a>. Corbett&#8217;s USP is to concentrate on creating great content rather than relying on the latest SEO or SM trick to increase interest in your site. Corbett will encourage you to <a
href="http://thinktraffic.net/write-epic-shit">write epic sh*t</a> – which means to inspire people, change lives and blow people away with your usefulness.</p><p>There does seem to be a movement towards creating longer blog posts. For example, another favorite blogger of mine, Glen Allsopp went over the 5,000 word mark with a post on <a
href="http://www.viperchill.com/blogging-conversions/">improving conversions</a>. However, if you scan through the post you will see that no paragraphs are longer than 5 lines and the article is continually broken up by images, video, subheads and sub-subheads.</p><p>But, epic doesn&#8217;t have to mean long. One of the most successful bloggers out there, <a
href="http://sethgodin.typepad.com/">Seth Godin</a>, usually only writes 200-300 word articles.</p><h2>Test and experiment</h2><p>Don&#8217;t just imagine what people want – test. There are a number of free tools that can help you do this.</p><ul><li><strong><a
href="http://www.google.com/analytics/">Google Analytics</a></strong> – Use it to see what your visitors that stay the longest are searching for, what are the most popular pages, which are the most popular paths towards your goals</li><li><strong><a
href="http://www.google.com/websiteoptimizer">Google Website Optimizer</a></strong> – A/B test squeeze pages and sales pages</li><li><strong>Email subject lines</strong> – A/B test emails with different subject lines to see which is the phrase your subscribers preferred to open and click on</li><li><strong>Email different posts</strong> – Send emails with a few links and see which link is most clicked on</li><li><strong>Try different sidebars and headers</strong> – Write a resource page giving away your best information with links your best articles. Add a very visible link to it on your website and see if it&#8217;s popular. Change the wording of the link a few weeks later and see which is the most popular way of wording what you do best.</li><li><strong><a
href="https://adwords.google.com/select/KeywordToolExternal">Google Keyword Research Tool</a></strong> – discover what words are being searched for in your niche</li><li><strong>Use the <a
href="http://wordpress.org/extend/plugins/redirection/">Redirection plugin</a></strong> for WordPress to test which positions of which links do best</li><li><strong>Use <a
href="http://www.clicktale.com/">ClickTale</a> and <a
href="http://userfly.com/">UserFly</a></strong> to evaluate the user experience</li></ul><h2>This is all about <del
datetime="2011-07-25T20:36:50+00:00">me</del> you</h2><p>These areas: creating content, imagery, impact, consistency and the ability to test, are ones I&#8217;m constantly trying to improve in my online business. I know I just skimmed the surface as to how to do this. But I hope these reminders were as useful to you as they are to me.</p><p>I really need to run the credits for this article. Thanks for the inspiration to the two bloggers mentioned in this article: Corbett Barr and Glen Allsopp. I have also been receiving some great advice from Chris Kahler from <a
href="http://bloggeritus.com/">BloggerITUS</a>.</p><p>Further thanks go to my new Google+ friends who contributed to <a
href="https://plus.google.com/111527063408109222423/posts/Dj9F5ioQpDL">a great discussion</a> on this subject and provided a lot of the ideas here. Apologies if there&#8217;s anyone who can&#8217;t follow that link but you can always <a
href="http://robcubbon.com/contact-rob-cubbon/">contact me</a> if you want an invite.</p><p>And, as always, I&#8217;m interested to hear what you think about your ideas of what to focus on as you create better content for your users and better experiences for your clients.</p><p
class="small">(PS. I&#8217;ve never really used a gun before – that was creative license!)</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/creating-content-experiences-people-want/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>Multilingual Website with WordPress</title><link>http://robcubbon.com/multilingual-website-wordpress/</link> <comments>http://robcubbon.com/multilingual-website-wordpress/#comments</comments> <pubDate>Wed, 23 Mar 2011 12:24:06 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[Video]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[languages]]></category> <category><![CDATA[multi-lingual]]></category> <category><![CDATA[translation]]></category> <category><![CDATA[wpml]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=3649</guid> <description><![CDATA[<p>The internet is a big space but the world is even bigger. Although English is the most widely used language on the internet at the moment, in less than 5 years it will be Chinese. We read in our native language, search in our native language and join social groups who use our native language. [...]</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/03/multi-lingual-website.jpg" alt="people in the world" title="" width="600" height="369" class="alignnone size-full wp-image-3650" /></p><p>The internet is a big space but the world is even bigger. Although English is the most widely used language on the internet at the moment, in less than 5 years it will be Chinese.</p><p>We read in our native language, search in our native language and join social groups who use our native language. Also, research suggests that we put more credence into the words we read in our native language.</p><p>I recently created a multilingual website for an <a
href="http://www.iegoa.com/">English School in Goa, India</a> and with <a
href="http://wordpress.org/">WordPress</a> and <a
href="http://robcubbon.com/go/wpml">WordPress Multilingual (WPML)</a> plug-in from <a
href="http://www.icanlocalize.com/my/invite/9681">ICanLocalize</a>.</p><h3>Video of a multilingual website with WordPress and WPML plug-in</h3><p><iframe
title="YouTube video player" width="600" height="366" src="http://www.youtube.com/embed/6HEYSzXO4b8" frameborder="0" allowfullscreen></iframe></p><p>Here is <a
href="http://www.youtube.com/watch?v=6HEYSzXO4b8">my video of the front and back end of the multilingual website</a>.</p><p>This got me thinking how easy it is to make any sort of website multilingual and roll out the SEO benefits of WordPress into different markets. Here&#8217;s how you do it.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/wpml.jpg" alt="wpml" title="" width="600" height="100" class="alignnone size-full wp-image-3666" /></p><h3>Install</h3><p>First, install WordPress on your web host. Most hosts have good one-click installs these days but if you want to <a
href="http://robcubbon.com/how-to-market-yourself-3-how-to-install-wordpress-blog-on-your-site">do it manually</a> you can.</p><p>Secondly, you need to purchase <a
href="http://robcubbon.com/go/wpml">WordPress Multilingual plug-in</a> from <a
href="http://www.icanlocalize.com/my/invite/9681">ICanLocalize</a>. Make sure you comply with their minimum requirements. These are quite stringent as you are required to make the WordPress permalink structure to be either the default or /%year%/%monthnum%/%postname%/. And, definitely use a Linux/Unix server rather than a Windows one even though this is not mentioned as one of their requirements.</p><p>Then, the plug-in can be downloaded and installed just like any other plug-in.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/language-switcher.jpg" alt="language switcher" title="" width="600" height="100" class="alignnone size-full wp-image-3661" /></p><h3>Set up</h3><p>Once installed, the plug-in will walk you through an easy process where you choose the default language (in my case, English) and the other languages you intend to translate the site into (which can be added to later). WPML (WordPress Multilingual plug-in) comes with over 40 languages to choose from but you can also add your own language variants.</p><p>Finally, you need to add the language switcher which is a drop-down menu for visitors to select their preferred language. This is available as a widget, but I inserted it into the theme using this code: <code>&lt;?php do_action ('icl_language_selector'); ?&gt;</code>.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/translating1.jpg" alt="" title="translating" width="600" height="100" class="alignnone size-full wp-image-3664" /></p><h3>Entering the translations</h3><p>I had the links on the top navigation bar listed with the WordPress command <code>&lt;?php wp_list_pages ('sort_column=menu_order&#038;title_li='); ?&gt;</code>. Once this is set up the top navigation bar will change depending on which language is selected.</p><p>The administration area for entering the translations is very intuitive – it uses flags to denote the translated pages. There is no need to enter the different languages in every page. If you forget to translate a page it won&#8217;t be listed using a WordPress command nor will that language be present in the language switcher when the page is viewed in another language. So, no annoying 404 errors!</p><p>If you&#8217;re concerned with SEO (who isn&#8217;t?), the page and site titles can be translated so you have complete control of the most important areas for keywords.</p><p>You can even employ <a
href="http://www.icanlocalize.com/my/invite/9681">ICanLocalize</a> via the back-end to do your translations for you direct into your site!</p><p>You can also translate sidebar areas, widgets, footers and every bit of HTML text in your website. Here is some code I used to identify the different languages with PHP:</p><blockquote><p><code>&lt;?php if(ICL_LANGUAGE_CODE=='en'){ ?&gt;<br
/> ...English content here...<br
/> &lt;?php } if(ICL_LANGUAGE_CODE=='ja'){ ?&gt;<br
/> ...Japanese content here...<br
/> ...etc...<br
/> &lt;?php } ?&gt;<br
/> </code></p></blockquote><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/03/contact.jpg" alt="contact" title="" width="600" height="100" class="alignnone size-full wp-image-3677" /></p><h3>Contact forms</h3><p>If you require a contact form there is a very simple solution. <a
href="http://wordpress.org/extend/plugins/contact-form-7/">Contact Form 7</a> plug-in and WPML plug-in are a match made in heaven! Contact Form 7 is translated into around 40 languages. So, once you have Contact Form 7 installed, click &#8220;Contact&#8221; and &#8220;Add New&#8221; and you can choose the language of the new contact form.</p><p>Here you will get a normal contact form already translated complete with the 15 or so success or error messages (&#8220;Your message was sent successfully&#8221;; &#8220;Invalid email address&#8221; etc.) in 40 different languages. So, no need to send the contact page to the translators!</p><h3>Conclusion</h3><p>I only tried the multi-lingual plug-in with WordPress pages but didn&#8217;t translate posts as this website had no blog but I&#8217;m sure the plug-in can handle this just as well.</p><p>The support at the <a
href="http://forum.wpml.org/">WPML forum</a> is OK but expect to wait at least 24 hours for responses. Online <a
href="http://robcubbon.com/go/wpml">WPML</a> can be a little confusing. There is no link to the <a
href="http://forum.wpml.org">forum</a> at <a
href="wpml.org">WPML</a> and no link back to the main site from the forum. Plus there is the <a
href="http://www.icanlocalize.com/site/">ICanLocalize</a> site where you purchase the license. I found the distinctions between these separate online entities unclear.</p><p>But don&#8217;t let these minor quibbles put you off, the WPML plug-in has been around for a long time and is well-supported. It has only just become a premium plug-in, having been free for years, and the developers are committed and professional.</p><p>What about you? Have you ever created a multi-lingual site? Has anyone else had experience using the WordPress Multilingual plug-in?</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/multilingual-website-wordpress/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Small Business Growth – a Web Design Case Study</title><link>http://robcubbon.com/small-business-growth-web-design-case-study/</link> <comments>http://robcubbon.com/small-business-growth-web-design-case-study/#comments</comments> <pubDate>Tue, 01 Feb 2011 10:52:16 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[design business]]></category> <category><![CDATA[expansion]]></category> <category><![CDATA[growth]]></category> <category><![CDATA[process]]></category> <category><![CDATA[system]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=3376</guid> <description><![CDATA[<p>&#8220;It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness, it was the epoch of belief, it was the epoch of incredulity, it was the season of Light, it was the season of Darkness, it was the spring of hope, 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>]]></description> <content:encoded><![CDATA[<p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/01/small-plant.jpg" alt="Small plant" title="" width="600" height="367" class="alignnone size-full wp-image-3380" /></p><blockquote><p>&#8220;It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness, it was the epoch of belief, it was the epoch of incredulity, it was the season of Light, it was the season of Darkness, it was the spring of hope, it was the winter of despair, we had everything before us, we had nothing before us, we were all going direct to heaven, we were all going direct the other way …&#8221;</p><p
class="small">from <strong>A Tale of Two Cities</strong> by Charles Dickens</p></blockquote><p>The economy is barely recovering. Here in the UK there was an actual contraction of the economy in the last quarter of 2010. However, like Dickens&#8217; description of late eighteenth century revolutionary Europe, this period remains paradoxically promising for those of us who have turned our backs on corporate structures and elected instead to work on our small business at home.</p><p>You notice I said &#8220;work on&#8221; our businesses, not &#8220;work at&#8221; our businesses – because that&#8217;s the point.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/01/revolution.jpg" alt="revolution" title="" width="600" height="100" class="alignnone size-full wp-image-3382" /></p><h3>Why you should grow your business</h3><p>It is even more important than it usually is to expand and systematize your small business. Here are some reasons:</p><ul><li>As a designer, for example,  you are <strong>only capable of earning so much money per hour</strong>. We get tired, we get sick – dare I say it – one day, we&#8217;ll get old. We need to find ways of accruing income separately from hours worked. Systematizing work will enable you to explain to partners and freelancers more effectively what you do and what to expect.</li><li><strong>Market structures tend towards an oligopoly</strong>. I mean – all sectors of industry are eventually controlled by a few (3, 4, 5, 6, 7-ish) key players. Look at the banking, energy, manufacturing and retail industries! Some of the few exceptions to this rule are sectors like internet marketing and web design. It&#8217;s no coincidence that all the opportunities for small players are online – the internet is in it&#8217;s infancy and there&#8217;s lots up for grabs. Already internet search and advertising has defaulted to an oligopoly. It&#8217;s time to move fast before the big boys swallow us up!</li><li>So while there&#8217;s a threat from up above; there&#8217;s problems down below. There are <strong>job boards, contest sites, crowdsourcing and people willing to work for free</strong>. Sure, if you&#8217;re experienced this form of competition won&#8217;t harm you. But it is a growing phenomenon and you should arm yourself against it.</li></ul><p>If you want to grow your business you have three options:</p><ol><li>You get lucky (not going to happen)</li><li>You invent some original and revolutionary product or service (possible but unlikely)</li><li>Take what you already have, perfect it, enhance it and expand it in every way you can (do this!)</li></ol><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/01/spring-flowers.jpg" alt="spring flowers" title="" width="600" height="100" class="alignnone size-full wp-image-3386" /></p><h3>How to grow your design business</h3><p>Wealth is most often linked with exclusive ownership or control. You may make a living with someone&#8217;s idea or product, but you stand a much better chance with your own. If your product saves the client time, then you can make a fortune.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/01/ear.jpg" alt="ear" title="" width="600" height="100" class="alignnone size-full wp-image-3389" /></p><p><strong>Listen to your customers – first and foremost</strong></p><p>As a website designer/developer you may start out by supplying HTML and CSS files for someone else to create a site with. This way you are just a small cog in a larger machine.</p><p>But, maybe there&#8217;s more you can do? I have found again and again that clients would rather I do as much as possible. So a small design job can become much bigger with domain name registration, web hosting, website maintenance and email all coming into play.</p><p>So, I have prepared &#8220;packages&#8221; or, more accurately, produced whole systems of web marketing that clients can purchase in one go. Added to these packages are further annual fees for website and email hosting and maintenance.</p><p>The benefits of offering these packages are many but there are two main ones:</p><ul><li>The client gets peace of mind that their web presence will be professionally designed, developed and maintained with all the various benefits (on site optimization, analytics, speed) clearly itemized.</li><li>The designer/developer gets the benefit of annual fees coming in plus the website in a safe, optimized and monitored environment keeping the chances of problems or downtime down to a minimum.</li></ul><p>People will pay a premium price for a service that takes away hard work and confusion.</p><p>Here are some ideas of one design and marketing package that could be offered to a client:</p><ul><li><strong>Logo</strong> and identity design.</li><li><strong>Business stationery:</strong> 500 business cards, letterheads, compliment slips printed and delivered).</li><li><strong>Website</strong> and blog designed, developed and hosted.</li><li><strong>Social media:</strong> Twitter, Facebook and YouTube accounts set up and profile pages designed to fit in with identity.</li><li><strong>SEO:</strong> on site optimization plus review of search engine indexing and performance.</li><li><strong>Mailing list:</strong> <a
href="http://aweber.com/?352688">Aweber</a> mailing list set up and email template designed.</li><li><strong>Email</strong> set up.</li></ul><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/01/smile.jpg" alt="smile" title="" width="600" height="100" class="alignnone size-full wp-image-3390" /></p><h3>Make sure you like it</h3><p>Are you interested in offering these extra services? Or are you only interested in website design and that&#8217;s it? Personally, the whole area of marketing really interests me so I&#8217;m happy offering these services. But, if you only like creating beautiful websites, maybe this isn&#8217;t for you.</p><p>One thing&#8217;s for sure – don&#8217;t concentrate on just making money. Concentrate on delivering a better product or service. You&#8217;ll never win competing on price &#8230; so go for quality!</p><h3>Conclusion</h3><p>As I&#8217;ve said, I know this isn&#8217;t for everybody. What about you? Are you expanding or specializing? Have you any further ideas for other services a web designer can offer?</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/small-business-growth-web-design-case-study/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>How Web Designers Fare in a Recession</title><link>http://robcubbon.com/how-web-designers-fare-in-a-recession/</link> <comments>http://robcubbon.com/how-web-designers-fare-in-a-recession/#comments</comments> <pubDate>Tue, 25 Jan 2011 13:35:38 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[downturn]]></category> <category><![CDATA[economy]]></category> <category><![CDATA[graphic design]]></category> <category><![CDATA[recession]]></category> <category><![CDATA[web design]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=3349</guid> <description><![CDATA[<p>This is a guest post from Bailey Digger about the realities of web design in challenging economic times. Some jobs are recession-proof while others suffer more when the economy is bad. Web design is not an essential service but there are several reasons why it can be considered recession-proof: Web designers can seek work in [...]</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/01/recession.jpg" alt="recession" title="" width="598" height="378" class="alignnone size-full wp-image-3363" style="border: 1px solid #dadada"/></p><blockquote><p>This is a guest post from Bailey Digger about the realities of web design in challenging economic times.</p></blockquote><p>Some jobs are recession-proof while others suffer more when the economy is bad. Web design is not an essential service but there are several reasons why it can be considered recession-proof:</p><ul><li>Web designers can <strong>seek work in related fields</strong>. You can find openings in print media, advertising agencies and many other organizations where design plays a role.</li><li>When businesses are not doing well, they look for ways to <strong>boost their income and popularity</strong>, and the best way to do this is by <a
href="http://www.design-training.com/news/20100204/880/recession-inspires-increased-demand-for-web-designers.html">paying attention to their websites</a>. Web usage continues to increase, irrespective of the recession. So web designers are going to be in demand to design new sites or tweak existing ones.</li><li>Organizations are moving to the web anyway as it offers significant <strong>advantages to customers</strong> – they don’t have to waste time or money in getting to and from retail outlets. So web designers are sought after to create the shopping sites.</li><li>Web designers that know how to <strong>manage entire projects</strong> are always in demand, no matter how the economy is doing. So, think of branching out and doing much more than just web design; when you’re a designer of many talents, it’s easier to find a job when the going gets tough.</li></ul><p>According to the BLS, the <a
href="http://www.bls.gov/oco/ocos090.htm">job outlook for graphic designers is expected to grow 13 percent</a>, and even though the competition is expected to be fierce, web designers and animation experts have the most opportunities. So if you love anything to do with design, have a creative mind and want to work as a web designer, it makes sense to choose a degree in graphic design so that you have options in economic downturns. When you’re multi-faceted and hold more than one skill, you can switch between graphic and web design, and find jobs in any field related to design.</p><blockquote><p>This guest post is contributed by <strong>Bailey Digger</strong>, she writes on the topic of <a
href="http://webdesigndegree.com/">web design degree programs</a> . She welcomes your comments at her email: baileydigger189(@)gmail(.)com.</p></blockquote><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/01/queue.jpg" alt="queue" title="" width="600" height="157" class="alignnone size-full wp-image-3360" /></p><p>Thank you, Bailey. Speaking as a freelancer that does web and print design, I have definitely seen a shift to the web since this recession took hold. Although how much of this shift was due to the recession is debatable.</p><p>Web designers (and all sorts of creative professionals) are now being hit by the recession as well as by competition from job boards, contests, crowdsourcing and spec work. Bailey is right when she says we need to get creative with our businesses – offering multiple services (web design, SEO and SM) and marketing these products effectively.</p><p>Finally, I couldn&#8217;t agree more with Bailey that people with skills prosper. You&#8217;re nothing without skills – work on them throughout your professional life!</p><h3>Conclusion</h3><p>As ever, I&#8217;m always fascinated to hear your thoughts on this subject. Are you a designer who has felt the force of the recession? What are the best ways to deal with 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/how-web-designers-fare-in-a-recession/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>How to Sell a Website to a Client</title><link>http://robcubbon.com/how-to-sell-website-to-client/</link> <comments>http://robcubbon.com/how-to-sell-website-to-client/#comments</comments> <pubDate>Wed, 12 Jan 2011 17:45:42 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[visual]]></category> <category><![CDATA[website]]></category> <category><![CDATA[website design]]></category> <category><![CDATA[website development]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[www]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=3276</guid> <description><![CDATA[<p>I often get quote requests for websites. The requests vary greatly. Some will be for small sites; some large sites. Some will want a logo; others won&#8217;t. Some will have a website already they want to improve; others will want a brand new one. However, I often write the same answers to client requests. Over [...]</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/01/money-changing-hands-on-laptop.jpg" alt="money-changing-hands-on-laptop"  width="600" height="373" class="alignnone size-full wp-image-3284" /></p><p>I often get quote requests for websites. The requests vary greatly. Some will be for small sites; some large sites. Some will want a logo; others won&#8217;t. Some will have a website already they want to improve; others will want a brand new one.</p><p>However, I often write the same answers to client requests. Over the years, I&#8217;ve kept what I have written and constantly reviewed it so that new requests can be answered with a quick copy and paste!</p><p>Here is an example of what I tend to write to potential clients about a fairly standard website set up:</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/01/email.jpg" alt="email" title="" width="600" height="100" class="alignnone size-full wp-image-3290" /></p><h3>Main website email</h3><blockquote><p>Thank you for your enquiry. I will definitely be able to help you design and build your website. Here is what will be included in the package:</p><ul><li><strong>The ability to add, edit and delete content </strong>You will be able to create pages, insert images and edit content through an intuitive administration area.</li><li><strong>SEO</strong> Your site&#8217;s code will be optimized for search engines.</li><li><strong>Get the right URLs </strong>Your site&#8217;s URLs will always include real words separated by hyphens (for example: http://www.your-site.com/contact-us/).</li><li><strong>Sitemap</strong> I will create an XML sitemap which is a widely adopted search engine standard that helps search engine robots crawl your site. Your sitemap will also be submitted at Google Webmaster Tools to ensure that your site is properly indexed. Other search engines will also be notified.</li><li><strong>www or non-www</strong> You can choose whether your site will have a www or non-www web address.</li><li><strong>Follow web standards</strong> Your site will be written with standards compliant code wherever possible.</li><li><strong>Mobile friendly</strong> Your site will have a special mobile version when viewed by a handheld device.</li><li><strong>Speed</strong> Your site will be created with the smallest and fewest number of files as well as caching devices to ensure minimum loading times.</li><li><strong>Visitor statistics</strong> You will have the ability to continually monitor your site&#8217;s visitors, how they reached the site, their geographical location, how many pages they viewed, etc.</li><li><strong>Social networking and bookmarking buttons</strong> I will enable your visitors to easily vote for your pages on various social bookmarking and networking sites, eg. Twitter, Digg or Facebook.</li><li><strong>Contact page</strong> I will create a contact page with a form which, when filled out, will be sent direct to your email.</li></ul></blockquote><p>Obviously the bullet points can be rearranged depending on the client request.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/01/blackboard.jpg" alt="blackboard" title="" width="600" height="100" class="alignnone size-full wp-image-3291" /></p><h3>Education</h3><p>Creating a new website for a client can be a process of educating the client on what works and doesn&#8217;t work on the World Wide Web. For example, some people may want a few static pages put up and then hope for the best. I try to explain that the internet is a living and evolving organism and, as such, your website would be better off living and evolving as well.</p><p>I always try to persuade my clients to write regular content. I don&#8217;t specifically mention the word &#8220;blog&#8221; if they haven&#8217;t mentioned it first. For some reason, I find clients can be initially resistant to the idea of a blog. So, until they &#8220;get it&#8221; I always try to reserve an area of the website for constantly updated content.</p><p>Similarly, I found that clients always came back to me to ask me to set up an email list for them. So now I always try to pre-empt this by persuading them to start one immediately.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/01/wordpress.jpg" alt="wordpress" title="" width="600" height="100" class="alignnone size-full wp-image-3292" /></p><p>I like to use WordPress as a CMS as I believe it provides the client with a intuitive back-end to manage the site as well as a coherent structure and good SEO &#8220;out of the box&#8221;. If I need to introduce the client to WordPress, I say the following:</p><blockquote><p>WordPress is a robust and feature-full web publishing platform with a focus on aesthetics, web standards and usability.</p><p>It’s easy to use. There is excellent support documentation and forums because, literally, millions of people use it. It’s database driven so you can transport it to another CMS if you really want to. Anyone can edit a WordPress site (with a username and password) from anywhere in the world.</p><p>WordPress, as it says on it’s homepage, is both free and priceless at the same time.</p></blockquote><p>I usually do a google for &#8220;WordPress websites&#8221; or look on the <a
href="http://wordpress.org/showcase/">WordPress showcase</a> to get some links to WordPress sites that the client may like.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2011/01/design.jpg" alt="design" title="" width="600" height="100" class="alignnone size-full wp-image-3295" /></p><h3>Design</h3><p>I like to show the client a Photoshop visual of the site before starting the development stage. Here is how I explain this:</p><blockquote><p>I will first present a visual of how I expect the home page to look. You will be able to make comments and suggestions on this visual which will be amended and agreed upon. The design of other pages can also be finalized through this process if you wish.</p></blockquote><p>I used to say that the visual stage should never take more than 4/5 rounds but now I don&#8217;t believe this is necessary.</p><p>I send the visuals to the client as links to a web pages presenting the image and the page title. I find this better for the client to actually see the pages in a browser rather than just sending a JPG in an email.</p><h3>Conclusion</h3><p>I hope this may help other web designers and developers as well as anyone who want a website designed and developed. If you are a designer or a developer, do you have similar processes? Do you have any other tricks for client communication in this instance?</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-sell-website-to-client/feed/</wfw:commentRss> <slash:comments>15</slash:comments> </item> <item><title>How to create your own website &#8211; 4 essential steps</title><link>http://robcubbon.com/create-your-own-website-4-essential-steps/</link> <comments>http://robcubbon.com/create-your-own-website-4-essential-steps/#comments</comments> <pubDate>Mon, 15 Nov 2010 14:08:30 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[hosts]]></category> <category><![CDATA[keyword research]]></category> <category><![CDATA[url]]></category> <category><![CDATA[web design]]></category> <category><![CDATA[website]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2964</guid> <description><![CDATA[<p>Google estimates there are over 1 trillion (as in 1,000,000,000,000) unique web pages on the web and there are an estimated 7.3 million new ones added every day – but don&#8217;t let these figures overwhelm you, you found me. My website was set up with only a few dollars and a bit of common sense. [...]</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/11/computer-screen.jpg" alt="computer screen" title="" width="600" height="425" class="aligncenter size-full wp-image-2973" /></p><p>Google estimates there are over 1 trillion (as in 1,000,000,000,000) unique web pages on the web and there are an estimated 7.3 million new ones added every day – but don&#8217;t let these figures overwhelm you, you found me. My website was set up with only a few dollars and a bit of common sense. And, if I can create a valuable online resource from nothing, so can you!</p><p>Websites need authority and reputation and that is built up over months and years. So every second you spend thinking about creating a website is an authority-gathering second wasted.</p><h3>Do it now!</h3><p>It is almost impossible to make &#8220;bad&#8221; or &#8220;wrong&#8221; decisions with websites as they can be corrected. </p><p>On the web, content is separated from design. So if you think you have made a mistake with the look of the site, it is possible to change it without touching the content. The content can be held in a database which can be moved from webserver to webserver, from web address to web address, from Content Management System to Content Management System. </p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/11/words.jpg" alt="words" title="" width="600" height="100" class="alignnone size-full wp-image-2974" style="margin-top: 15px;"/></p><h3>1. Purpose/Niche &#038; Keyword research</h3><p>The first thing you must decide upon (or, most likely, you have decided already) is it&#8217;s purpose. What do you want your website to do for its visitors and what do you want its visitors to do with the website?</p><p>For any website to succeed, it is critical to know the audience and the means to reach them. However, even if you think you know your website&#8217;s purpose and audience, research is a must! Get yourself over to <a
href="https://adwords.google.com/select/KeywordToolExternal">Google Keyword Research</a>, and key in the words you would use to describe the website&#8217;s purpose or niche. Here you will find how many times a month these words are used in Google searches and suggestions for other terms you could use.</p><p>Say you want to build a website about &#8220;nicotine cessation&#8221; – you will find that these keywords have 2,000 searches on Google every month but that &#8220;giving up smoking&#8221; has 500,000! Five seconds of keyword research has made your new website 250 times more easy to find!</p><p>These keywords should now be put in titles, headings, subtitles and various other places in your website. And, if possible, in the web address&#8230;</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/11/url.jpg" alt="url" title="" width="600" height="100" class="alignnone size-full wp-image-2975" style="margin-top: 15px;"/></p><h3>2. Register URL / Web address</h3><p>Your website URL (Uniform Resource Locator) is web address of your website that starts with http-colon-slash-slash. Try to put keywords in it, while keeping it as short and as memorable as possible. A keyword rich URL is a bonus for any website. It&#8217;ll help boost ranking in the search engine results pages.</p><p>But what of the extension or TLD (Top Level Domain)? Most people will prefer a .com. But what if you can&#8217;t get it? The new kid on the TLD block is .co. &#8220;With industry-leading technology, enhanced security and unprecedented rights protection mechanisms &#8211; .CO is poised to become the world&#8217;s next premier web address&#8221; so say <a
href="http://affiliate.godaddy.com/redirect/2675E9037420B6AC5A5E9A910A260E811A3CBDFB6F1C19160FC73A53303B1B34">GoDaddy</a> who would like to sell a lot of them as they cost more!</p><p>Or will your website fare better with a geographic TLD which will invoke an association with a particular area or country, like to co.uk or co.nz?</p><p>Other extensions have a meaning. The .net extension is supposedly for websites solely related to the internet, .biz is intended for businesses. Similarly, .org is for non-profits.</p><p>Once you have decided on your domain name you must register it. Try <a
href="http://affiliate.godaddy.com/redirect/2675E9037420B6AC5A5E9A910A260E811A3CBDFB6F1C19160FC73A53303B1B34">GoDaddy</a>, who are usually the cheapest or, in the UK, <a
href="http://www.123-reg.co.uk/affiliate.cgi?id=AF1272465&#038;url=http://www.123-reg.co.uk/">123-Reg</a>.</p><p>Don&#8217;t use GoDaddy for hosting – I have heard some terrible stories about them!</p><p>However, I wouldn&#8217;t spend hours and hours trying to think of the perfect web address. Visitors don&#8217;t get annoyed typing a long URL into their browser because they won&#8217;t have to do that. 99% of the time people arrive at your website through links.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/11/server.jpg" alt="server" title="" width="600" height="100" class="alignnone size-full wp-image-2976" style="margin-top: 15px;"/></p><h3>3. Get a host</h3><p>To the uninitiated, choosing a host may be even more daunting than choosing a website address name. You need to consider the server software (IIS or Apache), hosting package (shared, VPS, dedicated or cloud) as well as performance and support.</p><p>Personally, I like to create my sites with WordPress so I prefer an Apache server. As for the hosting package, shared servers are the cheapest and slowest, dedicated more expensive and fast with VPS (Virtual Private Server) somewhere in between. If you want your website operating on multiple connected servers, a scalable and cost-efficient answer could be a &#8220;cloud&#8221; hosting package although maybe only for the more technically proficient.</p><p>You should be looking at around $7/month for shared hosting, about double that for VPS. Dedicated hosts can charge from $100/month upwards.</p><p>Here are some hosts that I have found to be amongst the very best for reliability, performance and support. Most are large companies, I&#8217;ve had bad experiences with smaller hosts.</p><p>Good starter hosts with the cheapest shared servers and the best reputations are: <a
href="http://stats.justhost.com/track?c5eeb0af208121de0034936fc003eed5b">Justhost</a> and <a
href="http://www.bluehost.com/track/robcubbon">Bluehost</a> (who do a VPS package).</p><p>You can choose between shared, VPS and dedicated at <a
href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=robcubbon">Hostgator</a>, <a
href="http://www.a2hosting.com/2523.html">A2 Hosting</a> and <a
href="http://www.liquidweb.com/?RID=robcubbon">Liquid Web</a>.</p><p>Great cloud hosting packages can be found at <a
href="http://www.rackspacecloud.com/909.html">Rackspace</a> and <a
href="http://manage.aff.biz/z/146/CD4311">VPS.net</a>.</p><p>I&#8217;m running this site on a VPS at <a
href="http://www.dreamhost.com/r.cgi?682581">Dreamhost</a>. I&#8217;m happy with their support, the quality of the hosting and their prices are the most competitive (you can see what&#8217;s important to me!)</p><p>Once you have set up a hosting account, you will need to return to your domain name registrar’s website and and fill in the NameServers (usually one primary and one secondary) given to you by your host. More on <a
href="http://robcubbon.com/how-to-market-yourself-2-how-to-set-up-a-website">how to set up a website here</a>.</p><p>Don&#8217;t worry about deciding on a host, if you don&#8217;t like one you can simply move to another one. The process of moving a website from one host to another is at first a painful one but it will teach you valuable lessons about web maintenance!</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/11/pencils.jpg" alt="pencils" title="" width="600" height="100" class="alignnone size-full wp-image-2977" style="margin-top: 15px;" /></p><h3>4. Design your site and create your content!</h3><p>You&#8217;ll notice I put these two vital tasks in the same step. Why? Because, although I come from a design background, it&#8217;s not vitally important to get the design right straightaway. OK, it would be great if you do, but the design of a site can be changed or tweaked at a later date.</p><p>On the internet, content is king. You could spend months and months on the most beautiful website design but it won&#8217;t do you any good if no one comes to see your site. It is the content (the words) that are indexed by Google and are shared through social networks. And, as I said earlier, websites need a bit of time to build a reputation, so get your content out there as soon as possible, you can always write more or change it later.</p><p>The process of creating your websites content and design will be different for everybody. Personally, I usually use <a
href="http://wordpress.org">WordPress</a> as a Content Management System. If you don&#8217;t believe you have the time to be able to do this yourself and you want to hire professionals, I would advise you to only use people that have worked together before &#8211; not two or more strangers.</p><h3>Conclusion</h3><p>The process is not as complicated as it looks. The most important thing is to get started as you will make mistakes and incorrect decisions along the way, but that&#8217;s what teaches you the most important lessons.</p><p>Has this been a help for any of you who are thinking about creating a website for the first time? And, for those who have done this before, have I missed any important detail 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/create-your-own-website-4-essential-steps/feed/</wfw:commentRss> <slash:comments>8</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>How to win traffic and influence markets</title><link>http://robcubbon.com/how-to-win-traffic-and-influence-markets/</link> <comments>http://robcubbon.com/how-to-win-traffic-and-influence-markets/#comments</comments> <pubDate>Tue, 10 Aug 2010 11:21:01 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[Marketing]]></category> <category><![CDATA[Self improvement]]></category> <category><![CDATA[andrew carnegie]]></category> <category><![CDATA[dale carnegie]]></category> <category><![CDATA[internet marketing]]></category> <category><![CDATA[self help]]></category> <category><![CDATA[self improvement]]></category> <category><![CDATA[warren buffett]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2423</guid> <description><![CDATA[<p>How to Win Friends and Influence People is one of the bestselling self-help books ever published. Written by Dale Carnegie in 1937, it has sold 15 million copies. &#8220;[Dale Carnegie] changed my life&#8221; Warren Buffett, one of the world&#8217;s wealthiest people and most generous philanthropist of all time. The book isn&#8217;t about how to be [...]</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/08/people-walking-across-bridge.jpg" alt="people walking across a bridge" title="" width="600" height="228" class="alignnone size-full wp-image-2426" /></p><p><a
href="http://www.amazon.com/gp/product/1439167346?ie=UTF8&amp;tag=graandwebdesl-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1439167346">How to Win Friends and Influence People</a> is one of the bestselling self-help books ever published. Written by Dale Carnegie in 1937, it has sold 15 million copies.</p><blockquote><p><strong>&#8220;[Dale Carnegie] changed my life&#8221;</strong><br
/> Warren Buffett, one of the world&#8217;s wealthiest people and most generous philanthropist of all time.</p></blockquote><p>The book isn&#8217;t about how to be popular like a prom king/queen, how to cajole people to do things against their will or about how to play the office game of trampling on certain people to get to the top.</p><p>It is more about looking at life from the perspective of other people. But what can a book like this, written over 70 years ago, tell us about internet marketing? The answer is a great deal.</p><p>The book has 30 core principles. Here are a few of them and their possible application in the world of web&#8230;</p><h3>Don&#8217;t criticize or condemn</h3><p>If you see someone has made a mistake in a blog or a forum, don&#8217;t wade in and lambast the person with annoying words like &#8220;fail&#8221; and &#8220;idiot&#8221;. If you really feel they would benefit from the correct information, why not PM them or email them. They don&#8217;t want to appear stupid in front of their peers and it won&#8217;t benefit you if they do either.</p><h3>Don&#8217;t complain</h3><p>Don&#8217;t complain to clients, don&#8217;t complain to co-workers – don&#8217;t even complain to yourself under your breath or even in your thoughts! Complaining is negative energy which breeds negativity.</p><h3>Give honest and sincere appreciation</h3><p>Isn&#8217;t that what I&#8217;m always saying about social media and blog commenting? If a blog post you have read is helpful don&#8217;t just say &#8220;Nice post&#8221;. If you sincerely congratulate the blogger for their hard work and explain how it helped you honestly, your appreciation will be gratefully accepted.</p><h3>Arouse in the other person an eager want</h3><p>Carnegie talks a lot about seeing things from the other person&#8217;s point of view. And allied to this is internet marketing&#8217;s holy grail: make people see value in what you have. How do you do that? Put yourself in someone else&#8217;s shoes. What could arouse desire to make you click that link?</p><h3>Be a good listener. Encourage others to talk about themselves.</h3><p>I love to talk about myself. It&#8217;s the only subject I&#8217;m expert on. This is a great advice for people wanting to get responses from the leaders/heroes/rock stars in their niche. Do you want to get an internet celebrity to write for you? Send them an email with 5 questions about them. It&#8217;ll take them 5 minutes to write, they won&#8217;t have to do any research and I bet 9 times out of 10 you&#8217;ll get a favorable response.</p><h3>The only way to get the best of an argument is to avoid it</h3><p>Dale Carnegie used to love an argument. In fact, he had wanted to write a book about how to argue successfully until one day he realized that you can&#8217;t.</p><p>He realized that he had changed his mind. So have I. I can remember holding convictions in the past that I now believe not to be true. So what makes us change our minds? We do. No one in the history of the world has ever changed their mind as a result of an argument. Period. And, if anyone disagrees with me, I&#8217;ll argue with them!</p><p>Seriously, arguing is a waste of time. If you lose, you lose. If you win, you lose. The other person will still believe they&#8217;re right and will resent you forever.</p><p>Read pages and pages of flame wars on a forum. Do they teach you anything? Sure a healthy disagreement within a discussion is natural. But an argument online descends into people accusing each other of saying things they didn&#8217;t really say and reaching for dictionary definitions and Wikipedia entries to justify themselves.</p><p>Arguing wastes time, saps energy and diverts you from your goals.</p><h3>Show respect for other people&#8217;s opinions, never say, &#8220;you&#8217;re wrong&#8221;</h3><p>Remember, if two partners agree on everything, one of them is unnecessary. Of course, there are going to be differences of opinion and it&#8217;s good that there are. But be diplomatic with other people&#8217;s opinions. Show them you understand why they hold that differing opinion and then move on.</p><h3>If you are wrong, admit it quickly and emphatically</h3><p>We all make mistakes. But sometimes our biggest mistakes are not being brave enough to admit them in time. Someone who admits their mistakes garners respect.</p><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/08/carnegie-hall.jpg" alt="carnegie hall" title="" width="600" height="242" class="alignnone size-full wp-image-2434" /></p><p
class="small">Photo by <a
href="http://www.flickr.com/photos/shellysblogger/">ShelleyS</a></p><h3>Little known fact</h3><p>Author Dale Carnegie changed the spelling of his last name from “Carnagey” to Carnegie in 1922, at a time when Andrew Carnegie (the hugely wealthy industrialist and philanthropist) was a widely revered and recognized name. Dale Carnegie was able to fill out New York&#8217;s iconic Carnegie Hall for lectures. So he lectured in the hall that bears his own name – marketing genius!</p><h3>What about you?</h3><p>Have you ever read this hugely influential book? What other advice have you gathered from self-help literature that has helped you in business?</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-win-traffic-and-influence-markets/feed/</wfw:commentRss> <slash:comments>7</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>Recommended VPS hosts for WordPress</title><link>http://robcubbon.com/recommended-vps-hosts-for-wordpress/</link> <comments>http://robcubbon.com/recommended-vps-hosts-for-wordpress/#comments</comments> <pubDate>Mon, 14 Jun 2010 14:36:57 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[command line]]></category> <category><![CDATA[control panel]]></category> <category><![CDATA[gui]]></category> <category><![CDATA[host]]></category> <category><![CDATA[vps host]]></category> <category><![CDATA[WYSIWYG]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2171</guid> <description><![CDATA[<p>So you&#8217;re using WordPress and you are getting a nice amount of traffic, say a few hundred visitors a day. Maybe you love running many of the great plugins that add extra functionality for your visitors. There&#8217;s just one problem: your server is struggling with the load and your site isn&#8217;t just slow, it&#8217;s ssslllooowww! [...]</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/Server-hosting-vps.jpg" alt="vps wordpress" title="" width="600" height="413" class="alignnone size-full wp-image-4158" /></p><p>So you&#8217;re using <strong>WordPress</strong> and you are getting a nice amount of traffic, say a few hundred visitors a day. Maybe you love running many of the great plugins that add extra functionality for your visitors. There&#8217;s just one problem: your server is struggling with the load and your site isn&#8217;t just slow, it&#8217;s ssslllooowww!</p><p>Shared hosting maybe inexpensive but resources are limited and security can be compromised. Dedicated servers are very powerful, can require high levels of technical knowledge for customization and are extremely expensive. VPS hosting can be the happy halfway house.</p><p>A Virtual Private Server is a physical computer partitioned into multiple servers each with running its own operating system.</p><h2>Here are the most recommended VPS hosts for WordPress</h2><p>I contacted hundreds of WordPress experts to ask them about their experiences and recommendations for VPS hosts. Speed, reliability, ease of use and quality of support were considered in the following recommendations.</p><p><a
href="http://robcubbon.com/go/a2vps"><img
class="alignnone size-full wp-image-4153" src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/a2-hosting.gif" alt="a2 hosting" width="211" height="64" style="margin-top: 15px; " /></a></p><h3><a
href="http://robcubbon.com/go/a2vps">A2 hosting</a></h3><p>Inexpensive and their support comes highly recommended. 256 MB (burstable to 512MB) RAM, 10 GB storage, 300GB monthly bandwidth for $14/month. Other packages are similarly competitive. You can get cPanel with much higher specs for $50/month with the super <a
href="http://robcubbon.com/go/a2manvps">Managed VPS Packages</a>. 99.9% uptime guarantee.</p><p>Sign up to <a
href="http://robcubbon.com/go/a2vps">A2 VPS hosting here</a>.</p><p><a
href="http://robcubbon.com/go/dreamhost"><img
class="alignnone size-full wp-image-4154" src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/dreamhost-logo.gif" alt="dreamhost logo" width="156" height="33"  style="margin-top: 15px; "/></a></p><h3><a
href="http://robcubbon.com/go/dreamhost">Dreamhost</a></h3><p>Reasonably priced, good support, fantastic recommendations. This is my choice! RAM starts at 300MB, unlimited space and bandwidth. Dreamhost have their own award-winning user&#8217;s control panel. Prices start at $15/month. You can change your resource levels on the fly&#8230; no reboot needed!</p><p>Use IWANTADISCOUNT7 as a coupon code to get 50% off your first month if you <a
href="http://robcubbon.com/go/dreamhost">sign up to Dreamhost</a>.</p><p><a
href="http://robcubbon.com/go/vpsnet"><img
class="alignnone size-full wp-image-4157" src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/vps-net-hosting.jpg" alt="vps net hosting" width="204" height="74"  style="margin-top: 15px; "/></a></p><h3><a
href="http://robcubbon.com/go/vpsnet">VPS.net</a></h3><p>This is all on the cloud – and affordable. Their experts will move your site to VPS.net for no charge. By default everything is command line; cPanel is an extra. 5GB disk space, 250GB network transfer, for an average 25k visitors for £13 per month (first month £1). 25GB disk space, 500GB network transfer for an average 125k visitors for £40 per month. Their users were extremely complimentary.</p><p><a
href="http://robcubbon.com/go/vpsnet">Sign up with VPS.net</a> here.</p><p>Used by famous WordPress SEO blogger Joost de Valk (<a
href="http://yoast.com/">Yoast</a>).</p><p><a
href="http://robcubbon.com/go/rackspace"><img
class="alignnone size-full wp-image-4156" src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/rackspace-hosting.jpg" alt="rackspace hosting" width="173" height="63" style="margin-top: 15px; " /></a></p><h3><a
href="http://robcubbon.com/go/rackspace">Rackspace</a></h3><p>Their users had nothing but good things to say about Rackspace. Cloud Sites™ runs on a series of clusters so it has redundancy and protection built in. When you upload your site or web based application, multiple instances of it run so that even if an entire server goes down your site stays up and running. They have their own cloud control panel proprietary GUI to navigate you through the clouds. Cloud Sites™ start at $149/month.</p><p><a
href="http://robcubbon.com/go/rackspace">Sign up with Rackspace</a> here.</p><p>Used by the famous tech blogger <a
href="http://scobleizer.com/">Robert Scoble</a>, who is an employee of the company. Your site will be super fast here.</p><p><a
href="http://robcubbon.com/go/liquidweb"><img
class="alignnone size-full wp-image-4155" src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/liquidweb-web-hosting.jpg" alt="liquidweb web hosting" width="216" height="56"  style="margin-top: 15px; "/></a></p><h3><a
href="http://robcubbon.com/go/liquidweb">Liquidweb</a></h3><p>Their VPS plans start at $60/month and include cPanel as well as root access, 384MB RAM, 20GB storage, 400GB bandwidth, 4 IP addresses. Their VPS packages support 100 percent network uptime, VPS monitoring and a 30 minute support response guarantee.</p><p><a
href="http://robcubbon.com/go/liquidweb">Use Liquidweb hosting here</a>.</p><h3>VPS hosting can be the happy halfway house</h3><p>Virtual private server (VPS) hosting could be a solution if you have outgrown your shared hosting and don’t need to move to a dedicated server. It is the best option for small to medium sized businesses. A site hosted on a VPS gets its own RAM and disk space, however, it shares the processing capacity (CPU) with other sites.</p><p>Remember, Google includes a site&#8217;s speed into it&#8217;s algorithm &#8211; so a faster running site is not only advantageous to your visitors but also may push you higher in the search engine results pages.</p><h3>To command line or to control panel?</h3><p>A web host control panel (such a cPanel) provides a graphical interface designed to simplify the process of hosting a web site. It makes it easier to, for example, move files around, or set up or import MySQL databases necessary for WordPress. Alternatively you can type command lines through a Secure Shell (SSH). SSH is a network protocol that allows data to be exchanged securely between two networked devices. Anything you can do via cPanel is also doable via SSH without the overhead of the HTML, imagery and web server processing so it is therefore quicker.</p><p>Personally, I find the WYSIWYG nature of the control panel more familiar and intuitive, however, I&#8217;ve been using SSH as well and it can sometimes be a better way of doing things.</p><h2>VPS hosting in the cloud or Standard VPS hosting?</h2><p>Cloud computing is run on multiple of servers whereas on standard VPS hosting your site will sit on only one computer with associated backups. For this reason there is usually less or no downtime with cloud based services.</p><h3>Conclusion</h3><p>Deciding on a VPS host for WordPress is no easy business. There are many things to consider. Above all make sure you pick a host that other WordPressers recommend.</p><p>Use the following criteria to decide:</p><ul><li><strong>RAM:</strong> 500MB RAM would be OK for a WordPress site that gets on average 400 visitors a day.</li><li><strong>CPU</strong></li><li><strong>Band Width and Disc Space</strong></li><li><strong>Server Software:</strong> if you want to use cPanel you may have to pay extra or maybe your favorite server software isn&#8217;t available</li><li><strong>Quality of Support</strong></li><li><strong>Reputation</strong></li></ul><p>If you have any other recommendations or questions be sure to make them known in the comments section!</p><h2>Shared hosting for WordPress</h2><p>Alternatively, if you find these prices too expensive for you your can try <a
href="http://robcubbon.com/the-best-shared-hosting-for-wordpress-websites/">shared hosting for WordPress</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/recommended-vps-hosts-for-wordpress/feed/</wfw:commentRss> <slash:comments>41</slash:comments> </item> <item><title>The best shared hosting for WordPress websites</title><link>http://robcubbon.com/the-best-shared-hosting-for-wordpress-websites/</link> <comments>http://robcubbon.com/the-best-shared-hosting-for-wordpress-websites/#comments</comments> <pubDate>Mon, 07 Jun 2010 16:46:33 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[host]]></category> <category><![CDATA[shared host]]></category> <category><![CDATA[speed]]></category> <category><![CDATA[support]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2146</guid> <description><![CDATA[<p>If you are either just starting out as a blogger with a self-hosted WordPress blog or you are frustrated by your current host – here is a list of the best WordPress shared hosting companies as voted for by WordPress experts. Shared web hosting is a service where many websites reside on one web server [...]</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/shared-hosting-wordpress.jpg" alt="shared hosting wordpress" title="" width="600" height="373" class="alignnone size-full wp-image-4163" /></p><p>If you are either just starting out as a blogger with a self-hosted WordPress blog or you are frustrated by your current host – here is a list of the best <strong>WordPress shared hosting</strong> companies as voted for by WordPress experts.</p><p>Shared web hosting is a service where many websites reside on one web server connected to the internet. It is generally the most economical option for hosting, as many people share the overall cost of server maintenance.</p><h2>Recommended shared hosting for WordPress websites</h2><p>I contacted hundreds of individuals through the WordPress LinkedIn group. Members of this group are high end webmasters with hundreds of sites on their books who have been around the block as far as web hosts are concerned &#8211; many of them were using 3 or 4 shared hosts for multiple sites. If you&#8217;re into LinkedIn and WordPress I would strongly recommend this group as I have found the advice and discussions there to be top notch!</p><p>The four most important factors we discussed in the survey were: price, speed, reliability and quality of support. We&#8217;ve all had the terrible experience of a website not behaving as it should and sometimes a timely and considered approach by the support team is worth a thousand dollars!</p><p>Here are the four hosts who came out as the best shared hosts for WordPress by WordPress professionals:</p><p><a
href="http://robcubbon.com/go/bluehost"><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/bluehost.jpg" alt="bluehost" title="" width="209" height="51" class="alignnone size-full wp-image-4165" style="margin-top:15px;"  /></a></p><h3><a
href="http://robcubbon.com/go/bluehost">Bluehost</a></h3><p>The general consensus seems to be that Bluehost is inexpensive and has many powerful tools but support is maybe where it lacks the most. BlueHost is one of the 20 largest web hosts, collectively hosting well over 450000 domains with its sister company, HostMonster. I&#8217;ve used BlueHost for years and it is astonishingly fast for a shared host and I can highly recommend them.</p><p><a
href="http://robcubbon.com/go/bluehost">Sign up with Bluehost here.</a></p><p><a
href="http://robcubbon.com/go/hostgator"><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/hostgator.jpg" alt="hostgator" title="" width="243" height="45" class="alignnone size-full wp-image-4166"  style="margin-top:15px;" /></a></p><h3><a
href="http://robcubbon.com/go/hostgator">Hostgator</a></h3><p>The company was founded in 2002 by Chairman Brent Oxley, who started the company from his dorm room at university. With over two million domains, HostGator hosts approximately 1% of the world&#8217;s internet traffic. They came up many times in our survey as being a reliable host.</p><p><a
href="http://robcubbon.com/go/hostgator">Sign up with Hostgator here.</a></p><p><a
href="http://robcubbon.com/go/dreamhost"><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/06/dreamhost.png" alt="dreamhost" title="" width="156" height="33" class="alignnone size-full wp-image-4167" style="margin-top:15px;" /></a></p><h3><a
href="http://robcubbon.com/go/dreamhost">Dreamhost</a></h3><p>Reasonably priced, good support, fantastic recommendations. Unlimited space and bandwidth. Dreamhost don&#8217;t have cPanel but they do have their own award-winning user&#8217;s control panel.</p><p><a
href="http://robcubbon.com/go/dreamhost">Sign up with Dreamhost here.</a></p><h3>What not to do!</h3><p>One hosting company&#8217;s name came up for all the wrong reasons so many times. The server sluggishness and all round poor performance at GoDaddy was mentioned again and again! So, by all means, register your domain name with <a
href="http://x.co/PO7q">GoDaddy</a>, but don&#8217;t use them for hosting!</p><h2>WordPress and Shared Hosting</h2><p>As the internet becomes the preferred method of communication for businesses worldwide, the tool of creating and publishing the content is of increasing importance. WordPress is used by millions to deliver news, messages and articles to the world. It has become not only the blogger&#8217;s weapon of choice but also a hugely popular Content Management System.</p><p>Learning how to use WordPress is easy. All you have to do is to login, add a new article and either write in WordPress, or copy and paste from your favorite word processor. But WordPress hosting is not for every web service.</p><p>WordPress requires high standards from the web hosting provider which is why you should take a lot of time to discover the best hosts. But first here&#8217;s a description of shared hosting and why it might be for you.</p><p>A shared hosting account is cheaper and easier to maintain than a more expensive dedicated or VPS account. It&#8217;s considered typical for budget or entry-level hosting services but people can run successful websites for years on shared hosting. It can supply sufficient disk space, bandwidth and functionality for personal, hobby or small-business websites.</p><h3>Disadvantages of shared hosting</h3><p>However, being the cheapest package, it has its disadvantages. Firstly, it usually has a reduced level of security as you are sharing the server with several other websites. Shared hosting also has limited resources causing speed issues at both the back and front ends of your site.</p><p>Many individuals on the same server can lead to issues with blacklisting on email. I would recommend everyone route email through <a
href="http://www.google.com/apps/">Google Apps for Business</a> for this reason.</p><p>Remember, with WordPress to choose a host running Linux and preferably running Apache, using the Apache mod_rewrite.</p><h2>Conclusion</h2><p>I learnt a huge amount from doing this survey. However, I decided to turn my back on shared hosting for this site and went for a Virtual Private Server (VPS). My next post will be about the <a
href="http://robcubbon.com/recommended-vps-hosts-for-wordpress">VPS hosts for WordPress</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/the-best-shared-hosting-for-wordpress-websites/feed/</wfw:commentRss> <slash:comments>33</slash:comments> </item> <item><title>Design websites that the client can edit</title><link>http://robcubbon.com/design-websites-that-the-client-can-edit/</link> <comments>http://robcubbon.com/design-websites-that-the-client-can-edit/#comments</comments> <pubDate>Wed, 26 May 2010 13:56:35 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[client]]></category> <category><![CDATA[cms]]></category> <category><![CDATA[open source]]></category> <category><![CDATA[UI]]></category> <category><![CDATA[web design]]></category> <category><![CDATA[website]]></category> <category><![CDATA[WYSIWYG]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=2115</guid> <description><![CDATA[<p>I got a call from a potential client the other day and he asked me a very simple question. &#8220;Once you&#8217;ve created the website for me will you charge me every time I want to edit one of the pages?&#8221; And, although this is not the first time I have heard this question, it still [...]</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/website-laptop-pen.jpg" alt="a website being edited by a pen"  width="600" height="375" class="aligncenter size-full wp-image-2123" /></p><p>I got a call from a potential client the other day and he asked me a very simple question.</p><blockquote><p>&#8220;Once you&#8217;ve created the website for me will you charge me every time I want to edit one of the pages?&#8221;</p></blockquote><p>And, although this is not the first time I have heard this question, it still amazes me every time I hear it. Some web agencies create websites which their client has absolutely no ability to change once completed. This isn&#8217;t standard practice in the industry but it does happen.</p><p>If you have a website, it is never a question of if you want to change it; it&#8217;s always a question of when you want to change it.</p><h3>Get your website set up with a Content Management System that is easy to use</h3><p>A Content Management System (CMS) is software, implemented as a web application, that manages web sites. It should have an intuitive user interface that makes navigating to the page and changing it as easy as updating a text document on your computer.</p><p>There&#8217;s many great CMSs that enable you to create, edit and delete pages at will and, there&#8217;s even better news, a lot of them are free!</p><h3>WordPress</h3><p>WordPress is a fantastic web publishing platform which focuses on aesthetics, web standards, and usability. And, as it is open source, it&#8217;s free. &#8220;Free and priceless at the same time&#8221;. As you can see from the screenshot below there is a WYSIWYG interface which can be mastered easily.</p><p><img
style="margin: 20px 0;" src="http://cdn.robcubbon.com/wp-content/uploads/2010/05/wordpress-edit-page-screen-shot.jpg" alt="wordpress edit page screen shot" title="" width="600" height="250" class="aligncenter size-full wp-image-2117" /></p><p>I have written extensively about the <a
href="http://robcubbon.com/how-to-market-yourself-3-how-to-install-wordpress-blog-on-your-site">setting up WordPress</a> and <a
href="http://robcubbon.com/how-to-market-yourself-7-how-to-write-and-design-a-wordpress-page-or-post">creating and editing web pages using the WordPress UI</a>.</p><p>WordPress is actually blogging software that is fast being used as the most simple and robust CMS. If you just want pages, with sub-pages, and maybe even sub-sub-pages that will be created and deleted along the way then WordPress can be set up to do that for you. Your web designer will not have to be involved at all. And, if you&#8217;re interested in improving your site&#8217;s position in search engines and you&#8217;d like to publish more than just web pages, then add a blog to your site. WordPress will do that easily!</p><p>I appreciate that many of my visitors will know this already but I felt I had to state the basics of WordPress as it&#8217;s potential as a CMS is so awesome people should know about it. As does that potential client I mentioned earlier, who&#8217;s now a client!</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/design-websites-that-the-client-can-edit/feed/</wfw:commentRss> <slash:comments>9</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>I need a website designer and developer &#8211; what do I do?</title><link>http://robcubbon.com/need-a-website-designer-and-developer/</link> <comments>http://robcubbon.com/need-a-website-designer-and-developer/#comments</comments> <pubDate>Mon, 03 May 2010 19:25:23 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[design]]></category> <category><![CDATA[web design]]></category> <category><![CDATA[web development]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=1999</guid> <description><![CDATA[<p>Enter &#8220;web designer&#8221; in a search engine you will be confronted with thousands of results – how do you know which one to choose? What sort of website to you want to create? Web developers love jargon as they like to give your site a label. So is the site commercial (an e-commerce or affiliate [...]</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>Enter &#8220;<strong>web designer</strong>&#8221; in a search engine you will be confronted with thousands of results – how do you know which one to choose?</p><p
style="padding-top: 20px;"><img
class="alignnone size-full wp-image-2000" src="http://cdn.robcubbon.com/wp-content/uploads/2010/05/world-on-keyboard.jpg" alt="globe on a computer keyboard" width="600" height="253" /></p><h3>What sort of website to you want to create?</h3><p>Web developers love jargon as they like to give your site a label. So is the site commercial (an e-commerce or affiliate site), personal, organisational (maybe a .org), educational (maybe a .edu), entertainment, news or blog?</p><p>Your site will not be adequately explained with one word. Maybe you want an commercial website with a blog, or an entertainment website with an e-commerce angle, but this can be explained after you&#8217;ve decided upon the most adequate one or two word description of your website.</p><h3>What sort of functionality do you want?</h3><p>Do you want a forum, multimedia (movies, sounds, image galleries), blog, site registration, shopping cart or electronic fund transfer, forms, databases, chat?</p><h3>Now search again for your web designer / developer</h3><p>So now you can enter different keywords into a search engine, such as &#8220;<strong>freelance blog designer</strong>&#8221; or &#8220;<strong>e-commerce designer and developer</strong>&#8221; and you will get more relevant search results.</p><h3>Should I choose a web agency or an individual designer / developer?</h3><p><img
src="http://cdn.robcubbon.com/wp-content/uploads/2010/05/freelancer-greater-than-agency.jpg" alt="" title="freelancer-greater-than-agency" width="394" height="138" class="aligncenter size-full wp-image-2007" /><br
/> This depends on the size of your site. If you are thinking of creating a huge e-commerce site on a par with Walmart then you should consider contacting a web agency. Otherwise, contact an individual who does websites. I may be biassed, as I am an individual web designer and developer, but we have many advantages over the agencies:</p><ul><li><strong><span
style="color: #4c5464;">One person is responsible for the whole site.</span></strong> Cuts down bureaucracy and keeps things simple.</li><li><strong><span
style="color: #4c5464;">It&#8217;s &#8230; errr &#8230; cheaper.</span></strong> Now there&#8217;s a no brainer if ever there was one.</li><li><strong><span
style="color: #4c5464;">A freelancer or independent web designer is more likely to choose an open source CMS (Content Management System) for your website rather than creating one especially for the job.</span></strong> Again, this depends on the size of the website and sometimes a bespoke CMS for a large site is the only answer but I always advise against them. Open source CMSs &#8211; such as WordPress, Joomla or Drupal &#8211; are well-known website systems that are free and already available for use. They are cheaper to run, have huge support networks behind them and can be used by countless web professionals for many years to come. A bespoke or proprietary CMS will be more expensive and, if you want it changed (which you will), you will have to go back to the original agency and give them more money to do it.</li></ul><p>Don&#8217;t worry if you think the site is too much work for one person, it is normal for developers and designers to employ others if the work load gets too much for them. They will be better at this than you and, as long as you have one person in charge and responsible for the whole project, you don&#8217;t need to worry about how many people are working on it.</p><p>The last thing you want to do is to hire designers and developers separately and hope that they will communicate together or through you &#8211; this will never work.</p><p
style="padding-top: 20px;"><img
class="alignnone size-full wp-image-2004" src="http://cdn.robcubbon.com/wp-content/uploads/2010/05/girl-with-spinning-globe.jpg" alt="girl with spinning globe" width="600" height="277" /></p><h3>What do I look for?</h3><p>When you arrive and a web designer / developer&#8217;s website, look for <a
href="http://robcubbon.com/rob-cubbons-web-design">examples of their work</a> first and see if they have done sites that are similar to what you&#8217;re looking to create. Try to find out what this individual is like to work with. You can contact the people he or she has worked with or see if there is a <a
href="http://robcubbon.com/client-testimonials">testimonial page</a> on the site.</p><p>Once you have explained what you want, see if the developer responds in plain English or uses jargon that you don&#8217;t understand. Be wary of jargon as misunderstandings can be very expensive and it is essential you hire a good communicator.</p><h3>Conclusion</h3><p>Communication is key here. Research types of websites, CMSs and jargon before you start out and have a clear idea of the functionality, audience and purpose of your website. If you have this crystal clear in your mind you will be able to find the right individual by talking to them and reading their quotes and proposals.</p><p>Responsible web designers and developers will present you with the exact functionality and extent of the website they will build for you with their initial quote so you will be in no doubt about what you are getting for your money.</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-a-website-designer-and-developer/feed/</wfw:commentRss> <slash:comments>25</slash:comments> </item> <item><title>My first free e-book on self-marketing completed</title><link>http://robcubbon.com/my-first-free-e-book-on-self-marketing-completed/</link> <comments>http://robcubbon.com/my-first-free-e-book-on-self-marketing-completed/#comments</comments> <pubDate>Wed, 07 Apr 2010 15:49:20 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[InDesign]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[Marketing]]></category> <category><![CDATA[ebook]]></category> <category><![CDATA[online]]></category> <category><![CDATA[PDF]]></category> <category><![CDATA[WordPress]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=1534</guid> <description><![CDATA[<p>I haven&#8217;t written as many posts as I would have liked on this blog in the last couple of months. The reason? I have been creating an e-book which will be used as an incentive for join my mailing list. It&#8217;s ready now! Why did I do this? Many reasons &#8230; I wanted to do [...]</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-1535" src="http://cdn.robcubbon.com/wp-content/uploads/2010/04/launch-space-shuttle.jpg" alt="space shuttle launch" width="600" height="348" /></p><p>I haven&#8217;t written as many posts as I would have liked on this blog in the last couple of months. The reason? I have been creating an <a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book">e-book</a> which will be used as an incentive for join my mailing list. It&#8217;s ready now!</p><h3>Why did I do this?</h3><p>Many reasons &#8230; I wanted to do something a bit different; to showcase my own design of an interactive PDF; to get some extra exposure. But mostly, I want to take my site to the next level.</p><p>The subject matter of the e-book is something I&#8217;m passionate about &#8211; setting up and getting noticed with a self-hosted WordPress site; SEO, social media and blogging.</p><p>Five years ago I was waking up every morning wearily to do uncreative artwork in other people&#8217;s companies. After five years of blogging, I run my own company where I am habitually involved in incredibly creative and interesting work for the most amazing and wide-ranging <a
href="http://robcubbon.com/client-testimonials">group of clients</a>.</p><p><a
class="imglink" href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book"><img
class="aligncenter size-full wp-image-1204" style="padding-top: 18px;" src="http://cdn.robcubbon.com/wp-content/uploads/2010/03/how-to-market-yourself-online-free-ebook.jpg" alt="How to market yourself online free ebook pdf" width="200" height="245" /></a></p><p>The change I have seen in my own life is testimony to the power of blogging with a self hosted WordPress site. But creating a blog is one thing; developing a website which attracts regular traffic and returning visitors is quite another, and I have outlined every step I took to achieve this in the 35-page PDF.</p><p>I will write more about creating an interactive PDF and using it as an incentive for a mailing list in the blog. I created the <a
href="http://robcubbon.com/designing-pdf-newsletters-why-and-how">PDF in InDesign</a> and I used Vertical Response to sort out the list and the sign up form.</p><h3>OK, so how do you get a copy?</h3><p>Please follow this link below to <a
href="http://robcubbon.com/free-how-to-market-yourself-online-e-book">my main sign up page</a> where you will only have to fill in your email address (and, if you like, your first and last name).Then you will receive an email with a subscription link. After that you will receive another email which welcomes you to the list and has the link to the PDF.</p><p>I would be grateful for comments and I hope its helpful to some of you.</p><p>So, here&#8217;s the link:</p><p><a
href="http://robcubbon.com/subscribe-to-my-newsletters-and-download-free-how-to-market-yourself-online-e-book"><img
class="aligncenter size-full wp-image-1542" title="download button" src="http://cdn.robcubbon.com/wp-content/uploads/2010/04/download-button.jpg" alt="download now" width="175" height="35" /></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/my-first-free-e-book-on-self-marketing-completed/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>Adding images to a WordPress post</title><link>http://robcubbon.com/adding-images-to-a-wordpress-post/</link> <comments>http://robcubbon.com/adding-images-to-a-wordpress-post/#comments</comments> <pubDate>Sun, 21 Mar 2010 18:05:37 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[images]]></category> <category><![CDATA[insert]]></category> <category><![CDATA[post]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[upload]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=1162</guid> <description><![CDATA[<p>When writing a WordPress post it is extremely important to make it as visually appealing as possible. Visitors are much more likely to spend a bit of time on the page if it has a nice image and the text is laid out in a pleasing way. Images are important in terms of SEO. If [...]</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/slides-with-different-images.jpg" alt="slides with different images relating to WordPress, the internet, etc." /></p><p>When writing a WordPress post it is extremely important to make it as visually appealing as possible. Visitors are much more likely to spend a bit of time on the page if it has a nice image and the text is laid out in a pleasing way.</p><p>Images are important in terms of SEO. If they are uploaded with correct and keyword-rich names and alt texts they can pull in a valuable amount of targetted traffic from image searches.</p><h3>Adding an image with text above and below</h3><p><a
href="http://cdn.robcubbon.com/wp-content/uploads/2010/03/add-an-image-button-wordpress.jpg"><img
class="aligncenter size-full wp-image-1183" title="add-an-image-button-wordpress" src="http://cdn.robcubbon.com/wp-content/uploads/2010/03/add-an-image-button-wordpress.jpg" alt="Add an image button in the WordPress text editor" width="600" height="235" /></a></p><p>Click the first icon top left after the words “Upload/Insert”,  if you hover over the tooltip will be “Add an Image”. In the resulting dialog box you can click “Select Files” to get the image from your computer. (I would choose the Browser uploader rather than the Flash uploader). Once the image is uploaded you will see another dialog box with the image’s thumbnail displayed.</p><p>It will usually be a large image (of, say, 400 pixels or more wide) that you will want to put on it’s own after a paragraph of text. Make sure you have hit Return (once in Visual mode; twice in HTML mode) before clicking the Add an Image icon. And, after uploading, in the Adding Image dialog box, under Alignment, click “Center” (alternatively you can select the image and click the centered text button after inserting).</p><h3>Adding an image with text flowing around</h3><p>If you have a smaller image of, maybe, 200 pixels width, you may want to insert it into a paragraph with the text flowing around it. If so, make sure your cursor is blinking next to the word at the beginning of the paragraph you want the image to go in when you  click the add image icon. And whilst in the Add an Image dialog box click, under Alignment click “Left” or “Right”.</p><p><a
href="http://cdn.robcubbon.com/wp-content/uploads/2010/03/brown-bear-in-woods.jpg"><img
class="alignright size-full wp-image-1172" style="padding-left: 5px; border: none; margin-top: 8px;" title="brown-bear-in-woods" src="http://cdn.robcubbon.com/wp-content/uploads/2010/03/brown-bear-in-woods.jpg" alt="European Brown Bear walking through the forests of Finland" width="200" height="133" /></a>Your image should always have a descriptive file name with no spaces and a .jpg, .gif or .png at the end. For the image here, left, I would use the file name &#8220;brown-bear-in-woods.jpg&#8221;. Upper and lower case letters are irrelevant here so it is best stick to lowercase and use hyphens to separate the words. Spaces will be converted to hyphens after uploading via WordPress. And, hyphens are better than underscores.</p><h3>Alt text</h3><p>Always try to write an Alternate text for the image. This is how you would describe the image to a blind person. So, in our example the Alternate text would be “European Brown Bear walking through the forests of Finland”. Remember, this is crawled by the search engines so put keywords in where appropriate! The Alternate text is in the Adding Image dialog box which appears after an image is uploaded.</p><h3>Image size</h3><p>One last thing to consider when uploading images is their size. If you want the image to be the same size as it is on your computer click Full Size under Size. If you want the image to be a different size you can choose Thumbnail, Medium or Large. You can change these sizes in Settings &gt; Media.</p><h3>Finally&#8230;</h3><p>If you want to write a caption you may.</p><p>Lastly, click “Insert into Post”. If you’ve made a mistake you can always click the image in the Visual editor and click on the “mountain” icon,  then click “Advanced Settings” and here you can change some of the above variables. Otherwise, delete the image and start again.</p><h3>Image is not displaying to the left or right correctly or the caption does not appear close enough to image</h3><p>Put this code in your theme&#8217;s CSS:</p><blockquote><p><code>.aligncenter,<br
/> div.aligncenter {<br
/> display: block;<br
/> margin-left: auto;<br
/> margin-right: auto;<br
/> }</code></p><p><code>.alignleft {<br
/> float: left;<br
/> }</code></p><p><code>.alignright {<br
/> float: right;<br
/> }</code></p><p><code>.wp-caption {<br
/> border: 1px solid #ddd;<br
/> text-align: center;<br
/> background-color: #f3f3f3;<br
/> padding-top: 4px;<br
/> margin: 10px;<br
/> /* optional rounded corners for browsers that support it */<br
/> -moz-border-radius: 3px;<br
/> -khtml-border-radius: 3px;<br
/> -webkit-border-radius: 3px;<br
/> border-radius: 3px;<br
/> }</code></p><p><code>.wp-caption img {<br
/> margin: 0;<br
/> padding: 0;<br
/> border: 0 none;<br
/> }</code></p><p><code> </code><code>.wp-caption p.wp-caption-text {<br
/> font-size: 11px;<br
/> line-height: 17px;<br
/> padding: 0 4px 5px;<br
/> margin: 0;<br
/> }</code></p></blockquote><p>It says in the WordPress Codex that &#8220;Each theme should have these or similar styles in its <code>style.css</code> file to be able to display images and captions properly&#8221;. But I can tell you many themes don&#8217;t has this code in there. Probably because theme designers like to style images and captions themselves and don&#8217;t realise that WordPress can do it for you. <img
src='http://cdn.robcubbon.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>This concludes my post on inserting images to a WordPress post. If anybody has anything to add or thinks I have missed anything please comment away!</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/adding-images-to-a-wordpress-post/feed/</wfw:commentRss> <slash:comments>5</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>Sync up your Social Media and increase your Tweets</title><link>http://robcubbon.com/sync-up-your-social-media-and-increase-your-tweets/</link> <comments>http://robcubbon.com/sync-up-your-social-media-and-increase-your-tweets/#comments</comments> <pubDate>Thu, 14 Jan 2010 16:51:59 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[Marketing]]></category> <category><![CDATA[Social media]]></category> <category><![CDATA[social bookmarking]]></category> <category><![CDATA[social networking sites]]></category> <category><![CDATA[social web]]></category> <category><![CDATA[twitter]]></category> <category><![CDATA[WordPress]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=1002</guid> <description><![CDATA[<p>The huge advances of social media sites show a transformation from media monologues to dialogues which will define human communication of the early 21st century. An overwhelming majority of marketers say they are now using some form of social media to market their business. Social media is an almost &#8220;must-have&#8221; for any small business because [...]</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://www.robcubbon.com/images/social-media-phrenology.jpg" style="border: 0; float: left; margin: 0px 4px 10px 0px;"  alt="Social media logo on Phrenology map head"/>The huge advances of social media sites show a transformation from media monologues to dialogues which will define human communication of the early 21st century. An overwhelming majority of marketers say they are now using some form of social media to market their business. Social media is an almost &#8220;must-have&#8221; for any small business because it is cheap and effective.</p><p>The site that seems to embody this transformation &#8211; at the moment! &#8211; is <a
href="http://www.twitter.com">Twitter</a>. Although Twitter&#8217;s growth seems to have leveled off in 2009 after recording a massive <a
href="http://mashable.com/2009/01/09/twitter-growth-2008/">752% growth in 2008</a>, there no signs of it&#8217;s influence waning as this century nears its troublesome teenage years. Savvy businesses see money in Twitter: I recently tweeted that I&#8217;d had a bad experience with BT and, within a few hours, I got a tweet from them asking me what the problem was.</p><p>So if we have to engage with this social media how do we do it productively and without turning into some sort of anti-social geekia dullard? Here are a few pointers on how to organize your web-life amongst the blogs, wikis and social sites, create a consistent online image and sync up all the various parts of your online world.</p><h3>Create your Avatar</h3><p><img
src="http://www.robcubbon.com/images/gravatar-logo.jpg" style="border: 0; float: left; margin: 3px 20px 0px 0px;"  alt="Gravatar logo"/>And, no, I don&#8217;t mean head over to Pandora and consort with the Na&#8217;vi, I mean use a consistent image when you comment on blogs or on your profile page of various other sites. Head over to <a
href="http://en.gravatar.com/">Gravatar</a> (created by those awfully nice <a
href="http://automattic.com/">Automattic</a> people that gave us <a
href="http://wordpress.org/">WordPress</a>) and upload a square (150 by 150 pixels should do it) image which will appear by your name when you comment on a blog. Keep this square JPG, GIF or PNG handy on your hard drive and use it every time you register for a forum or social networking or bookmarking site. That way you have a consistent visual sign that people will come to recognize and trust!</p><h3>Connect your social bookmarking sites to tweet your faves</h3><p><img
src="http://www.robcubbon.com/images/social-bookmarking-sties.jpg" style="border: 0; float: left; margin: 3px 20px 10px 0px;"  alt="Social bookmarking sites logos"/>If you don&#8217;t use social bookmarking sites then you should. Sites like <a
href="http://digg.com/">Digg</a>, <a
href="http://www.reddit.com/">Reddit</a>, <a
href="http://www.stumbleupon.com/">StumbleUpon</a>, <a
href="http://delicious.com/">Delicious</a>, etc., are excellent ways of rank and store useful articles and to promote yourself. As with your tweets, don&#8217;t use these services to shamelessly promote only your blog posts. Use them to store articles that you find interesting and then you will earn a reputation for distributing interesting material in your niche and your blog posts will benefit.</p><p>The best thing about these sites is that you can link them up to your Twitter ID and therefore promote your post on both the social bookmarking site and Twitter at the same time. Digg and Delicious are especially good for this.</p><h3>Tweet your latest blog posts and blog your latest tweets</h3><p><img
src="http://www.robcubbon.com/images/twitter-wordpress-logos.jpg" style="border: 0; float: left; margin: 3px 20px 10px 0px;"  alt="Twitter and WordPress logos"/>(Bit of a no-brainer, obviously) Some people claim that blogging&#8217;s light has been faded by the more advanced social tools. However, I think macro-blogging (sorry!) can only grow from the surge of interest in Twitter&#8217;s micro-blogging service. So, to automatically tweet your latest posts use <a
href="http://wordpress.org/extend/plugins/wp-to-twitter/">WP to Twitter</a>. And use <a
href="http://wordpress.org/extend/plugins/twitter-for-wordpress/">Twitter for WordPress</a> to display your latest tweets on your blog.</p><h3>Publish videos and photos and tweet them</h3><p><img
src="http://www.robcubbon.com/images/youtube-vimeo-flickr.jpg" style="border: 0; float: left; margin: 3px 20px 10px 0px;"  alt="YouTube, Vimeo and Flickr logos"/>With their value going from zero to over a billion dollars in under 2 years, YouTube were the understated social media success story of the last decade. Together with the more stylish <a
href="http://vimeo.com/">Vimeo</a> and <a
href="http://www.metacafe.com/">Metacafe</a> (which is easily synced with <a
href="http://www.facebook.com/">Facebook</a>), video sites are a great way of promoting your brand. For photos, apart from TwitPic there&#8217;s the more popular <a
href="http://www.flickr.com/">Flickr</a>. Once you have joined these sites remember to favorite other videos, channels, photos and photostreams so that yours are more likely to get seen. Embed your logo and/or website into the videos or images. Remember to always put your website address in your profile settings of all of these sites!</p><h3>Sync up your LinkedIn and Facebook status with your Twitter feed</h3><p><img
src="http://www.robcubbon.com/images/facebook-linkedin-icons.jpg" style="border: 0; float: left; margin: 3px 20px 10px 0px;"  alt="Facebook and LinkedIn logos"/><a
href="http://www.linkedin.com">LinkedIn</a> users can automatically feed their Twitter status updates to their LinkedIn status updates. Use the Twitter exporter to automatically post your Facebook status updates to Twitter.</p><h3>URL shorteners</h3><p><img
src="http://www.robcubbon.com/images/bitly-text-logo.jpg" style="border: 0; float: left; margin: 3px 20px 10px 0px;"  alt="Bitly logo"/>The most successful URL shortener is <a
href="http://bit.ly/">bit.ly</a>, followed by <a
href="http://ow.ly/url/shorten-url">ow.ly</a>, most likely because they are newer and contain fewer characters. The least retweeted URL shorteners are the older and longer <a
href="http://www.tiny.cc/">Tiny URL</a> and <a
href="http://twitpic.com/">TwitPic</a>. I think Bitly is great because not only does it shorten URL and posts to Twitter it also provides great stats on the links.</p><h3>Conclusion</h3><p>With so many social media sites out there, all wanting your info and time, it&#8217;s easy to become overwhelmed and disheartened. As a general rule of thumb, lurk on these sites to see what they&#8217;ve got on the subjects that interest you. And then, once signed up (and linked to your main website), make sure you add articles, photos and videos of genuine interest from third parties as well as your own material.</p><p>What about you? Do you have any social media top tips that you&#8217;d like to share?</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/sync-up-your-social-media-and-increase-your-tweets/feed/</wfw:commentRss> <slash:comments>30</slash:comments> </item> <item><title>How to market yourself #9: How to get people to contact you from your website</title><link>http://robcubbon.com/how-to-market-yourself-9-how-to-get-people-to-contact-you-from-your-website/</link> <comments>http://robcubbon.com/how-to-market-yourself-9-how-to-get-people-to-contact-you-from-your-website/#comments</comments> <pubDate>Mon, 14 Sep 2009 13:02:49 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[Marketing]]></category> <category><![CDATA[contact forms]]></category> <category><![CDATA[email]]></category> <category><![CDATA[email address cloaking]]></category> <category><![CDATA[html]]></category> <category><![CDATA[java]]></category> <category><![CDATA[javascript]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=724</guid> <description><![CDATA[<p>You&#8217;ve got a beautiful website and blog and you want people to contact you, either by phone or email. What do you do? Everyone has a contact page on their website. OK, maybe not everyone, but you should have one, really. Here are some really important points to think about when you&#8217;re doing your contact [...]</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/cell-phone.jpg"  alt="close up of a cell phone keypad"/></p><p>You&#8217;ve got a beautiful website and blog and you want people to contact you, either by phone or email. What do you do? Everyone has a contact page on their website. OK, maybe not everyone, but you should have one, really. Here are some really important points to think about when you&#8217;re doing your contact page.</p><h3>How to publish your email address online without getting spam</h3><p>Spammers use software to crawl the internet to look for email addresses to spam to. This is why people have their email addresses as something like <strong>me [at] server.com</strong> or something like that to try to cloak the email address from the spammer.</p><p>But there&#8217;s better ways out there. For example there&#8217;s HTML clocking which uses HTML number codes for the ASCII characters.</p><blockquote><p><code>&lt;a href=&#8221;m&amp;#97;ilto:&amp;#97;&amp;#98;c&amp;#64;myhost&amp;#46;&amp;#99;om&#8221;&gt; contact us&lt;/a&gt;</code></p></blockquote><p>Here is how the above HTML will look like in the browser: <a
href="mailto:abc@myhost.com">contact us</a></p><p>But even better is JavaScript cloaking of the email address and the <code>mailto:</code> tag.</p><blockquote><p><code>&lt;script type="text/javascript"&gt;<br
/> &lt;!--<br
/> var username = "rob";<br
/> var hostname = "robcubbon.com";<br
/> var linktext = username + "@" + hostname;<br
/> document.write("&lt;a href=" + "mail" + "to:" + username + "@" + hostname + "?subject=Enquiry" + "&gt;" + linktext + "&lt;/a&gt;")<br
/> //-->&lt;/script&gt;</code></p></blockquote><p>When put into the webpage it creates the clickable email address that will give you &#8220;Enquiry&#8221; in the subject field of the email. Go on, try it, you can send me an email if you want to: <script type="text/javascript">var username = "rob";
var hostname = "robcubbon.com";
var linktext = username + "@" + hostname;
document.write("<a href=" + "mail" + "to:" + username +
"@" + hostname + "?subject=Enquiry" + ">" + linktext + "</a>")</script></p><p>If you are using WordPress you can happily paste this into the body of a page or post as long as you are using the HTML editor.</p><p><strong>Warning:</strong> I can not guarantee that any of the above methods will not produce spam at all, just substantially less than if you published your email address uncloaked.</p><p><img
src="http://robcubbon.com/images/postcards.jpg"  alt="montage of old American postcards"/></p><h3>Contact form</h3><p>But it always makes sense to give your visitors a choice and every website should also have a contact form. There are many different ways of doing these. One thing you need if you want one is PHP on your server.</p><p>If you are using WordPress I would recommend the <a
href="http://wordpress.org/extend/plugins/contact-form-7/">Contact Form 7</a> plugin. If you are using a Linux server you can basically plug in this plugin and play with it.</p><p>However, things are slightly more complicated if you are working on a Windows IIS server. In this case I have found you need to use <a
href="http://wordpress.org/extend/plugins/wp-mail-smtp/">WP Mail SMTP plugin</a> to get it to work.</p><h3>Should I include my telephone number and address online?</h3><p><img
src="http://www.robcubbon.com/images/contact-phone.png" style="border: 0; float: right; margin: 0px 0px 10px 10px;"  alt="Old fashioned phone"/>Whether you include your telephone number and address is entirely up to you. I wouldn&#8217;t give out my address on my website for security reasons. I include a mobile number on my contact page and it hasn&#8217;t resulted in many problems. In the UK, if your phone rings once and hangs up and you&#8217;re wondering whether to call back, simply <a
href="http://whocallsme.com/">check the number in the WhoCallsMe website</a> or even just Google the number. If it&#8217;s a premium rate scam someone will have posted up a warning about it. This has happened to me maybe 5 times in about 4 years.</p><h3>How to design your contact page</h3><p>Generally, I would say that you should put the link to your contact page as prominently as possible on all pages &#8211; preferably at the end of the top navigation. The contact page itself should be simple and well laid out. Here is <a
href="http://robcubbon.com/contact-rob-cubbon">my contact page</a>, what do you think about 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/how-to-market-yourself-9-how-to-get-people-to-contact-you-from-your-website/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Cloud commuting and graphic designers</title><link>http://robcubbon.com/cloud-commuting-and-graphic-designers/</link> <comments>http://robcubbon.com/cloud-commuting-and-graphic-designers/#comments</comments> <pubDate>Wed, 02 Sep 2009 16:43:40 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[cloud commuting]]></category> <category><![CDATA[cloud computing]]></category> <category><![CDATA[design]]></category> <category><![CDATA[security]]></category> <category><![CDATA[server]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=706</guid> <description><![CDATA[<p>Cloud computing is a term usually used to describe the proliferation of resources and services accessed through the internet. These resources (for example, Google maps; Google docs; Google Analytics; WordPress.com; online Adobe applications; your website host) in fact, any online service that happens &#8220;out there&#8221; – you don&#8217;t care where, as long as it works [...]</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/cloud-commuting-in-blue-sky.jpg"  alt="blue sky with clouds"/></p><p><strong>Cloud computing</strong> is a term usually used to describe the proliferation of resources and services accessed through the internet. These resources (for example, Google maps; Google docs; Google Analytics; WordPress.com; online Adobe applications; your website host) in fact, any online service that happens &#8220;out there&#8221; – you don&#8217;t care where, as long as it works – is said to happen &#8220;in the cloud&#8221;.</p><p><strong>Cloud commuting</strong> is not a term that has the same widespread understanding. For me the term cloud commuting means working from home.</p><p>Cloud computing has made cloud commuting possible with the availability of ever cheaper, faster and larger servers. Just think, whether you are reading at home or at work, how much of your digital life exists outside the computer you are using?</p><ul><li>Do you have a Gmail, Yahoo or Hotmail email address?</li><li>Do you have your words and pictures stored in a social networking site?</li><li>Do you use a website (your own or somebody else&#8217;s) for work?</li></ul><p>My guess is that the answers to these questions are yes. And, if so, this means you are already outsourcing some of your digital life. This also means that you, if you aren&#8217;t already, can work at least some of the time at home.</p><p>Outsourcing has suffered from a slight misrepresentation as a practice of companies laying off workers in the west replacing them with cheaper services from the east.</p><p>Cloud commuting for me means people from all over the world breaking free from the corporate machine and setting up shop in their homes, providing high quality professional services for clients whilst, importantly, employing others to provide services for them. As <a
href="http://www.amandaodonovan.com/blog/?p=95">Amanda O&#8217;Donovan</a> says:</p><blockquote><p>The Cloud Commuter is highly skilled, eco-friendly, doesn’t take up valuable office space and won’t be asking for health benefits&#8230; Why take the risk of committing to a permanent headcount when you can drink from the talent pool whenever you want to?</p></blockquote><p>Personally, I feel liberated by becoming a cloud commuter. For one thing I don&#8217;t miss the mornings struggling onto crowded trains with thousands of other real world commuters. And then at work, I felt that my input was hampered by the structure of the company – you couldn&#8217;t do something until it was agreed by someone else. I liked to get things done. I wasn&#8217;t big on water cooler discussions, team building exercises and endless meetings.</p><p><img
src="http://robcubbon.com/images/cloud-commuting-sun-behind-clouds.jpg"  alt="blue sky with clouds"/></p><h3>The benefit of cloud commuting</h3><p><strong><span
style="color: #033aae;">The environment</span></strong> &#8211; it&#8217;s a no-brainer: less meaningless car, bus, train journeys. It&#8217;s a good thing.</p><p><strong><span
style="color: #033aae;">Productivity</span></strong> &#8211; the cloud commuter immediately wins up to 2 hours a day by cutting out this pointless journey. And, the cloud commuter can concentrate better on work. Ever tried PHP coding in a busy office? Don&#8217;t.</p><p><strong><span
style="color: #033aae;">The family</span></strong> &#8211; the cloud commuter spends more time with loved ones; less time with &#8220;the boss&#8221;. The family will usually benefit. OK, I know that there&#8217;s a potential pitfall here where the cloud commuter could be 24/7 locked away in the home office, continually stressed as not able to separate work from home life but this hasn&#8217;t been my experience.</p><p><strong><span
style="color: #033aae;">The community</span></strong> &#8211; instead of living the false &#8220;double life&#8221; of the real world commuter who suffers the daily routine of traveling to the phony community, cloud commuters spends their time in the most important community &#8211; the one they live in. This will provide nicer neighborhoods for people to live in rather than neighborhoods for people to sleep in.</p><h3>The disadvantage of cloud commuting</h3><p>There&#8217;s one, but it&#8217;s a big one: security. Moving all your work to the clouds does compromise the information. The extent of this problem depends on the sensitivity of the files that you store in the cloud. Security should be set on a case by case basis but I would urge all cloud commuters to employ all the usual procedures: run regular back ups of everything and keep them away from where you work, have secure email if necessary; run the latest upgrades of all the software you are using, and install and regularly update virus scanning software.</p><h3>Cloud commuting and graphic design</h3><p>To me, the business of graphic design and marketing lends itself perfectly to cloud commuting. We are often in the business of selling an idea not a physical product so we don&#8217;t actually have to be anywhere when we work. We just need to be near a computer with an internet connection.</p><p>Graphic designers work best when they are free to express themselves and unfettered by the corporate restraints of time, money and hierarchy.</p><p>Employ a cloud commuter to deliver a message, sell a product or re-design a website and you&#8217;ll have a enthusiastic, hard-working and experienced professional working for you &#8211; for a price that would compare very well to an agency&#8217;s for the same 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/cloud-commuting-and-graphic-designers/feed/</wfw:commentRss> <slash:comments>17</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> <item><title>The future of print in the age of the web</title><link>http://robcubbon.com/the-future-of-print-in-the-age-of-the-web/</link> <comments>http://robcubbon.com/the-future-of-print-in-the-age-of-the-web/#comments</comments> <pubDate>Mon, 06 Jul 2009 17:36:04 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[Marketing]]></category> <category><![CDATA[design]]></category> <category><![CDATA[printing]]></category> <category><![CDATA[web]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=626</guid> <description><![CDATA[<p>How long has it been since you first used the internet? How much have your habits of information gathering changed since then? If you&#8217;re anything like me a myriad of different interests discovered on the internet crowd your mind as well as the exciting new ways you find out about them. The future is 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
src="http://robcubbon.com/images/type-on-a-laptop.jpg" alt="old print metal pieces spelling TYPE on a laptop screen" /></p><p>How long has it been since you first used the internet? How much have your habits of information gathering changed since then? If you&#8217;re anything like me a myriad of different interests discovered on the internet crowd your mind as well as the exciting new ways you find out about them.</p><h3>The future is on the internet not in print?</h3><p>So is the internet the future of communication and print as relevant to the the 21st century as the horse is to modern transport?</p><p>Well, print is tangible, of course, and that gives it a sense of permanence in a fast-changing world.</p><p>If the printed book was launched today it would be described as completely platform-independent, requiring no special software, hardware or electric power to use, more portable than any laptop, does not have to be upgraded, might last a careful user their entire lifetime, and costs less than $15!</p><p>If I&#8217;m excited about a new subject and really want to learn or to get my teeth into something &#8211; I&#8217;ll always go to Amazon to try to pick up a cheap book to read.</p><p>Technology was supposed to replace paper. But that hasn&#8217;t happened. Every country in the western world uses more paper today, on a per-capita basis, than it did ten years ago.</p><h3>So, there is a place for print design. But where?</h3><p><a
href="http://www.haymarketnetwork.com/editorial/blogs/paulsimpson/printsnotdead.aspx">Paul Simpson makes the point</a> that print has changed enormously since Gutenberg fiddled with movable type nearly 570 years ago. And will change again. He says that key decision makers – those who don’t surf the web, never open links in emails and are unlikely to stumble across your website – are more successfully targeted by a printed piece of marketing rather than an online one.</p><blockquote><p>If you’re trying to reach out to people who don’t know your business – or do know it and have already decided you stink – the printed product still has a cache, prestige and charisma that the internet can, as yet, only aspire to.</p></blockquote><h3>So where does this leave the freelance graphic designer?</h3><p>The old mantra “If you build a website they will come” on the web is finished. And not even the new mantra of &#8220;content is king&#8221; explains it as you can have excellent content but no one will visit to sample its excellence.</p><p><img
src="http://robcubbon.com/images/laptop-in-a-book.jpg" alt="picture of a laptop in a field superimposed on a book" /></p><p>Content is extremely important but it has to share its throne with marketing.</p><p>Whether designing for print or web knowing your market and how to reach it is more important now than ever.</p><p>The internet is the new kid on the block but ignore print at your peril. Investing in quality print design could give you the edge on your competitors in these challenging times.</p><p>So what do you think? Do you find yourself like me besieged by clients who are obsessed with Google, internet marketing and never consider the power of the printed word? Or do you work in print happily unaware of the parallel internet universe?</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/the-future-of-print-in-the-age-of-the-web/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>What to do if you are on an email blacklist</title><link>http://robcubbon.com/what-to-do-if-you-are-on-an-email-blacklist/</link> <comments>http://robcubbon.com/what-to-do-if-you-are-on-an-email-blacklist/#comments</comments> <pubDate>Mon, 22 Jun 2009 12:03:23 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[blacklists]]></category> <category><![CDATA[email]]></category> <category><![CDATA[forwarding]]></category> <category><![CDATA[gmail]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=620</guid> <description><![CDATA[<p>A hugely significant part of your web presence and company brand is email. It is just as important as your website. It needs to be professional looking and, most importantly, when sent to a particular place, it needs to get there. What are email blacklists? Email blacklists are databases used by organizations to decide if [...]</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: left; margin: 0px 10px 10px 0px;" src="http://www.robcubbon.com/images/email-at-sign.png" alt="Email at sign" />A hugely significant part of your web presence and company brand is email. It is just as important as your website. It needs to be professional looking and, most importantly, when sent to a particular place, it needs to get there.</p><h3>What are email blacklists?</h3><p>Email blacklists are databases used by organizations to decide if the IP connecting to a certain mail server is a spammer someone known to send invalid messages.  If you don&#8217;t know the IP address that you send you mail from (not necessarily your own IP address) contact your host or internet service provider.</p><p>They aim to improve mail security and most of them are community managed. If you (your mail server&#8217;s IP) are listed in any of these databases and you try to send an e-mail to a server that uses that particular database to filter spam, you will find out that you cannot send e-mails to that host.</p><p>One such system is <a
href="http://www.sorbs.net/">SORBS</a> which blacklisted my IP once. Due to the fact that SORBS is run by volunteers and requests money to remove blocks, I am not sure that many organizations use it in their spam prevention plans. Sometimes the issue that will create a blacklisting is very small, yet removing it becomes something very big.</p><h3>Are you on an email blacklist?</h3><p>There are several sites where you can <a
href="http://www.mxtoolbox.com/blacklists.aspx">enter the IP address that your mail is sent from to check if you are on a blacklist</a>.</p><p>Most of the time, you can remove your IP from any blacklist by visiting their site and submitting a removal form. Such information may include proof that you have ceased any actions that got your IP blacklisted in the first place, or may not require anything but your mere interaction, to demonstrate that you are not a robot or a script. Or you can get your host to do this. However this can take about a week! What do you do in the meantime?</p><h3>Get your host to route your mail through a different IP address</h3><p>This will stop the problem in the short term while you negotiate the de-listing with the blacklisting company.</p><h3>Use Gmail to send and receive mail from the blacklisted address</h3><p>Whether or not you are on an email blacklist it&#8217;s good to have backup. I can&#8217;t think of anything better than Google Mail. Here you can store up to 7340 MB of emails!</p><p><strong>Forward all your mail to your Gmail account</strong></p><p>This is how I do this using cPanel. To forward email from cPanel to Gmail:</p><ol><li>Log in to your cPanel administration page</li><li>Click on the top left icon &#8220;Email Accounts&#8221;</li><li>Click on the Access Webmail globe next to the email address you want to access</li><li>Enter password</li><li>Then when you get to the screen where you choose RoundCube, Squirrel Mail or Horde, click the &#8220;Forwarding&#8221; or &#8220;Forwarding options&#8221; and get a copy of all the mail you receive sent to your Gmail address.</li></ol><p><strong>How to add a custom &#8220;From:&#8221; address in Gmail:</strong></p><ol><li>Then in Gmail, click Settings &gt; Accounts then click &#8220;Add another email address you own&#8221; and enter your other email address.</li><li>Google will then send you an email with a confirmation code to this other email address which you should enter in the window that has popped up from Gmail.</li></ol><p>The benefit of doing this Gmail set up is that you can reply to emails sent to any other email address (as long as you click the &#8220;Reply from the same address the message was sent to&#8221; option) and make it look like the replies are being sent from the other address rather than Gmail. Also when composing a new mail in Gmail you have the option of which email address you want the email to be sent from in the dropdown menu next to the From:</p><p>Forwarding all mail to Gmail and adding custom &#8220;From:&#8221; addresses is by no means a fool-proof or fale-safe plan for email. However it&#8217;s incredibly useful to have copies of the mail that&#8217;s sent to your inbox and the ability to reply to that mail from the Gmail interface on a browser is a great way of nullifying the painful effects of a blacklisting!</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-to-do-if-you-are-on-an-email-blacklist/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Web design using JavaScript</title><link>http://robcubbon.com/web-design-using-javascript/</link> <comments>http://robcubbon.com/web-design-using-javascript/#comments</comments> <pubDate>Fri, 12 Jun 2009 11:15:18 +0000</pubDate> <dc:creator>Rob Cubbon</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[design]]></category> <category><![CDATA[head]]></category> <category><![CDATA[images]]></category> <category><![CDATA[javascript]]></category> <guid
isPermaLink="false">http://robcubbon.com/?p=589</guid> <description><![CDATA[<p>I&#8217;ve talked many times about the limitations of Flash. It&#8217;s issues with accessibility and SEO are two of the main ones. So if you want something to look a bit &#8220;flashy&#8221; on your website, always see if you can do it with JavaScript first. Simple and interactive image slideshow fader with JavaScript I got this [...]</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>I&#8217;ve talked many times about the limitations of Flash. It&#8217;s issues with accessibility and SEO are two of the main ones. So if you want something to look a bit &#8220;flashy&#8221; on your website, always see if you can do it with JavaScript first.</p><h3>Simple and interactive image slideshow fader with JavaScript</h3><p>I got this <a
href="http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.htm">image slideshow fader from DynamicDrive</a>. I used it to show images from different websites I have designed and developed on my home page.</p><h3>How to use it</h3><p>You should save all the images you want in your fader and put them in your image directory as normal. The references to the images (plus links when the image is clicked) should be put in the beginning of a script found at DynamicDrive. If you follow the directions at DynamicDrive they&#8217;ll tell you to put this script in the <code>&lt;head&gt;</code> section of your page. The JavaScript will always be contained by the tags <code>&lt;script type="text/javascript"&gt;</code> and <code>&lt;/script&gt;</code>. I prefer to delete these tags from the script and save it in a .js file and call it in the header between the meta tags and the style sheet link, like so:</p><blockquote><p><code>&lt;script src="http://robcubbon.com/js/rotation.js" type="text/javascript"&gt; &lt;/script&gt;</code></p></blockquote><p>As I saved all the JavaScript in a file called &#8220;rotation.js&#8221; in a folder called &#8220;js&#8221; in the route of my host&#8217;s server.</p><p>After this is done another, much shorter, section of code should be placed in the body of your page where you want the fader which invokes various parameters such as the the delay between the images and whether the slideshow should pause (not rotate) while the mouse is over it, etc.</p><p><a
href="http://www.sarahyouren.com/" class="imglnk"><img
src="http://robcubbon.com/images/sarah-youren-planning-solicitors-website.jpg" style="border:0;" alt="Sarah Youren Planning Solicitors website"/></a></p><p>Here is another example of the JavaScript image fader rotating a few different images on the home page of a website I designed and developed for <a
href="http://www.sarahyouren.com/">Sarah Youren Planning Solicitors</a>.</p><h3>Other JavaScript resources on the web</h3><p>As mentioned this image fader was created by <a
href="http://www.dynamicdrive.com">DynamicDrive</a>. Check out their website there are loads of simple, cross-browser image effects, scrollers, menus, form effects, etc. Another lightweight cut and paste collection of JavaScripts is at <a
href="http://javascript.internet.com/">The JavaScript Source</a>.</p><p>And more powerful JavaScript frameworks can be found at <a
href="http://jquery.com/">jQuery</a> where you will find a JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for web development while at <a
href="http://mootools.net/">MooTools</a> they have a super lightweight web2.0 JavaScript framework.</p><p><strong>What about you?</strong> Have you got any JavaScript tricks or resources up your sleeve?</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/web-design-using-javascript/feed/</wfw:commentRss> <slash:comments>9</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/77 queries in 0.041 seconds using disk: basic
Object Caching 3702/3940 objects using disk: basic
Content Delivery Network via cdn.robcubbon.com

Served from: robcubbon.com @ 2012-05-17 08:57:02 -->
