<?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>Richard Stelmach&#039;s Web Design and Multimedia Portfolio</title>
	<atom:link href="http://creativebinge.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://creativebinge.co.uk/blog</link>
	<description>Web design articles and portfolio work of Richard Stelmach - Yorkshire, UK based web designer</description>
	<lastBuildDate>Sun, 18 Nov 2012 14:28:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Cross Media Competition</title>
		<link>http://creativebinge.co.uk/blog/cross-media-competition/</link>
		<comments>http://creativebinge.co.uk/blog/cross-media-competition/#comments</comments>
		<pubDate>Sun, 18 Nov 2012 14:28:19 +0000</pubDate>
		<dc:creator>Richard Stelmach</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://creativebinge.co.uk/blog/?p=473</guid>
		<description><![CDATA[I enjoyed designing this competition for a variety of mediums. The competition would firstly appear on a postcard with a Royal Mail free-post on one side and a form on the other. The customer also has the option to scan &#8230; <a href="http://creativebinge.co.uk/blog/cross-media-competition/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I enjoyed designing this competition for a variety of mediums. The competition would firstly appear on a postcard with a Royal Mail free-post on one side and a form on the other. The customer also has the option to scan the QR code to enter the competition online. I therefore used responsive web design to optimise the competition page for mobile, desktop and tablets. This enabled me to develop my print and mobile optimisation skills.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativebinge.co.uk/blog/cross-media-competition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Optimisation with CSS Media Queries</title>
		<link>http://creativebinge.co.uk/blog/mobile-optimisation-with-css-media-queries/</link>
		<comments>http://creativebinge.co.uk/blog/mobile-optimisation-with-css-media-queries/#comments</comments>
		<pubDate>Mon, 12 Nov 2012 00:27:27 +0000</pubDate>
		<dc:creator>Richard Stelmach</dc:creator>
				<category><![CDATA[Bio]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://creativebinge.co.uk/blog/?p=455</guid>
		<description><![CDATA[Mobile optimising your website, using Responsive Web Design, can initially be a daunting experience but anyone who is familiar with CSS will find the process relatively easy. A common method is to use media queries to serve CSS, based on &#8230; <a href="http://creativebinge.co.uk/blog/mobile-optimisation-with-css-media-queries/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://creativebinge.co.uk/blog/mobile-optimisation-with-css-media-queries" title="Mobile Optimisation with CSS Media Queries"><img src="http://creativebinge.co.uk/blog/wp-content/uploads/2012/11/mobile-optimising.jpg" alt="Mobile Optimisation CreativeBinge" title="Mobile Optimisation " width="680" height="346" class="aligncenter size-full wp-image-456" /></a></p>
<p>Mobile optimising your website, using Responsive Web Design, can initially be a daunting experience but anyone who is familiar with CSS will find the process relatively easy. </p>
<p>A common method is to use media queries to serve CSS, based on the browser&#8217;s dimensions. iPhones are 320&#215;480, the Samsung S3 is 360&#215;640, the iPad has a resolution of 1024&#215;768 and there are a gazzillion other device sizes in and around this area. <span id="more-455"></span></p>
<h4 style="font-size:16px; margin:10px 0 10px 0;">Retina Display</h4>
<p>The first thing to consider is document setup. You need to design your mobile version and imagine how it would expand in a liquid layout. What size should you create your document?</p>
<p>Retina display is the term Apple use for the display on their phones and tablets. Usually &#8211; the higher the resolution is on a monitor &#8211; the smaller things physically get, on screen. (Adjust your monitor to a low setting and you&#8217;ll see that  everything looks massive). Apple&#8217;s devices have a high resolution but a small screen, so they up-scale the images to twice their actual size. You therefore have to make your images twice as big and then set the size with CSS. There are some javascript methods around but this is the basic way.</p>
<p>Your document should therefore be twice as big as it would appear on the phone. Therefore, you should create it at 640px width and any height. It sometimes helps to create it at this size, add guides and then increase the canvas size, this will help if you need to create wide background images or work out how it&#8217;s liquid layout would work.</p>
<p>Here is how I created my document:</p>
<p><img src="http://creativebinge.co.uk/blog/wp-content/uploads/2012/11/mobile-design.jpg" alt="Mobile Design Document Setup" title="Mobile Document Setup" width="680" height="975" class="aligncenter size-full wp-image-457" /></p>
<h4 style="font-size:16px; margin:10px 0 10px 0;">Future Proof</h4>
<p>The thing to remember is to future proof your layout as mobile screen sizes are changing all the time. To do this &#8211; you need to implement a liquid layout with a minimum and maximum width. When implementing my mobile friendly site, I decided that anything that has a width over 767px should be fine to display the desktop version of the site. <strong>Edit: it&#8217;s probably best to have a view for devices between 768 and 960px / full width of your desktop site as when you force the viewport to a certain zoom level you can run into complications.</strong></p>
<h4 style="font-size:16px; margin:10px 0 10px 0;">Media Query</h4>
<div id="fvch-codeblock-0" class="fvch-codeblock">
<table>
<tr>
<td class="fvch-line-numbers">
<pre>1
2
3
4
5
</pre>
</td>
<td class="fvch-code">
<pre id="fvch-code-0"><span class="css"><span class="css-comment">/* regular desktop styles here */</span>

<span class="css-media">@media only screen and (max-width : 767px){</span>
   <span class="css-comment">/* mobile styles here */</span>
}</span></pre>
</td>
</tr>
</table>
</div>
<p>This is the basic code that will allow you to start optimising your site. It basically says that anything with a width less that 768px will use the following styles. You would still set your desktop styles first above the media query and then override anything you need to, within this media query.</p>
<h4 style="font-size:16px; margin:10px 0 10px 0;">min-width &amp; width:auto</h4>
<p>This often consists of widths. You&#8217;ll probably be needing to give your containing div a min-width of 320px to stop it getting overly squashed, in the off a user has a tiny display.</p>
<div id="fvch-codeblock-1" class="fvch-codeblock">
<table>
<tr>
<td class="fvch-line-numbers">
<pre>1
2
3
4
5
</pre>
</td>
<td class="fvch-code">
<pre id="fvch-code-1"><span class="css">div#wrapper{
        <span class="css-property">min-width<span class="css-selector">:</span><span class="css-value">320px</span></span>;
        <span class="css-property">max-width<span class="css-selector">:</span><span class="css-value">767px</span></span>;
        <span class="css-property">width<span class="css-selector">:</span><span class="css-value">auto</span></span>;
    }</span></pre>
</td>
</tr>
</table>
</div>
<p>As much as possible, widths should be set to auto so your layout expands up to 767px for small tablets, differing screen sizes in portrait view or when people use their phone in landscape view. You can in fact target these separately but with a liquid layout, there&#8217;s not much point.</p>
<h4 style="font-size:16px; margin:10px 0 10px 0;">Scaling Background Images</h4>
<div id="fvch-codeblock-2" class="fvch-codeblock">
<table>
<tr>
<td class="fvch-line-numbers">
<pre>1
2
3
4
5
6
7
8
</pre>
</td>
<td class="fvch-code">
<pre id="fvch-code-2"><span class="css">div#wrapper div#header h1{
        <span class="css-property">background-image<span class="css-selector">:</span><span class="css-value">url(/images/richard-stelmach-logo-mobile.gif)</span></span>;
        <span class="css-property">background-repeat<span class="css-selector">:</span><span class="css-value">no-repeat</span></span>;
        <span class="css-property">background-position<span class="css-selector">:</span><span class="css-value">top center</span></span>;
        <span class="css-property">background-size<span class="css-selector">:</span><span class="css-value">320px 409px</span></span>;
        <span class="css-property">height<span class="css-selector">:</span><span class="css-value">409px</span></span>;
        <span class="css-property">margin<span class="css-selector">:</span><span class="css-value">0 auto</span></span>;
    }</span></pre>
</td>
</tr>
</table>
</div>
<p>As my logo is twice as big to maintain quality, I then had to set it&#8217;s size in the CSS to position it correctly in the h1.</p>
<h4 style="font-size:16px; margin:10px 0 10px 0;">Mobile Font Sizes</h4>
<p>You can use regular pixel font sizes and they&#8217;ll appear at a similar size to normal. Sometimes however, the iPhone will increase the font size of certain elements, especially if their size isn&#8217;t defined. To avoid this, use:</p>
<div id="fvch-codeblock-3" class="fvch-codeblock">
<table>
<tr>
<td class="fvch-line-numbers">
<pre>1
</pre>
</td>
<td class="fvch-code">
<pre id="fvch-code-3"><span class="css"><span class="css-property">-webkit-text-size-adjust<span class="css-selector">:</span><span class="css-value"> none</span></span>;</span></pre>
</td>
</tr>
</table>
</div>
<h4 style="font-size:16px; margin:10px 0 10px 0;">Stopping the iPhone from Displaying the Desktop Version</h4>
<p>To ensure your mobile version is displayed, add this meta tag within the <head>:</p>
<div id="fvch-codeblock-4" class="fvch-codeblock">
<table>
<tr>
<td class="fvch-line-numbers">
<pre>1
</pre>
</td>
<td class="fvch-code">
<pre id="fvch-code-4"><span class="html"><span class="html-other-element">&lt;meta name=<span class="html-attribute">&quot;viewport&quot;</span> content=<span class="html-attribute">&quot;initial-scale=1, maximum-scale=1&quot;</span> /&gt;</span></span></pre>
</td>
</tr>
</table>
</div>
<h4 style="font-size:16px; margin:10px 0 10px 0;">Testing</h4>
<p>If you don&#8217;t have a Mac, the easiest way to test is simply to resize your browser. Once it&#8217;s finished it&#8217;s useful to test it on devices <del datetime="2012-11-12T21:17:15+00:00">but so far I don&#8217;t know of an easy way to do this, other than using my actual iPhone itself</del>. <a href="http://www.opera.com/developer/tools/mobile/" title="Opera Mobile Emulator">Opera Mobile Emulator</a> has a variety of Android devices that is a great way to test and as it&#8217;s downloadable you can test local files. <a href="http://ipadpeek.com/" title="iPad Geek">http://ipadpeek.com/</a> is useful for testing how your site looks on an iPad though I&#8217;m not sure this is accurate.</p>
<h4 style="font-size:16px; margin:10px 0 10px 0;">Conditional Javascript</h4>
<p>You may find that some javascript functionality is inappropriate on a mobile. I found that my lightbox gallery didn&#8217;t work as well on the phone so simply directed the user to a new page and inserted a back button for the user to go back to the listing page.</p>
<div id="fvch-codeblock-5" class="fvch-codeblock">
<table>
<tr>
<td class="fvch-line-numbers">
<pre>1
2
3
</pre>
</td>
<td class="fvch-code">
<pre id="fvch-code-5"><span class="js"><span class="js-reserved-keyword">if</span><span class="js-bracket">(</span>$<span class="js-bracket">(</span><span class="js-client-keyword">window</span><span class="js-bracket">)</span>.width<span class="js-bracket">(</span><span class="js-bracket">)</span> <span class="js-operator">&gt;</span> <span class="js-number">7</span><span class="js-number">6</span><span class="js-number">7</span><span class="js-bracket">)</span><span class="js-bracket">{</span>
<span class="js-comment">//javascript for desktop version here</span>
<span class="js-bracket">}</span></span></pre>
</td>
</tr>
</table>
</div>
<h4 style="font-size:16px; margin:10px 0 10px 0;">Server Side Device Targeting </h4>
<p>Alternatively you could link certain javascript files or exclude content by using the handy PHP script <a href="https://github.com/serbanghita/Mobile-Detect" title="Mobile Detect PHP">called Mobile Detect</a>.</p>
<h4 style="font-size:16px; margin:10px 0 10px 0;">Conclusion</h4>
<p>There was some further work required to determine whether the page had been called by an AJAX request. I would recommend <a href="http://davidwalsh.name/detect-ajax" title="PHP detect AJAX">this post about detecting AJAX with PHP</a> which I found very useful.</p>
<p>My site took a day to optimise and most of that time was due to some javascript issues when implementing my non-lightbox gallery. For small scale sites, mobile optimisation can be done relatively quickly and easily and with mobile usage increasing constantly, it&#8217;s becoming a necessity.</head></p>
]]></content:encoded>
			<wfw:commentRss>http://creativebinge.co.uk/blog/mobile-optimisation-with-css-media-queries/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Development of the Fuskr Logo Design</title>
		<link>http://creativebinge.co.uk/blog/development-of-fuskr-logo-design/</link>
		<comments>http://creativebinge.co.uk/blog/development-of-fuskr-logo-design/#comments</comments>
		<pubDate>Wed, 11 Jul 2012 22:04:54 +0000</pubDate>
		<dc:creator>Richard Stelmach</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://creativebinge.co.uk/blog/?p=444</guid>
		<description><![CDATA[I recently created a logo and a number of promotional images for my friend&#8217;s Chrome application, Fuskr. In this post I&#8217;d like to outline some of the logic and ideas behind the logo design. What Does the App Do? The &#8230; <a href="http://creativebinge.co.uk/blog/development-of-fuskr-logo-design/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://creativebinge.co.uk/blog/development-of-fuskr-logo-design"><img src="http://creativebinge.co.uk/blog/wp-content/uploads/2012/07/fuskr.jpg" alt="" title="fuskr" width="680" height="346" class="aligncenter size-full wp-image-445" /></a></p>
<p>I recently created a logo and a number of promotional images for my friend&#8217;s Chrome application, <a href="https://chrome.google.com/webstore/detail/glieaboaghdnlglpkekghloldikefofo" title="Fuskr Google Chrome App">Fuskr</a>. In this post I&#8217;d like to outline some of the logic and ideas behind the logo design. <span id="more-444"></span></p>
<p><strong>What Does the App Do?</strong></p>
<p>The starting point was to look at what the app did, download it and try it out.</p>
<p><em>&#8220;Create a gallery of images based on one image that contains a number by incrementing and decrementing the images.&#8221;</em> &#8211; Fuskr app description</p>
<p>The term &#8220;Fusker&#8221; is also described on <a href="http://en.wikipedia.org/wiki/Fusker" title="Fusker definition">Wikipedia</a> which I also read as a part of my research.</p>
<p>I also had a look at Chrome&#8217;s app store to see what other people did.</p>
<p><strong>What Should the Logo Design do?</strong></p>
<p>I established the logo design needed to:</p>
<ul>
<li>communicate the function of the app</li>
<li>look modern and professional </li>
<li>incorporate the image browsing theme</li>
<li>communicate the cycling / gallery of images</li>
<li>be easily readable and identifiable</li>
<li>communicate its message in its simplest form &#8211; minimalist</li>
</ul>
<p><strong>Research, Developing Ideas and the Final Design</strong></p>
<p>Having established this I looked at photo / polaroid icons on various stock photography sites which usually have pretty high quality &#8220;web icons&#8221;. I realised there was a universal icon for landscape photographs of the mountains/hills. Also, sometimes the green grass and blue sky type icons are used to represent photographs. Given I also wanted to communicate it was an app &#8211; I need to incorporate some of the good old rounded corners and shininess to logo.</p>
<p>The research generated a lot of ideas for me to work on and I immediately had a clear direction. I played around with different imagery shapes, initially starting off in black and white (which I often do when creating logos) and aiming to create as simple but effective representation of the message as possible.</p>
<p>Here is a progression of nearly all of my ideas that I developed in Illustrator. Please note that it slightly pains me to share developmental work as often the design will go through some hideous incarnations before reaching a final design that is ready to show to the client!</p>
<p><img src="http://creativebinge.co.uk/blog/wp-content/uploads/2012/07/fuskr-logo-ideas.gif" alt="" title="Progression of logo designs" width="680" height="269" class="aligncenter size-full wp-image-446" /></p>
<p>As you can see &#8211; I established the stacked effect fairly early on and most of the work was finding ways to incorporate the photo symbol with the &#8216;F&#8217;. This formed the icon design for the app which would be used at smaller sizes and for the app icon. I then needed to find ways to show the whole &#8220;Fuskr&#8221; within the icon &#8211; I explored different ways but really I had established this early on and then it was just a case of getting the colours, gradients and shininess right. I believed the typeface should be a sans-serif font as I feel sans-serif fonts seem a bit more modern.</p>
<p><strong>What Colour Should it be?</strong></p>
<p><img src="http://creativebinge.co.uk/blog/wp-content/uploads/2012/07/fuskr-colours.gif" alt="" title="fuskr logo colours" width="680" height="147" class="aligncenter size-full wp-image-447" /></p>
<p>I found the logo worked with many colours which often I feel is a sign of a good logo, hence I often initially work in black and white &#8211; and incorporate the colour later. I found that the blue was in danger of looking like Facebook, the black and a bit unfriendly, the orange was okay but I felt the red stood out the most + this shade of red is popular in Summer fashion at the moment. I did in fact look at some fashion sites to find out fashionable colours.</p>
<p><strong>Summary</strong></p>
<p>Once I had finished the design I showed it to my friend+client, he was immediately happy and content with the logo which was great! The project took me roughly 5 hours and I thoroughly enjoyed it. Logo design is one of my favourite forms of design as it allows you to consider the design at a very pure, conceptual level and challenges you to visually communicate a message in one simple graphic.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativebinge.co.uk/blog/development-of-fuskr-logo-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fuskr Logo Design</title>
		<link>http://creativebinge.co.uk/blog/fuskr-logo-design/</link>
		<comments>http://creativebinge.co.uk/blog/fuskr-logo-design/#comments</comments>
		<pubDate>Wed, 11 Jul 2012 21:20:10 +0000</pubDate>
		<dc:creator>Richard Stelmach</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://creativebinge.co.uk/blog/?p=439</guid>
		<description><![CDATA[I created this logo design for the Google Chrome application &#8211; Fuskr which has over 2,000 active users. The app was created by Dan Atkinson and Jonathon Bolster and it provides a means to create a gallery of images based &#8230; <a href="http://creativebinge.co.uk/blog/fuskr-logo-design/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I created this logo design for the Google Chrome application &#8211; <a href="https://chrome.google.com/webstore/detail/glieaboaghdnlglpkekghloldikefofo" title="Fuskr Google Chrome App">Fuskr</a> which has over 2,000 active users. The app was created by Dan Atkinson and Jonathon Bolster and it provides a means to create a gallery of images based on one image that contains a number by incrementing and decrementing the images. I aimed to get across these factors in the logo design.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativebinge.co.uk/blog/fuskr-logo-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Winter Theatre Guide Interactive PDF</title>
		<link>http://creativebinge.co.uk/blog/winter-theatre-guide-interactive-pdf/</link>
		<comments>http://creativebinge.co.uk/blog/winter-theatre-guide-interactive-pdf/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 19:49:57 +0000</pubDate>
		<dc:creator>Richard Stelmach</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://creativebinge.co.uk/blog/?p=422</guid>
		<description><![CDATA[I created this interactive PDF using Adobe inDesign, Photoshop and Illustrator. The guide was used around the superbreak.com website and emailed out to the theatre segment of their email database as well as being posted on various PDF websites. The &#8230; <a href="http://creativebinge.co.uk/blog/winter-theatre-guide-interactive-pdf/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I created this interactive PDF using Adobe inDesign, Photoshop and Illustrator. The guide was used around the superbreak.com website and emailed out to the theatre segment of their email database as well as being posted on various PDF websites. The guide contained videos and hotspots that linked through to the site, <a href="http://content.yudu.com/A1udqt/winter-theatre-guide/resources/index.htm" title="Winter Theatre Guide" target="_blank">click here to view the guide</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativebinge.co.uk/blog/winter-theatre-guide-interactive-pdf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comic Fonts</title>
		<link>http://creativebinge.co.uk/blog/comic-fonts/</link>
		<comments>http://creativebinge.co.uk/blog/comic-fonts/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 17:10:53 +0000</pubDate>
		<dc:creator>Richard Stelmach</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://creativebinge.co.uk/blog/?p=410</guid>
		<description><![CDATA[These are my favourite comic fonts used at the moment on my comics and illustration site mindvomit.co.uk. I thought this list of free comic fonts may be handy for fellow illustrators / designers and comic artistes. Here are my favourites &#8230; <a href="http://creativebinge.co.uk/blog/comic-fonts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://creativebinge.co.uk/blog/comic-fonts/" title="Comic Fonts"><img src="http://creativebinge.co.uk/blog/wp-content/uploads/2012/01/comic-fonts.gif" alt="Comic Fonts used on Mindvomit.co.uk" title="Comic Fonts used on Mind Vomit" width="680" height="346" class="aligncenter size-full wp-image-411" /></a></p>
<p>These are my favourite comic fonts used at the moment on my <a href="http://mindvomit.co.uk" title="Comics and Illustrations by Richard Stelmach">comics and illustration site mindvomit.co.uk</a>. I thought this  list of free comic fonts may be handy for fellow illustrators / designers and comic artistes.</p>
<p>Here are my favourites and links to where you can download them for free:<span id="more-410"></span></p>
<ul>
<li><a href="http://www.dafont.com/gillescomic-handwriting.font" title="Gilles' Comic Handwriting">Gilles&#8217; Comic Handwriting</a> &#8211; great for speech</li>
<li><a href="http://www.dafont.com/double-feature.font" title="Double Feature">Double Feature</a> &#8211; I use mainly for &#8216;mindvomit.co.uk&#8217; sign offs</li>
<li><a href="http://www.dafont.com/indy-pimp.font" title="Indy Pimp">Indy Pimp</a> &#8211; Headline font or exaggerated speech + I use for the <a href="http://mindvomit.co.uk" title="Mind Vomit Logo">mind vomit logo</a></li>
<li><a href="http://www.dafont.com/maybe-but-not-always.font" title="Maybe But Not Always">Maybe but not Always</a> &#8211; love this thick marker handwriting font &#8211; I use mostly for the main title or sign off</li>
<li><a href="http://fontzone.net/font-details/Goudy+Stout/" title="Goudy Stout">Goudy Stout</a> &#8211; great vintage / retro feel to this font &#8211; I use for the titles of many of my comics</li>
<li><a href="http://www.behance.net/gallery/Legion-Slab-Typeface/1633237" title="Legion Slab">Legion Slab</a> &#8211; another retro font, I think the term would be woodcut style font, I use this for graphics / ads mostly. It reminds me of early to mid 20th century but I have no idea if this is accurate!</li>
<li><a href="http://www.google.com/webfonts/specimen/Dancing+Script" title="Dancing Script">Dancing Script</a> &#8211; a lovely italic script font, again I use this mostly for ads or headlines &#8211; it contrasts nicely against Legion Slab or Goudy Stout</li>
</ul>
<p>For examples of their usage &#8211; visit my <a href="http://mindvomit.co.uk" title="Comics and Illustrations by Richard Stelmach">comic and illustration site, mindvomit.co.uk</a>.</p>
<p>I hope you find it useful and if anyone has any other favourite fonts, please feel free to leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativebinge.co.uk/blog/comic-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wacom Inkling Review</title>
		<link>http://creativebinge.co.uk/blog/wacom-inkling-review/</link>
		<comments>http://creativebinge.co.uk/blog/wacom-inkling-review/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 17:04:29 +0000</pubDate>
		<dc:creator>Richard Stelmach</dc:creator>
				<category><![CDATA[Bio]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://creativebinge.co.uk/blog/?p=402</guid>
		<description><![CDATA[I had high hopes for the Wacom Inkling, of course I was dubious that it would accurately convert my drawings into a digital form just by using a sensor and special pen but the demo and marketing of the product &#8230; <a href="http://creativebinge.co.uk/blog/wacom-inkling-review/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://creativebinge.co.uk/blog/wacom-inkling-review/" title="Wacom Inkling Review"><img src="http://creativebinge.co.uk/blog/wp-content/uploads/2011/12/wacom-inkling-comparison.gif" alt="Wacom inkling drawing compared to scanned copy" title="Wacom Inkling Review" width="680" height="346" class="aligncenter size-full wp-image-403" /></a></p>
<p>I had high hopes for the Wacom Inkling, of course I was dubious that it would accurately convert my drawings into a digital form just by using a sensor and special pen but the demo and marketing of the product looked so damn good and Wacom have a great reputation for their graphic tablets. Before I begin I will say that I read all the tips on how to use the inkling, tried different settings and even different types of paper.</p>
<p>As you can see above, the results speak for themselves. Okay, it doesn&#8217;t look aweful but there are many descrapancies between the original drawing and the inkling version mainly in the form of lines being in the wrong position. As I draw <a href="http://mindvomit.co.uk" title="Mind Vomit: Comics and Illustration by Richard Stelmach">comics</a>, the accuracy of the lines is pretty crucial, so really even minor differences can be quite bad.</p>
<p>But it gets worse: <span id="more-402"></span></p>
<p><img src="http://creativebinge.co.uk/blog/wp-content/uploads/2011/12/wacom-inkling-comparison2.gif" alt="Inkling distorted image" title="Wacom Inkling Comparison" width="680" height="190" class="aligncenter size-full wp-image-404" /></p>
<p>Here you can see how badly it can misplace lines to the point where it becomes unusable. I found the best method is still drawing, scanning and auto-tracing in illustrator to clean the drawing up a bit.</p>
<p>Also, as you&#8217;re limited to just the ball point pen &#8211; it can be restrictive in comic drawing where I often like to use a variety of pen sizes to alter the thickness of lines or use a brush tip pen.</p>
<p>One of the things I liked about the inkling is vectorising the image by taking it into Illustrator and I thought I would then be able to adapt the points / anchors on the lines to do things like change expressions or move body parts &#8211; you can after all, create layers with the inkling. However, this resulted in far too many points on the lines to be able to do this &#8211; probably one of the reasons the lines often appear jittery or scrambled.</p>
<p>I found I got better results when drawing large images in the centre of the page but this isn&#8217;t very flexible.</p>
<p>Finally, if you don&#8217;t make a mark for a certain number of seconds the pen goes into standby &#8211; you could probably notice this if the green light stops flashing (which it does when you make a mark), but when you&#8217;re focussed on drawing it&#8217;s easy to miss this, which can often result in this:</p>
<p><img src="http://creativebinge.co.uk/blog/wp-content/uploads/2011/12/wacom-inkling-comparison3.gif" alt="Inkling pen going into standby" title="Inkling pen standby" width="680" height="216" class="aligncenter size-full wp-image-406" /></p>
<h4 style="font-size:16px; margin:10px 0 10px 0;">Conclusion</h4>
<p>The Wacom Inkling is too temperamental, it will often misplace lines and distort the image. Even when drawing in a way that the inkling prefers you can still run into problems and the whole experience becomes more time consuming than using a good old scanner. I hope that the product develops and future editions become usable but in the mean time I would definitely recommend avoiding this product.</p>
<p>Long live the scanner!</p>
<p><a href="http://www.mindvomit.co.uk/post/14510687411/wacom-inkling-vs-scanner" title="Wacom Inkling Review">View the Wacom Inkling vs Scanner comic here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://creativebinge.co.uk/blog/wacom-inkling-review/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Promoting Web Comics via Social Media</title>
		<link>http://creativebinge.co.uk/blog/promoting-web-comics-via-social-media/</link>
		<comments>http://creativebinge.co.uk/blog/promoting-web-comics-via-social-media/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 12:35:15 +0000</pubDate>
		<dc:creator>Richard Stelmach</dc:creator>
				<category><![CDATA[Bio]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://creativebinge.co.uk/blog/?p=386</guid>
		<description><![CDATA[For the last seven months I have been creating comics and publishing them on my tumblr blog &#8211; mindvomit.co.uk. In my first month I received around 240 unique visitors and in my last month (November 2011) I received 58,828, a &#8230; <a href="http://creativebinge.co.uk/blog/promoting-web-comics-via-social-media/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://creativebinge.co.uk/blog/promoting-web-comics-via-social-media/" title="Promoting Web Comics via Social Media"><img src="http://creativebinge.co.uk/blog/wp-content/uploads/2011/12/traffic-sources.gif" alt="Traffic sources in the last 7 months to mindvomit.co.uk - stumbleupon is top" title="Social Media Traffic Sources" width="489" height="282" class="alignnone size-full wp-image-387" style="margin:0 auto; display:block;" /></a></p>
<p>For the last seven months I have been creating comics and publishing them on my tumblr blog &#8211; <a href="http://mindvomit.co.uk" title="Mind Vomit - Comics and Illustrations by Richard Stelmach">mindvomit.co.uk</a>. In my first month I received around 240 unique visitors and in my last month (November 2011) I received 58,828, a 24411% increase in traffic! However, this was mainly due my <a href="http://www.mindvomit.co.uk/post/12932902022/narwhal-bad-ass-mo-fo" title="Narwhal - The Baddest Mother F*cker in the Ocean">Narwhal &#8211; The Baddest Mother F*cker in the Ocean</a> post that was unusually popular, generating 56,015 unique visits. If we take an average month like October &#8211; the percentage increase in traffic is 174%, which I think is still pretty good. <span id="more-386"></span></p>
<p>I want to share my finding and tips to promoting comics (or any other content really) via social media.</p>
<h4 style="font-size:16px;">Submit your content to all of the major social media sites</h4>
<p>Persist in submitting your content to all of the major sites &#8211; for a while I received no Stumbleupon views at all and then I had over 96 thousand. Especially with stumbleupon you have to gain link juice by submitting links and also stumbling other people&#8217;s link within the same category, also try following similar people, in time you should see this pay off.</p>
<p>One thing I&#8217;ve learned is that one post may do amazing on one site and rubbish on another. With my Narwhal post it gained 96k views on stumbleupon but on reddit.com it gained 4 up votes and 3 down votes so only received 137 visits! Other times reddit.com has got me more visits so it pays to submit to different sites.</p>
<h4 style="font-size:16px;">Which Sites Generate the Most Traffic</h4>
<p>In my experience stumbleupon has the biggest potential to generate visits, reddit.com is also good for comics &#8211; be sure to submit to the webcomic category &#8211; for stumbleupon I have focussed on &#8216;humor&#8217;, &#8216;webcomic&#8217; and &#8216;cartoons&#8217;. </p>
<p>As you can see on an average month, reddit usually gets me the most traffic:</p>
<p>< <img src="http://creativebinge.co.uk/blog/wp-content/uploads/2011/12/traffic-sources-excluding-n.gif" alt="Traffic Sources Excluding Narwhal Post" title="Traffic Sources Excluding Narwhal Post" width="489" height="282" class="aligncenter size-full wp-image-388" /></p>
<h4 style="font-size:16px;">Focus on Niche Tags and Categories</h4>
<p>Make use of the tags but don&#8217;t go overboard, it&#8217;s best to focus on just a few key and relevant categories and try and get noticed in that area.</p>
<p>Google labs indicates cartoon and comic being the most popular keywords: http://www.google.com/trends?q=webcomic%2C+comic%2C+cartoon</p>
<p>But then again it will be harder to get noticed in this area so webcomic is also useful!</p>
<h4 style="font-size:16px;">Like other people&#8217;s stuff and interact</h4>
<p>Liking other people&#8217;s work, especially on tumblr.com will atleast ensure you appear in their timeline and they may check out your work and potentially like/follow you in return &#8211; it&#8217;s common sense. Also engaging with users and effectively networking helps build brand loyalty.</p>
<h4 style="font-size:16px;">Use Campaigns</h4>
<p>To gain more tumblr followers I ran a campaign where I offered to <a href="http://www.mindvomit.co.uk/post/13639476755/animated-gif-tumblr-followers" title="illustrated tumblr profile pics">draw the user&#8217;s tumblr profile pic</a> for free in return. Not only did this allow me to <a href="http://www.mindvomit.co.uk/post/13294004620/tumblr-follower-pics" title="Illustration Tumblr">draw some interesting and fun content for my site</a> &#8211; it also did draw quite a few extra people in, helping me increase my tumblr follower count. </p>
<h4 style="font-size:16px;">Social Media Uses</h4>
<ul>
<li><a href="http://twitter.com/richardstelmach" title="Mind Vomit Twitter">Twitter</a>: I use this to keep people up to date when I post a new comic, it also allows me to interact with my users &#8211; building customer loyalty. If someone retweets me it also helps brand awareness.</li>
<li><a href="http://www.stumbleupon.com/stumbler/mind-vomit" title="Mind Vomit Stumbleupon profile">Stumbleupon.com</a>: Like other people&#8217;s stuff, follow people and then submit your own work to generate more visits to your site.</li>
<li><a href="http://www.reddit.com/user/richardstelmach/" title="Mind Vomit on Reddit">Reddit.com</a>: submit your content to a niche category to generate visits to your site</li>
<li><a href="https://plus.google.com/u/0/100394943688319539592" title="Mind Vomit Google+ Page">Google+</a> &amp; Facbeook:I haven&#8217;t put much time into either of these as focucs on driving traffic to my tumblr blog (where I also gain followers), but both are really for enabling people to follow your work and interacting with users. I do have a facebook like button on my site which I think does help people share my content &#8211; which is always good for the viral advertising action.</li>
<li>Digg.com &#8211; I have had no luck with this thus far &#8211; but I imagine like stumbleupon.com you have to put the time in &#8211; digging / following other users.</li>
</ul>
<p>The overall purpose of Social Media is basically promotion, building brand awareness and customer loyalty.</p>
<p>I hope you have found these tips useful and informative, feel free to ask questions or check out my comic site at mindvomit.co.uk.</p>
]]></content:encoded>
			<wfw:commentRss>http://creativebinge.co.uk/blog/promoting-web-comics-via-social-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tumblr Tips: My Learnings</title>
		<link>http://creativebinge.co.uk/blog/tumblr-tips-my-learnings/</link>
		<comments>http://creativebinge.co.uk/blog/tumblr-tips-my-learnings/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 22:52:05 +0000</pubDate>
		<dc:creator>Richard Stelmach</dc:creator>
				<category><![CDATA[Bio]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://creativebinge.co.uk/blog/?p=375</guid>
		<description><![CDATA[Of late I&#8217;ve been posting a weekly comic to my tumblr blog. I&#8217;m fairly new to tumblr and have been trying to get to grips with various tactics to help the success of posts in gaining tumblr likes and reblogs &#8230; <a href="http://creativebinge.co.uk/blog/tumblr-tips-my-learnings/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://creativebinge.co.uk/blog/wp-content/uploads/2011/09/mind-vomit.gif" alt="Mind Vomit: mindvomit.co.uk" title="Mind Vomit" width="489" height="235" class="alignnone size-full wp-image-377" style="display:block; margin:0 auto;" /><br />
Of late I&#8217;ve been posting a weekly comic to my tumblr blog. I&#8217;m fairly new to tumblr and have been trying to get to grips with various tactics to help the success of posts in gaining tumblr likes and reblogs etc so I thought I would share my learning thus far: <span id="more-375"></span></p>
<ul>
<li>Don&#8217;t burn out &#8211; it&#8217;s good to build up a lot of posts in your drafts so you don&#8217;t run out material. If you post everything within a few days, gain popularity but then don&#8217;t post anything for a few weeks it may damage all your earlier efforts!</li>
<li>Post regularly &#8211; post regularly and at similar times so people know when to expect new material. Scheduling posts can help with this. If you have enough content, 2 or 3 posts a week is a good rate. I post once a week which probably isn&#8217;t ideal but does mean each post is higher quality and I don&#8217;t run out of posts.</li>
<li>What&#8217;s the best time to post? I&#8217;m not sure I&#8217;ve mastered this but logically the consensus seems to be in the morning before work/education, lunchtime and after common working hours when people get home &#8211; 5.30 to 7.00. I read somewhere that the peak traffic times for tumblr at 6 to 9 but there doesn&#8217;t seem to be any concrete facts.</li>
<li>Follow people who post similar things &#8211; common sense says they may check out your blog and follow you if you&#8217;re posting similar stuff to theirs.</li>
<li>Like lots of things similar to your blog &#8211; again, this may hook people in to check out your site.</li>
<li>Choose a good theme and keep it simple &#8211; there&#8217;s shed loads of themes but some people bastardise them or choose aweful themes. Basic and simple is best.</li>
<li>Another method is to reblog other people&#8217;s content &#8211; this means you can blog more often and also hooks the person in who you&#8217;ve reblogged. The only problem with this method is that it clutters up your own homepage if people come to look at your original content. This has put me off following lots of people even though their material is good, they reblog a lot of sh*t!</li>
<li>Submit your posts to online news sites etc like reddit.com, digg.com etc. The odd post may be hit and result in new followers and lots of visits!</li>
<li>Use google analytics</li>
</ul>
<p>I&#8217;ve also added a domain name to my tumblr blog, which I may write another blog post about but for now, please take a look at my site: <a href="http://mindvomit.co.uk" title="Mind Vomite: Comics and illustrations by richard stelmach">http://mindvomit.co.uk</a>, I&#8217;ve recently designed a logo/emblem to place on my comics:</p>
<p><a href="http://creativebinge.co.uk/blog/wp-content/uploads/2011/09/mind-vomit-small.gif"><img src="http://creativebinge.co.uk/blog/wp-content/uploads/2011/09/mind-vomit-small.gif" alt="mind vomit logo" title="mind vomit logo" width="489" height="168" class="alignnone size-full wp-image-378" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://creativebinge.co.uk/blog/tumblr-tips-my-learnings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Open Graph Protocol on a Tumblr Blog</title>
		<link>http://creativebinge.co.uk/blog/adding-facebook-open-graph-protocol-to-a-tumblr-blog/</link>
		<comments>http://creativebinge.co.uk/blog/adding-facebook-open-graph-protocol-to-a-tumblr-blog/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 09:38:55 +0000</pubDate>
		<dc:creator>Richard Stelmach</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://creativebinge.co.uk/blog/?p=366</guid>
		<description><![CDATA[When a post gets shared or &#8216;liked&#8217; on Facebook you want it to have the best possible chance of getting noticed and more people to &#8216;like&#8217; it for the viral explosion that everyone dreams of! You want the news item &#8230; <a href="http://creativebinge.co.uk/blog/adding-facebook-open-graph-protocol-to-a-tumblr-blog/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When a post gets shared or &#8216;liked&#8217; on Facebook you want it to have the best possible chance of getting noticed and more people to &#8216;like&#8217; it for the viral explosion that everyone dreams of! You want the news item on Facebook to have a nice thumbnail, sadly Facebook doesn&#8217;t always pick up the right picture, so adding some meta content to the head of your tumblr theme allows you to set either your profile picture or photo post as the thumbnail.</p>
<p>On tumblr, it&#8217;s really simple, just customise your theme, go to the theme tab and add some custom HTML. Where you see all the <meta> tags, add the following code above or below: <span id="more-366"></span></p>
<div id="fvch-codeblock-0" class="fvch-codeblock">
<table>
<tr>
<td class="fvch-line-numbers">
<pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre>
</td>
<td class="fvch-code">
<pre id="fvch-code-0"><span class="html">{block:Posts}
{block:Photo}
<span class="html-other-element">&lt;meta property=<span class="html-attribute">&quot;og:image&quot;</span> content=<span class="html-attribute">&quot;{PhotoURL-500}&quot;</span> /&gt;</span>
<span class="html-other-element">&lt;meta property=<span class="html-attribute">&quot;og:image&quot;</span> content=<span class="html-attribute">&quot;{PhotoURL-400}&quot;</span> /&gt;</span>
<span class="html-other-element">&lt;meta property=<span class="html-attribute">&quot;og:image&quot;</span> content=<span class="html-attribute">&quot;{PhotoURL-250}&quot;</span> /&gt;</span>
<span class="html-other-element">&lt;meta property=<span class="html-attribute">&quot;og:image&quot;</span> content=<span class="html-attribute">&quot;{PhotoURL-100}&quot;</span> /&gt;</span>
<span class="html-other-element">&lt;meta property=<span class="html-attribute">&quot;og:image&quot;</span> content=<span class="html-attribute">&quot;{PhotoURL-75sq}&quot;</span> /&gt;</span>
<span class="html-other-element">&lt;meta property=<span class="html-attribute">&quot;og:image&quot;</span> content=<span class="html-attribute">&quot;{PhotoURL-HighRes}&quot;</span> /&gt;</span>
<span class="html-other-element">&lt;meta property=<span class="html-attribute">&quot;og:url&quot;</span> content=<span class="html-attribute">&quot;{Permalink}&quot;</span> /&gt;</span>
<span class="html-other-element">&lt;meta property=<span class="html-attribute">&quot;og:title&quot;</span> content=<span class="html-attribute">&quot;{Title} - {Name}&quot;</span> /&gt;</span>
<span class="html-other-element">&lt;meta property=<span class="html-attribute">&quot;og:type&quot;</span> content=<span class="html-attribute">&quot;article&quot;</span> /&gt;</span>
<span class="html-other-element">&lt;meta property=<span class="html-attribute">&quot;og:description&quot;</span> content=<span class="html-attribute">&quot;{MetaDescription}&quot;</span> /&gt;</span>
{/block:Photo}
{/block:Posts}</span></pre>
</td>
</tr>
</table>
</div>
<p>In this case I&#8217;ve only applied it to the photo type posts as this is the only content i&#8217;m interested in generating &#8216;likes&#8217;. You&#8217;ll also need to add a Facebook Like button to your posts, some themes give you this option or you add it into the code yourself. </p>
<p>You&#8217;ll also notice that I&#8217;ve added multiple image items, this is fine by Facebook as you&#8217;re effectively listing all the images related to that post.</p>
<p>To see the generated HTML in action, visit one of my posts on <a href="http://richardstelmach.tumblr.com/post/10042544816/vulture-comic" title="Mind Vomit: Richard Stelmach Comics">my tumblr site</a> and press ctrl+U to view the source.</p>
<p>It is possible to add your facebook username and app ID but when testing it, it always said it had a problem with the domain, even though I had added the URL of my site in the options, if anyone knows a solution to this, please let me know!</meta></p>
]]></content:encoded>
			<wfw:commentRss>http://creativebinge.co.uk/blog/adding-facebook-open-graph-protocol-to-a-tumblr-blog/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
