<?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>Designer. Gamer. Geek. &#187; Projects</title>
	<atom:link href="http://www.designergamergeek.com/all/projects/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designergamergeek.com</link>
	<description>Covering design, games, technology, politics and food!</description>
	<lastBuildDate>Fri, 06 Aug 2010 17:08:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Yaypaul.com title slider &#8211; explained</title>
		<link>http://www.designergamergeek.com/projects/yaypaul-com-title-slider-explained/</link>
		<comments>http://www.designergamergeek.com/projects/yaypaul-com-title-slider-explained/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 17:04:22 +0000</pubDate>
		<dc:creator>yaypaul</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[YAY Paul]]></category>

		<guid isPermaLink="false">http://www.designergamergeek.com/?p=446</guid>
		<description><![CDATA[I received a request asking me if I&#8217;d mind sharing the piece of code I use to slide entry titles up and down on Yaypaul.com. I&#8217;m always happy to share: I&#8217;ve striped the effect code, added some extra comments and hopefully with this explanation you&#8217;ll be able to decipher it. This particular effect has already [...]]]></description>
			<content:encoded><![CDATA[<p>I received a request asking me if I&#8217;d mind sharing the piece of code I use to slide entry titles up and down on <a title="Open Yaypaul.com website" href="http://www.Yaypaul.com" target="_blank">Yaypaul.com</a>. I&#8217;m always happy to share: I&#8217;ve striped the effect code, added some extra comments and hopefully with this explanation you&#8217;ll be able to decipher it. This particular effect has already been noted on a <a title="See the Noupe article" href="http://www.noupe.com/design/sliding-content.html" target="_blank">number</a> <a title="Read the jQuery Style article" href="http://jquerystyle.com/featured" target="_blank">of</a> <a title="Read the Smashing Magazine article" href="http://www.smashingmagazine.com/2010/04/27/usability-dos-and-donts-for-interactive-design/" target="_blank">sites</a>, so this feels like a natural extension.<span id="more-446"></span></p>
<p>I&#8217;ll cover everything pertinent but, HTML, CSS and some jQuery experience is assumed.  Where possible I&#8217;ll link to further information. If you find yourself having any major trouble please drop me a comment below.</p>
<p><a title="Download the Yaypaul.com Title Slide example" href="/downloads/yaypaul.com-titleslide-example.zip" target="_blank">Download a copy of the Sample Code</a> to work on as we go, it has everything you need to run the effect.</p>
<h2>Libraries</h2>
<p>I&#8217;ll be using a few code libraries to produce the sliding effect. Each is lightweight, the JavaScript library is required, but the CSS files are optional as their elements can be applied in other ways. However, for the purpose of this tutorial we&#8217;ll be using them.</p>
<p>I like to use <a title="View the Meyerweb Blog" href="http://meyerweb.com/eric/tools/css/reset/" target="_blank">Reset CSS by Eric Meyer</a> because it sets up all your elements with neutral values, this way you know what to expect when you start building your pages.</p>
<p>The second Core CSS file is of my own creation and is covered in a <a title="View Core CSS posts" href="http://designergamergeek.com/core-css/" target="_self">number of places</a>. For the purpose of this tutorial I&#8217;ve included only called elements.<br />
<a title="View jQuery project and documentation" href="http://jquery.com/" target="_blank"></a></p>
<p><a title="View jQuery project and documentation" href="http://jquery.com/" target="_blank">jQuery</a> is my JavaScript library of choice, <a title="View your JavaScript options" href="http://javascriptlibraries.com/" target="_blank">not your only option though</a>. I also chose to include a cached version of the library from <a title="View the Google Code project" href="http://code.google.com/apis/ajaxlibs/documentation/#jquery" target="_blank">Google Code</a>.</p>
<h2>HTML</h2>
<p>The most important elements in this HTML block are the IDs. Both <em>yourid1</em> and <em>yourid</em><em>1-title</em> are used by the JavaScript component to control the actual scroll effect.<br />
It&#8217;s also important to note the Absolute positioning and zero top margin of the Title item. Together these attributes ensure your title animates from the edge of it&#8217;s parent and over the top of it&#8217;s siblings. Relative positioning will also perform the effect, but you&#8217;ll notice the animation pushes down it&#8217;s siblings content, rather than slide over it.</p>
<pre class="brush: xml;">
&lt;div class=&quot;box block float relative&quot; id=&quot;yourid&lt;em&gt;&lt;/em&gt;1&quot;&gt;
	&lt;h1 class=&quot;float absolute hidden&quot; id=&quot;yourid1-title&quot;&gt;&lt;a href=&quot;&quot; class=&quot;block&quot;&gt;Box title here&lt;/a&gt;&lt;/h1&gt;
	&lt;p class=&quot;entry closed&quot;&gt;Box content here&lt;/p&gt;
&lt;/div&gt;
</pre>
<h2>CSS</h2>
<p>With the CSS on Yaypaul.com I chose to style the <em>a</em> tag inside of the title element. You could also  style the h1, div, p or span you&#8217;ve chosen to use for your actual title item.</p>
<p>As this CSS code only deals with formatting the HTML display and not with the effect I&#8217;ll leave comments to the code below &#8211; the JavaScript will still fire with no CSS at all.</p>
<pre class="brush: css;">
/* Define item box */
.box{width:300px; height:300px; overflow:hidden;}

/* Set title (H1) level &amp; position */
.box h1{margin:0; z-index:3;}

/* Define link tag */
.box h1 a{width:180px; margin-left:10px; padding:20px; font-size:24px; line-height:30px; background:#f1f1f1; color:#000;}

/* Define intro text/img and level */
.box .entry{width:220px; height:220px; margin-top:0; padding:10px; color:#fff; background-color:#000; z-index:1;}
</pre>
<h2>JavaScript</h2>
<p>Now on to the engine that drives the sliding effect. In the speed test preview below you&#8217;ll notice each item box has it&#8217;s own JavaScript block, this is not efficient. That&#8217;s why our sliding code moves each item at the same speed, this allows us to look for <em>any</em> instance of the item that&#8217;s triggered.</p>
<p>1. First we register a <em>mouseenter</em> on any .box element.<br />
2. Then we perform a Slide Down action on the instance of .box with the corresponding ID.<br />
3. The code then watches for a <em>mouseleave</em> action on the same instance of .box to perform the Slide Up action.</p>
<p>Inclusion of the :hidden and :visible attributes ensures that the animations only fire on mouseenter if the title is Hidden and on mouseleave if the title is Visible.<br />
The jQuery function <a title="View the jQuery .stop() documentation" href="http://api.jquery.com/stop/" target="_blank">.stop()</a> is called to ensure any animation already running is completed before another can be fired, queuing of animations avoided.</p>
<p>Speed values can be changed to any number you prefer to use, lower numbers are faster. Please refer to the Speed test preview below for some options and configurations for slider speed.</p>
<pre class="brush: jscript;">
$(document).ready(function(){

 //Title Slide Effect
 $(&quot;.box&quot;).bind(&quot;mouseenter&quot;, function() {
  $(&quot;#&quot;+this.id+&quot;-title:hidden&quot;).stop(true, true).slideDown(200);
 }).bind(&quot;mouseleave&quot;, function(){
  $(&quot;#&quot;+this.id+&quot;-title:visible&quot;).stop(true, true).slideUp(400);
 });

});
</pre>
<h3>Previews</h3>
<p>I&#8217;ve included a number of links to different previews of the code below;<br />
<a title="Open the Single box preview" href="/downloads/yaypaul.com-titleslide-sample.html" target="_blank">Single box</a> &#8211; Standard preview<br />
<a title="Open the Multiple box preview" href="/downloads/yaypaul.com-multipletitleslide-sample.html" target="_blank">Multiple box</a> &#8211; List implementation<br />
<a title="Open Variable Speed test preview" href="/downloads/yaypaul.com-speedtitleslide-sample.html" target="_blank">Speed preview</a> &#8211; Multiple examples of different slide speeds</p>
<h3>Example code</h3>
<p>Below you&#8217;ll find the whole code example, complete with comments.<br />
This same code can be <a title="Download the Yaypaul.com title slide example" href="/downloads/yaypaul.com-titleslide-example.zip" target="_blank">downloaded in a file</a> if you prefer.</p>
<pre class="brush: xml;">
&lt;html&gt;
&lt;head&gt;

&lt;title&gt;Yaypaul Title Slide&lt;/title&gt;
&lt;style&gt;
&lt;!--http://meyerweb.com/eric/tools/css/reset/--&gt;
	&lt;!--v1.0 | 20080212--&gt;
	html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;margin:0;padding:0;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:none;}:focus{outline:0;}ins{text-decoration:none;}del{text-decoration:line-through;}table{border-collapse:collapse;border-spacing:0;}

&lt;!--Core CSS Part http://designergamergeek.com/core-css/--&gt;
	div{overflow:hidden;}
	p.closed{margin:0; font-size:18px;}
	.float{float:left !important;}
	.relative{position:relative !important;}
	.absolute{position:absolute !important;}
	.hidden{display:none}
	.block{display:block}
&lt;!--Content--&gt;
	&lt;!--Define item box--&gt;
	&lt;!--Set title (H1) level--&gt;
	&lt;!--Define link tag--&gt;
	&lt;!--Define intro text/img and level--&gt;
	.box{width:300px; height:300px; overflow:hidden;}
	.box h1{margin:0; z-index:3;}
	.box h1 a{width:180px; margin-left:10px; padding:20px; font-size:24px; line-height:30px; background:#f1f1f1; color:#000;}
	.box .entry{width:220px; height:220px; margin-top:0; padding:10px; color:#fff; background-color:#000; z-index:1;}
&lt;/style&gt;

&lt;/head&gt;
&lt;body&gt;

&lt;div class=&quot;box block float relative&quot; id=&quot;yourid1&quot;&gt; &lt;!--Item box--&gt;
	&lt;h1 class=&quot;float absolute hidden&quot; id=&quot;yourid1-title&quot;&gt;&lt;a href=&quot;&quot; class=&quot;block&quot;&gt;Box title here&lt;/a&gt;&lt;/h1&gt; &lt;!--Title[hidden]--&gt;
	&lt;p class=&quot;entry closed&quot;&gt;Box content here&lt;/p&gt; &lt;!--Intro text/img--&gt;
&lt;/div&gt;

&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.google.com/jsapi&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;google.load(&quot;jquery&quot;, &quot;1.3.2&quot;);&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function(){

	//Title Slide Effect
	$(&quot;.box&quot;).bind(&quot;mouseenter&quot;, function() { //Register mouseenter on any .box element
		$(&quot;#&quot;+this.id+&quot;-title:hidden&quot;).stop(true, true).slideDown(200); //Stop any current action on this box then Slide Down by N speed
	}).bind(&quot;mouseleave&quot;, function(){ //Register mouseleave on this .box element
		$(&quot;#&quot;+this.id+&quot;-title:visible&quot;).stop(true, true).slideUp(400); //Stop any current action on this box then Slide Up by N speed
	});
	// The :hidden and :visible attributes ensure that the animations only fire on mouseenter if the title is Hidden and on mouseleave if the title is Visible

});
&lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><a title="Link to Syntax Highlighter WordPress plugin" href="http://alexgorbatchev.com/SyntaxHighlighter/">Syntax Highlighter</a> &#8211; by Alex Gorbatchev</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/yaypaul-com-title-slider-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free The Garden poster</title>
		<link>http://www.designergamergeek.com/projects/free-the-garden-poster/</link>
		<comments>http://www.designergamergeek.com/projects/free-the-garden-poster/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 02:29:27 +0000</pubDate>
		<dc:creator>yaypaul</dc:creator>
				<category><![CDATA[Posters]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[a3]]></category>
		<category><![CDATA[aaryn nutter]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[garden]]></category>
		<category><![CDATA[poster]]></category>
		<category><![CDATA[rerelease]]></category>
		<category><![CDATA[self-promotion]]></category>

		<guid isPermaLink="false">http://www.designergamergeek.com/?p=404</guid>
		<description><![CDATA[A few years ago I had an A2 Giclee print for sale on my portfolio titled &#8220;The Garden&#8221;. Recently I&#8217;ve had some enquiries about the print, read on for my response. Back when I originally released this poster the print run was very sort, the cost to print at A2 was rather high and sales [...]]]></description>
			<content:encoded><![CDATA[<p>A few years ago I had an A2 Giclee print for sale on my portfolio titled &#8220;The Garden&#8221;. Recently I&#8217;ve had some enquiries about the print, read on for my response.<span id="more-404"></span></p>
<p>Back when I originally released this poster the print run was very sort, the cost to print at A2 was rather high and sales low. Back then I decided to discontinue the print and move on to other things, not really giving it a second thought. Recently someone asked me about the print and if it was available for download, today it is.</p>
<h3>Origins</h3>
<p>Circa 2007, originally this poster was designed for personal marketing, later turned into a Giclee print for sale. The poster makes use of vector as well as photographic elements and takes some of it&#8217;s inspiration from <a title="Visit the Wiki entry" href="http://en.wikipedia.org/wiki/Monty_Python" target="_blank">Monty Python artwork</a>.  The model is my then friend, now wife, <a title="Visit Aaryn's site now" href="http://www.heyaaryn.com" target="_blank">Aaryn Nutter</a>.</p>
<h3>Format</h3>
<p>The reformatted poster is available at A3 size (that&#8217;s 297x420mm), 150dpi in CMYK color. While it&#8217;s recommended that you print the poster at A3 size, scaling larger or smaller should work fine.</p>
<p><a title="Download The Garden poster now" href="/downloads/thegarden-a3poster-designergamergeek.com.pdf" target="_blank">Download The Garden poster free now</a> (3.9MB)</p>
<p><img class="alignnone" title="The Garden Preview" src="/downloads/posters/thegarden-poster-thumb.jpg" alt="" width="475" height="672" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/free-the-garden-poster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Core CSS 1.2.1 update</title>
		<link>http://www.designergamergeek.com/projects/core-css-1-2-1-update/</link>
		<comments>http://www.designergamergeek.com/projects/core-css-1-2-1-update/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 21:42:28 +0000</pubDate>
		<dc:creator>yaypaul</dc:creator>
				<category><![CDATA[Core CSS]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[1.2.1]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[minified]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[standardized]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.designergamergeek.com/?p=399</guid>
		<description><![CDATA[This is a small update to Core CSS 1.2 which includes bug fixes and additions. For more information see the full page details. There are two new additions with this update. The first is a class to handle negative text indentation for image replacement items, attach this class to any item you want to hide [...]]]></description>
			<content:encoded><![CDATA[<p>This is a small update to <a title="See Core CSS 1.2" href="/projects/core-css-1-2-update/" target="_blank">Core CSS 1.2</a> which includes bug fixes and additions. For more information see the full page details.<span id="more-399"></span></p>
<p>There are two new additions with this update. The first is a class to handle negative text indentation for image replacement items, attach this class to any item you want to hide from user view but still have in the page for search engines to read. The second addition is three classes to help you control your text transformations, it&#8217;s now easy to handle text that comes in at the wrong case.</p>
<p>I fixed a minor spelling issue with all the charcoal named elements. I&#8217;ve left the old spelling in place, if you&#8217;ve used this style on other sites you can feel free to update your Core CSS without fear of those older classes breaking. I also adjusted the colors of the standard input elements slightly, they should now be more readable.</p>
<p>As always; using this code requires you include <a title="Download Reset CSS now" href="http://meyerweb.com/eric/css/" target="_blank">Eric Meyer&#8217;s Reset CSS</a> before Core CSS. This can be included either at the beginning of Core CSS or in a separate file which is called first.</p>
<p><strong>Change log</strong> 1.2 &gt; 1.2.1<br />
1. + Added new Class txtImg. Used on image replacement items to remove the text from user display.<br />
2. + Added three new Classes to handle Text Transforms: capitalize, uppercase, lowercase.<br />
3. -/+ Fixed a minor spelling error: charcol becomes charcoal. Old spelling left for backwards compatibility.<br />
4. -/+ Amended colors on standard input items to be more user friendly.</p>
<p><strong>There are three ways for you to download the code.</strong><br />
1. Copy and paste the code listed below.</p>
<p>2. <a title="Download the incompressed version of Core CSS 1.2.1" href="/downloads/core.1.2.1.css" target="_blank">Download a file containing the full Core CSS</a>.</p>
<p>3. <a title="Download the minified version of Core CSS 1.2.1" href="/downloads/core.1.2.1.min.css" target="_blank">Download a file containing a minified version of Core CSS</a>.</p>
<pre class="brush: css;">
/* core.css Paul West [http://www.yaypaul.com] */
/* Version: 1.2.1 - 2010-01-18 */

body{background:#fff;}

/* Block level */
div{overflow:hidden;}
.visible{overflow:visible;}
p.closed{margin:0;}
p.open{margin:35px 0 0 0;}
p.mini{margin:10px 0 0 0;}
.float{float:left !important;}
.floatRight{float:right !important;}
.relative{position:relative !important;}
.absolute{position:absolute !important;}
.fixed{position:fixed !important;}
.hidden{display:none}
.block{display:block}
.top{position:fixed; top:0; z-index:10;}
.txtImg{text-indent:-2000px;}

/* Page frameworks */
.frameworkCenter{margin:0 auto;}
.frameworkLeft{left:0; top:0; position:absolute;}
.frameworkRight{right:0; top:0; position:absolute;}

/* Page layout */
.width100{width:100% !important;}
.width75{width:75% !important;}
.width66{width:66% !important;}
.width50{width:50% !important;}
.width25{width:25% !important;}
.width33{width:33% !important;}
.width20{width:20% !important;}

/* Clearing */
.clear{clear:both;}
.clearLeft{clear:left;}
.clearRight{clear:right;}

/* Content control */
.left{text-align:left !important;}
.right{text-align:right !important;}
.center{text-align:center !important;}
.justify{text-align:justify !important;}
.capitalize{text-transform:capitalize;}
.uppercase{text-transform:uppercase;}
.lowercase{text-transform:lowercase;}
.small{font-size:smaller;}
pre{background-color:#fff; border:#333 dashed 1px; padding:10px;}
blockquote{padding:20px; font-style:italic;}

/* Links */
a{text-decoration:underline;}
a:hover{text-decoration:none;}
a:visited{text-decoration:underline;}

/* Colours */
.white{color:#fff !important;}
.black{color:#000 !important;}
.chalk{color:#eee;}
.charcol, .charcoal{color:#333;}
.darkestGrey{color:#484848;}
.darkGrey{color:#666;}
.midGrey{color:#888;}
.lightGrey{color:#ccc;}
.lightestGrey{color:#e5e5e5;}

/* Background colours */
.whiteBg{background-color:#fff !important;}
.blackBg{background-color:#000 !important;}
.chalkBg{background-color:#eee;}
.charcolBg, .charcoalBg{background-color:#333;}
.darkestGreyBg{background-color:#484848;}
.darkGreyBg{background-color:#666;}
.midGreyBg{background-color:#999;}
.lightGreyBg{background-color:#ccc;}
.lightestGreyBg{background-color:#e5e5e5;}
.superLightGreyBg{background-color:#f5f5f5;}

/* Normalise headings */
h1, h2, h3, h4, h5, h6{font-weight:normal;}

/* Table formating */
table td{padding:2px;}
td.first{padding:2px 2px 2px 4px;}

/* Input formating */
input, select, textarea{font-family:Arial, Helvetica, sans-serif; margin-right:10px; padding:4px; background-color:#e5e5e5; border:0;}
input:focus, select:focus, textarea:focus{background-color:#f5f5f5;}
input[type=&quot;radio&quot;]{border:0 solid !important;}
input[type=&quot;checkbox&quot;]{border:0 solid !important;}
input[type=&quot;submit&quot;]{background-color:#e5e5e5;}
input[type=&quot;submit&quot;]:hover{background-color:#75d0ff;}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/core-css-1-2-1-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deadly Furry Cute, new toys, downloads and site</title>
		<link>http://www.designergamergeek.com/projects/deadly-furry-cute-new-toys-downloads-and-site/</link>
		<comments>http://www.designergamergeek.com/projects/deadly-furry-cute-new-toys-downloads-and-site/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 07:04:48 +0000</pubDate>
		<dc:creator>yaypaul</dc:creator>
				<category><![CDATA[Deadly Furry Cute]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[paper]]></category>
		<category><![CDATA[toys]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.designergamergeek.com/?p=390</guid>
		<description><![CDATA[Well over a year in the making fitting the work in when I could, the Deadly Furry Cute relaunch is finally over. I&#8217;m going to run through some of the changes, additions and the overall direction of the project here in the projects section. Lets start with the obvious change first; New website The most [...]]]></description>
			<content:encoded><![CDATA[<p>Well over a year in the making fitting the work in when I could, the Deadly Furry Cute relaunch is finally over. I&#8217;m going to run through some of the changes, additions and the overall direction of the project here in the projects section.<span id="more-390"></span></p>
<p>Lets start with the obvious change first;</p>
<h2>New website</h2>
<p>The most notable change is to the website, it&#8217;s had the full make-over treatment. The old first iteration of the Deadly Furry Cute website was a simple one page site, great for testing the concept and getting something up, not so great for organizing content. So the first step was to get some content management in place. As usual WordPress was more than enough for the content task, even knowing I needed at least two different page formats -most of the details for the toys are simply saved in custom fields.</p>
<p>Download counting is also much more streamlined, now using a WordPress plugin rather than my own custom script. While the custom script worked fine, I&#8217;d never built a frontend to actually display the details -I was checking via myphpadmin.<br />
This change does mean the perma-links for the old toys no longer work, but that&#8217;s ok, Series 1 has changed to Series 1 Edition 2. Those first editions are no longer an offering.</p>
<h2>New toys</h2>
<p>The next most noticeable change is to the number of toys. <a title="Download Series 2 now!" href="http://www.deadlyfurrycute.com/toys/series-2-squirrels/" target="_blank">Series 2: Squirrels</a> and <a title="Download Series 3 now!" href="http://www.deadlyfurrycute.com/toys/series-3-apes/" target="_blank">Series 3: Apes</a> are now released taking the total number of downloadable animal individuals to nine.</p>
<p>I&#8217;ve talked before about <a title="Read the template article now" href="http://www.designergamergeek.com/projects/new-deadly-furry-cute-templates-complete/" target="_self">changing templates</a>, having multiple sizes, <a title="Read the illustration article" href="http://www.designergamergeek.com/projects/new-illustration-style-better-illustration-style/" target="_self">trying different styles</a>, and the <a title="Read the design article" href="http://www.designergamergeek.com/projects/deadly-furry-cute-v2-i%E2%80%99m-getting-there/" target="_self">design I went with</a> for the new series -I wont cover those again. One thing you might have missed is that the series to start it all, Series 1, also has a face lift. The changes to the first series are subtle, I didn&#8217;t want to mess with a good thing, but they&#8217;re enough to make the first edition obsolete.</p>
<h2>Even more new toys</h2>
<p>Inspired by a request from an American Educator, Deadly Furry Cute now comes complete with alternate &#8216;Color Your Own&#8217; versions. These versions are simply as they sound, toys which for the most part have all the features of the original -but none of the color, leaving you to color them as you see fit. You&#8217;re free to use any coloring medium, I dare say pencil, pen or paint would be easiest though.</p>
<h2>The Game</h2>
<p>The revamped Deadly Furry Cute toys all have six stats printed on their base (also available on the site), one stat lists the toys health, the others it&#8217;s attributes. Using these attributes in conjunction with the basic rules on the site -or any rules you decide to make up for that matter,  can make for a fun little game.<br />
I&#8217;m hoping the two rule sets I&#8217;ve devised will add some more depth to the toys outside building and displaying them.</p>
<h2>Extra free stuff</h2>
<p>OK so the toys are free yes, but you still need to build them, how about some swag which doesn&#8217;t require assembly?<br />
On the site you&#8217;ll now find a number of extras for your Mac/PC, iPhone, Droid or online applications. At the moment that means you&#8217;ve got access to some Deadly Furry Cute desktops, device wallpaper and avatar icons, more to follow.</p>
<h2>Moving forward</h2>
<p>I do have a hard written plan for Deadly Furry Cute, time-line is a little <a title="Whibley-wobbly timey whimey" href="http://www.youtube.com/watch?v=vY_Ry8J_jdw&amp;feature=related" target="_blank">whibley-wobbly</a> but the plan is there. I&#8217;m not going to go over it here -where would the surprises be! I will say: many more series are in the works and each one will eventually have a Color Your Own version.</p>
<p><strong>Head over to <a title="Download some paper toys!" href="http://www.deadlyfurrycute.com" target="_blank">deadlyfurrycute.com</a> now to download the toys, goodies or leave some feedback.</strong></p>
<h3></h3>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/deadly-furry-cute-new-toys-downloads-and-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Core CSS 1.2 update</title>
		<link>http://www.designergamergeek.com/projects/core-css-1-2-update/</link>
		<comments>http://www.designergamergeek.com/projects/core-css-1-2-update/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 02:15:39 +0000</pubDate>
		<dc:creator>yaypaul</dc:creator>
				<category><![CDATA[Core CSS]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[1.2]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[minified]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[standardized]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.designergamergeek.com/?p=348</guid>
		<description><![CDATA[I&#8217;ve being using Core CSS at every opportunity, for both personal and production sites. Using the code so frequently has helped me find some flaws and add a few classes that we&#8217;re sorely missing. Core CSS gets an update to 1.2. The first thing I noticed that needed changing was the way the standard width [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve being using <a title="See the original Core CSS" href="/projects/core-css/">Core CSS</a> at every opportunity, for both personal and production sites. Using the code so frequently has helped me find some flaws and add a few classes that we&#8217;re sorely missing. Core CSS gets an update to 1.2.<span id="more-348"></span></p>
<p>The first thing I noticed that needed changing was the way the standard width classes were named; fullWidth and quarterWidth while intuitive just aren&#8217;t as intuitive as width100 and width25. Switching to percentages made way more sense.  I&#8217;ve listed a full change log below, but I think you&#8217;ll agree Core CSS has become that little bit easier to use.</p>
<p>As always; using this code requires you include <a title="Download Reset CSS now" href="http://meyerweb.com/eric/css/" target="_blank">Eric Meyer&#8217;s Reset CSS</a> before Core CSS. This can be included either at the beginning of Core CSS or in a separate file which is called first &#8211; I prefer the first method.</p>
<p><strong>Change log</strong> 1.0 &gt; 1.2<br />
1. &#8211; Removed standardized &#8216;P&#8217; style (I found there were far less bugs if this was set per project).<br />
2. + Added &#8216;P.mini&#8217; class (complements P.open nicely).<br />
3. + Added &#8216;fixed&#8217; class (useful for quick positioning).<br />
4. -/+ Revamped all width definitions to exactly match widths required (fullWidth becomes width100 etc).<br />
5. + Added &#8216;lightestGrey&#8217; class (useful for dark background small-print).<br />
6. + Added &#8216;lightestGreyBg&#8217; class (helpful for footer backgrounds etc).<br />
7. + Added &#8216;superLightGreyBg&#8217; class (extension of lightestGreyBg, again for footers, box backgrounds etc).<br />
8. -/+ Revamped &#8216;input&#8217; styles to be more neutral (should now be a proper option, rather than just a reminder to change the styles).</p>
<p><strong>There are three ways for you to download the code.</strong><br />
1. Copy and paste the code listed below.</p>
<p>2. <a title="Download Core CSS now" href="/downloads/core.1.2.css" target="_blank">Download a file containing the full Core CSS</a>.</p>
<p>3. <a title="Download the Minified Core CSS now" href="/downloads/core.1.2.min.css" target="_blank">Download a file containing a minified version of Core CSS</a>.</p>
<pre class="brush: css;">
/* core.css Paul West [http://www.yaypaul.com] */
/* Version: 1.2 - 2009-08-22 */

body{background: #fff;}

/* Block level */
div{overflow:hidden;}
.visible{overflow:visible;}
p.closed{margin:0;}
p.open{margin:35px 0 0 0;}
p.mini{margin:10px 0 0 0;}
.float{float:left !important;}
.floatRight{float:right !important;}
.relative{position:relative !important;}
.absolute{position:absolute !important;}
.fixed{position:fixed !important;}
.hidden{display:none}
.block{display:block}
.top{position:fixed; top:0; z-index:10;}

/* Page frameworks */
.frameworkCenter{margin:0 auto;}
.frameworkLeft{left:0; top:0; position:absolute;}
.frameworkRight{right:0; top:0; position:absolute;}

/* Page layout */
.width100{width:100% !important;}
.width75{width:75% !important;}
.width66{width:66% !important;}
.width50{width:50% !important;}
.width25{width:25% !important;}
.width33{width:33% !important;}
.width20{width:20% !important;}

/* Clearing */
.clear{clear:both;}
.clearLeft{clear:left;}
.clearRight{clear:right;}

/* Content control */
.left{text-align:left !important;}
.right{text-align:right !important;}
.center{text-align:center !important;}
.justify{text-align:justify !important;}
.small{font-size:smaller;}
pre{background-color:#fff; border:#333 dashed 1px; padding:10px;}
blockquote{padding:20px; font-style:italic;}

/* Links */
a{text-decoration:underline;}
a:hover{text-decoration:none;}
a:visited{text-decoration:underline;}

/* Colours */
.white{color:#fff !important;}
.black{color:#000 !important;}
.chalk{color:#eee;}
.charcol{color:#333;}
.darkestGrey{color:#484848;}
.darkGrey{color:#666;}
.midGrey{color:#888;}
.lightGrey{color:#ccc;}
.lightestGrey{color:#e5e5e5;}

/* Background colours */
.whiteBg{background-color:#fff !important;}
.blackBg{background-color:#000 !important;}
.chalkBg{background-color:#eee;}
.charcolBg{background-color:#333;}
.darkestGreyBg{background-color:#484848;}
.darkGreyBg{background-color:#666;}
.midGreyBg{background-color:#999;}
.lightGreyBg{background-color:#ccc;}
.lightestGreyBg{background-color:#e5e5e5;}
.superLightGreyBg{background-color:#f5f5f5;}

/* Normalise headings */
h1, h2, h3, h4, h5, h6{font-weight:normal;}

/* Table formating */
table td{padding:2px;}
td.first{padding:2px 2px 2px 4px;}

/* Input formating */
input, select, textarea{font-family:Arial, Helvetica, sans-serif; margin-right:10px; padding:4px; background-color:#dbdbdb; border:0;}
input:focus, select:focus, textarea:focus{background-color:#f5f5f5;}
input[type=&quot;radio&quot;]{border:0 solid !important;}
input[type=&quot;checkbox&quot;]{border:0 solid !important;}
input[type=&quot;submit&quot;]{background-color:#888;}
input[type=&quot;submit&quot;]:hover{background-color:#4aa056;}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/core-css-1-2-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deadly Furry Cute v2, I’m getting there!</title>
		<link>http://www.designergamergeek.com/projects/deadly-furry-cute-v2-i%e2%80%99m-getting-there/</link>
		<comments>http://www.designergamergeek.com/projects/deadly-furry-cute-v2-i%e2%80%99m-getting-there/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 13:20:54 +0000</pubDate>
		<dc:creator>yaypaul</dc:creator>
				<category><![CDATA[Deadly Furry Cute]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[paper]]></category>
		<category><![CDATA[screenshots]]></category>
		<category><![CDATA[series]]></category>
		<category><![CDATA[toys]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.designergamergeek.com/?p=235</guid>
		<description><![CDATA[While I’ve been super busy with life, work and getting sunburnt of late, I have been steadily working on version 2 of the Deadly Furry Cute website and toys.  Coming with the new version are a number of new developments. A few of these new developments I’m going to keep secret until the site goes [...]]]></description>
			<content:encoded><![CDATA[<p>While I’ve been super busy with life, work and getting sunburnt of late, I have been steadily working on version 2 of the Deadly Furry Cute website and toys.  Coming with the new version are a number of new developments.<br />
<span id="more-235"></span></p>
<p>A few of these new developments I’m going to keep secret until the site goes live, huge anticlimax there I know.  What I can talk about is new toy designs and licensing.</p>
<p>Let me start by saying that over the last few months I’ve had some inquiries from school teachers, either asking if they can use the toys, or asking how much it would cost to use them.  Let me state, right now, the toys will always be free for schools to use in the class room. If a teacher can find a way to use the toys in class for fun or education, I’m all for it.  What I don’t want is individuals, companies or schools reselling or rebranding my work. To that end I’ll be creating a new ‘license’ page which outlines exactly what can and can not be done in detail, more for clarification than anything else.</p>
<p><strong>Now the fun bit</strong><br />
The new toy designs for Series 2 and 3, yep that’s two new series with the update, have been completed and are awaiting final testing. That testing procedure basically entails a final test run in both thin card and paper, with any updates from previous tests included. Over kill, maybe, but I like to get things right.<br />
I&#8217;ve come some way with the illustration style since Series 1 back in 2008, partly because I&#8217;ve been doing more illustration work and have getting the practice in, but also I’ve decided to make these toys a little harder to make.  Looking back at Series 1, I realized I was trying to make it too easy, all angular and easy to cut curves, you&#8217;ll not get the easy ride this time!  Having said that I’ve not gone overboard, this change is about getting things more life like. While the new Series are more challenging to make, I hope they’ll be just as fun!</p>
<p>Without further ado, here are some screen grabs to wet your appetites. Can you tell what they are? Shout in the comments if you think you can!</p>
<p><img class="size-full wp-image-236 alignnone" title="dfcupdate1" src="http://www.designergamergeek.com/_dggcodex_/wp-content/uploads/2009/06/dfcupdate1.jpg" alt="Deadly Furry Cute update teaser 1" /></p>
<p><img class="size-full wp-image-237 alignnone" title="dfcupdate2" src="http://www.designergamergeek.com/_dggcodex_/wp-content/uploads/2009/06/dfcupdate2.jpg" alt="Deadly Furry Cute update teaser 2" /></p>
<p><img class="size-full wp-image-238 alignnone" title="dfcupdate3" src="http://www.designergamergeek.com/_dggcodex_/wp-content/uploads/2009/06/dfcupdate3.jpg" alt="Deadly Furry Cute update teaser 3" /></p>
<p><img class="size-full wp-image-239 alignnone" title="dfcupdate4" src="http://www.designergamergeek.com/_dggcodex_/wp-content/uploads/2009/06/dfcupdate4.jpg" alt="Deadly Furry Cute update teaser 4" /></p>
<p><strong>Last chance</strong><br />
This might be your last chance to download Series 1 in their current size, <a title="Post about DFC template changes" href="http://www.designergamergeek.com/projects/new-deadly-furry-cute-templates-complete/">read about why it’s changing</a>, so head over to <a title="Get the original toys before they go!" href="http://www.deadlyfurrycute.com" target="_blank">Deadly Furry Cute</a> now and grab them before it&#8217;s too late!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/deadly-furry-cute-v2-i%e2%80%99m-getting-there/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Personal (website) network branding</title>
		<link>http://www.designergamergeek.com/projects/personal-website-network-branding/</link>
		<comments>http://www.designergamergeek.com/projects/personal-website-network-branding/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 02:02:08 +0000</pubDate>
		<dc:creator>yaypaul</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[linking]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[sites]]></category>

		<guid isPermaLink="false">http://www.designergamergeek.com/?p=224</guid>
		<description><![CDATA[I was going to title this post Personal Branding, but then I realized it&#8217;s not really about that at all.  What I want to talk about is branding my personal &#8216;network&#8217; of sites and how I&#8217;m going to move forward with linking them all together. Building the network The number of sites I have has [...]]]></description>
			<content:encoded><![CDATA[<p>I was going to title this post <a title="Great article by Snook on Personal Branding" href="http://snook.ca/archives/other/maintain_personal_brand/">Personal Branding</a>, but then I realized it&#8217;s not really about that at all.  What I want to talk about is branding my personal &#8216;network&#8217; of sites and how I&#8217;m going to move forward with linking them all together.<br />
<span id="more-224"></span></p>
<p><strong>Building the network</strong><br />
The number of sites I have has grown, shrunk, consolidated and grown again over the years. Many of those sites are now confined to the world of <a title="An old old site of mine" href="http://web.archive.org/web/*/http://www.the-click.net">web caches</a>. But one thing is clear: I always have more than one running concurrently and I do a very bad job of pushing &#8211; or enticing lets say &#8211; users from one to the other.<br />
Currently I have this <a title="Place for design, games and tech talk" href="http://www.designergamergeek.com">blog</a>, a dedicated <a title="Paul West portfolio" href="http://www.yaypaul.com">portfolio</a>, a <a title="Paper fun time!" href="http://www.deadlyfurrycute.com">paper toy</a> project and a number of different places to <a title="Buy tees by me!" href="http://www.jumperlumps.com/gamers">buy t-shirts</a> I&#8217;ve designed. All these entities get traffic &#8211; which is great &#8211; but almost no users that visit one site link over and visit another &#8211; not great.  So the task: come up with a way to link these sites together.</p>
<p><strong>What is acceptable</strong><br />
I started looking around the web to see ways in which companies and other designers did or didn&#8217;t do this.  My eyes extensively scanned the internet for possible solutions and the answer was as clear as coffee &#8211; not clear at all.  Some sites present you with a selection task &#8216;where are you&#8217; or &#8216;what do you want to do&#8217;, others are more explicit and say &#8216;hey check out our other site(s)&#8217; via nicely designed graphical pulls.  And others use navigation bars that are network centric. So the question remained: which way did *I* want to do this.</p>
<p><strong>Nonrelevant clutter</strong><br />
My main issue with most of the potential solutions is that they would interfere with the content and context of the site they would sit on.  My portfolio focuses on work for a reason, it doesn&#8217;t have links to <a title="Follow my Twitter madness!" href="http://www.twitter.com/yaypaul">my twitter</a>, news posts or blog content because I want people to be focused on the work, and in most cases only the work.  The blog doesn&#8217;t have that problem of course, I&#8217;m trying to push people all over the web. I do however want a coherent solution, one that works with all my sites. I&#8217;m not just being lazy with this idea either. A solution that works for all, also works for the users interacting with it: they only have to learn the tool once, sites by me become easily recognizable &#8211; for better or worse &#8211; and they have an easy way to jump between those sites.</p>
<p><strong>Designing the bar</strong><br />
There really was only one solution that would cover all my prerequisites: a network bar. Said solution needed to be unobtrusive, it also needed to be well designed, usable and work with any colour scheme I could throw at it.  The latter left only one real choice, black.  Not really an unobtrusive colour black, but could I make this work&#8230;<br />
Take a look at come clips on different colours:<br />
<img class="alignnone size-full wp-image-225" title="Paul West Network Bar Colour Samples" src="http://www.designergamergeek.com/wp-content/uploads/2009/04/colour-samples.png" alt="Paul West Network Bar Colour Samples" width="400" height="223" /></p>
<p>The bar needed a brand, one that is recognizable, not overly distracting, and if at all possible is relevant to me. I tried a number of things that didn&#8217;t work or just didn&#8217;t sit right with the rest of the page design &#8211; it was important not to design in isolation. I ended up going with a simple &#8216;W&#8217; design, referencing my last name, simple and stylized.<br />
The final result:<br />
<img class="alignnone size-full wp-image-226" title="Paul West Network Bar Branding" src="http://www.designergamergeek.com/wp-content/uploads/2009/04/bar-branding.png" alt="Paul West Network Bar Branding" width="400" height="223" /></p>
<p><strong>Technical implementation</strong><br />
Lets get down some specs here. At the very least the basic functions have to work without JavaScript enabled. Because the bar can&#8217;t be cross domain loaded &#8211; for security reasons &#8211; it&#8217;ll have to be small in file size. It should know which site you&#8217;re on and disable that link. It should not need to use any files my sites don&#8217;t already use. It should also &#8211; where possible &#8211; add value or services to the page you are one.<br />
Here&#8217;s an example of added features I&#8217;ve been testing out:<br />
<img class="alignnone size-full wp-image-227" title="Paul West Network Bar Tools Example" src="http://www.designergamergeek.com/wp-content/uploads/2009/04/tools-example.png" alt="Paul West Network Bar Tools Example" width="400" height="223" /></p>
<p><strong>The roll out </strong><br />
Due to the nature of the bar and the potential breakages that could occur to sites already live, I&#8217;ve decided to only implement the bar with new versions of the sites I run. Does that mean I&#8217;ll have to redesign or tweak my current sites, yes it does. Quite frankly though some of the sites were due a redesign or rework anyway, this site for instance doesn&#8217;t really work in many areas, that&#8217;s OK though, it&#8217;s an evolution.<br />
Expect to see the bar at a Paul West site near you soon!</p>
<p><strong>UPDATE!: </strong>You can see the new bar in action on my portfolio site <a title="See the bar in action now" href="http://www.yaypaul.com">yaypaul.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/personal-website-network-branding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free RPG Poster Set</title>
		<link>http://www.designergamergeek.com/projects/free-rpg-poster-set/</link>
		<comments>http://www.designergamergeek.com/projects/free-rpg-poster-set/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 21:24:40 +0000</pubDate>
		<dc:creator>yaypaul</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Posters]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[A2]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[magic]]></category>
		<category><![CDATA[melee]]></category>
		<category><![CDATA[ranged]]></category>
		<category><![CDATA[RPG]]></category>
		<category><![CDATA[set]]></category>
		<category><![CDATA[tank]]></category>

		<guid isPermaLink="false">http://www.paulanthonywest.com/?p=197</guid>
		<description><![CDATA[I woke up one day last week and thought &#8216;I want to create something quick that I can give away to my friends and that they&#8217;ll be able to relate to&#8217;.  That thinking of course lead me to games. The great connector! Everyone Loves Posters What&#8217;s a nice easy thing to make, print and give [...]]]></description>
			<content:encoded><![CDATA[<p>I woke up one day last week and thought &#8216;I want to create something quick that I can give away to my friends and that they&#8217;ll be able to relate to&#8217;.  That thinking of course lead me to games. The great connector!</p>
<p><span id="more-197"></span><strong>Everyone Loves Posters</strong><br />
What&#8217;s a nice easy thing to make, print and give away? Posters!  With that decided, all that was left to do was decided on a theme, a theme my friends and I could relate to.  Everyone I know, in one form or another, plays games. So it was an obvious choice really. Posters based on different games for different people was out of the question. After all one of my variables was that this project be &#8216;quick to create&#8217;. Something I could do in a few lunch times, rather than a full blown project.</p>
<p><strong>Along comes a theme</strong><br />
It hit me like a well landed swipe from a +10 to parry shield &#8211; sorry. RPGs. Now, while not everyone I knew had played an RPG, many had and those that hadn&#8217;t could be at least put into a core RPG bracket.  I&#8217;d decided four posters was a good number for a mini series, and that&#8217;s how I decided to split up the RPG genre. Lets face it there are really only four types of RPG player. The &#8216;run up and beat it to death&#8217; type. The &#8216;let it hit me until it dies of exhaustion&#8217; type. The &#8216;stand at the back and throw things at it&#8217; type. And those &#8216;wear robes, a pointy hat and kill it with lightning from my finger tips&#8217; types.</p>
<p><strong>The fellowship</strong><br />
So here they are. Four A2 posters, simply illustrated, RPG game themed. Designed for my friends, offered to you to brighten up your office, home, cave, bastion of doom&#8230;</p>
<p>They are saved in PDF format so you shouldn&#8217;t have trouble printing them on smaller paper if you need to. Free for Personal Use Only.</p>
<p><a title="Download Melee the free RPG poster" href="/downloads/melee-free-rpg-poster" target="_blank">Download the &#8216;Melee&#8217; Poster</a></p>
<p><a title="Download Ranged the free RPG poster" href="/downloads/ranged-free-rpg-poster" target="_blank">Download the &#8216;Ranged&#8217; Poster</a></p>
<p><a title="Download Tank the free RPG poster" href="/downloads/tank-free-rpg-poster" target="_blank">Download the &#8216;Tank&#8217; Poster</a></p>
<p><a title="Download Magic the free RPG poster" href="/downloads/magic-free-rpg-poster" target="_blank">Download the &#8216;Magic&#8217; Poster</a></p>
<p><strong>Preview<br />
<img class="alignnone" title="Melee, free RPG poster by Paul West - Thumbnail" src="/img/projects/rpgposter-melee-thumb.jpg" alt="" width="300" height="424" /> <img class="alignnone" title="Ranged, free RPG poster by Paul West - Thumbnail" src="/img/projects/rpgposter-ranged-thumb.jpg" alt="" width="300" height="424" /><img class="alignnone" title="Tank, free RPG poster by Paul West - Thumbnail" src="/img/projects/rpgposter-tank-thumb.jpg" alt="" width="300" height="424" /> <img class="alignnone" title="Magic, free RPG poster by Paul West - Thumbnail" src="/img/projects/rpgposter-magic-thumb.jpg" alt="" width="300" height="424" /><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/free-rpg-poster-set/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A world of change. And new websites!</title>
		<link>http://www.designergamergeek.com/projects/a-world-of-change-and-new-websites/</link>
		<comments>http://www.designergamergeek.com/projects/a-world-of-change-and-new-websites/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 19:29:00 +0000</pubDate>
		<dc:creator>yaypaul</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[aaryn nutter]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.paulanthonywest.com/?p=195</guid>
		<description><![CDATA[The world watched as President Obama is sworn in. And my wife launches her new portfolio site over at her funky new url heyaaryn.com. Go Internets! Early this morning, before the internet became lagtasic from all it&#8217;s presidential affars, I finished and uploaded Aaryns new portfolio site.  It&#8217;s a simple one page affair, with complex [...]]]></description>
			<content:encoded><![CDATA[<p>The world watched as President Obama is sworn in. And my wife launches her new portfolio site over at her funky new url <a title="View Aaryns new site!" href="http://www.heyaaryn.com" target="_blank">heyaaryn.com</a>.<span id="more-195"></span></p>
<p><strong>Go Internets!</strong><br />
Early this morning, before the internet became lagtasic from all it&#8217;s presidential affars, I finished and uploaded Aaryns new portfolio site.  It&#8217;s a simple one page affair, with complex insides and a nice outfit.<br />
The design itself was built by my lovely wife. I think it shows her personality and style very well. Her work will also give you a good idea of her mad skills in fashion graphics if you&#8217;d like to commission her.<br />
The core of the site is built around Ajax calls and funky <a title="JQuery is the shit!" href="http://www.jquery.com/" target="_blank">JQuery</a> bits and pieces. Not hugely search engine friendly I&#8217;ll admit, but it doesn&#8217;t half work nice. Check it out for yourselves at <a title="Go take a look at Aaryns new site" href="http://www.heyaaryn.com" target="_blank">heyaaryn.com</a>.</p>
<p>A new day dawns. Another project completes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/a-world-of-change-and-new-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Core CSS</title>
		<link>http://www.designergamergeek.com/projects/core-css/</link>
		<comments>http://www.designergamergeek.com/projects/core-css/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 16:17:51 +0000</pubDate>
		<dc:creator>yaypaul</dc:creator>
				<category><![CDATA[Core CSS]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[standardized]]></category>

		<guid isPermaLink="false">http://192.168.50.20:8888/?p=99</guid>
		<description><![CDATA[Core CSS started life as a series of standardized custom CSS tags which I used within the various websites I create. With the creation of Reset CSS by Eric Meyer many of these tags became obsolete. Which set me thinking about a standard set of CSS tags all sites could use in conjunction with Reset [...]]]></description>
			<content:encoded><![CDATA[<p>Core CSS started life as a series of standardized custom CSS tags which I used within the various websites I create. With the creation of <a title="Link to Reset CSS" href="http://meyerweb.com/eric/css/" target="_blank">Reset CSS by Eric Meyer</a> many of these tags became obsolete. Which set me thinking about a standard set of CSS tags all sites could use in conjunction with Reset CSS.</p>
<p><span id="more-99"></span></p>
<p>Core CSS is simply that: a set of tags which you use individually or together to define basic layout structures of web pages. Not to be confused with a framework or a &#8216;here I&#8217;ve done all the work&#8217; CSS file, that&#8217;s not what this is.  You&#8217;ll still need to create a custom CSS file for each different sites you create, but using Core CSS means you wont have to recreate many of the tags and settings you and I use every day.</p>
<p>There are two ways for you to download the code.</p>
<p>1. Copy and paste the code listed below.</p>
<p>2. OR <a title="Download Core CSS now!" href="/downloads/core-css" target="_blank">download a file</a> containing Core CSS.</p>
<p>As with every project I&#8217;m sure I&#8217;ll find new things to add to the CSS file. And as with any project supplied to the public I&#8217;m sure you will find things you use missing or extras you&#8217;d like to add.  While you can add extra or missing items to your own files I&#8217;d like to encourage you to come and post back in the comments with your ideas and additions.  While I can&#8217;t promise I&#8217;ll add everything in, I will promise to review their relevance and usefulness to the community.</p>
<pre class="brush: css;">/*
core.css [screen]
- - - - - - - - - - - - - - - - - - - -
Creator:    Paul West [paulanthonywest.com]
Version:    1.0
Date:        2008-08-29
*/
body{background: #fff;}

/* Block level */
div{overflow:hidden;}
.visible{overflow:visible;}
p{margin:0 0 25px 0;}
p.closed{margin:0;}
p.open{margin:0 0 35px 0;}
.float{float:left !important;}
.floatRight{float:right !important;}
.relative{position:relative !important;}
.absolute{position:absolute !important;}
.hidden{display:none}
.block{display:block}
.top{position:fixed; top:0;}

/* Page frameworks */
.frameworkCenter{margin:0 auto;}
.frameworkLeft{left:0; top:0; position:absolute;}
.frameworkRight{right:0; top:0; position:absolute;}

/* Page layout */
.fullWidth{width:100% !important;}
.halfWidth{width:50% !important;}
.quarterWidth{width:25% !important;}
.thirdWidth{width:33% !important;}
.fifthWidth{width:20% !important;}

/* Clearing */
.clear{clear:both;}
.clearLeft{clear:left;}
.clearRight{clear:right;}

/* Content control */
.left{text-align:left !important;}
.right{text-align:right !important;}
.center{text-align:center !important;}
.justify{text-align:justify !important;}
.small{font-size:smaller;}
pre{background-color:#fff; border:#333 dashed 1px; padding:10px;}
blockquote{padding:20px; font-style:italic;}

/* Links */
a{text-decoration:underline;}
a:hover{text-decoration:none;}
a:visited{text-decoration:underline;}

/* Colours */
.white{color:#fff !important;}
.black{color:#000 !important;}
.chalk{color:#eee;}
.charcol{color:#333;}
.darkestGrey{color:#484848;}
.darkGrey{color:#666;}
.midGrey{color:#999;}
.lightGrey{color:#ccc;}

/* Background colours */
.whiteBg{background-color:#fff !important;}
.blackBg{background-color:#000 !important;}
.chalkBg{background-color:#eee;}
.charcolBg{background-color:#333;}
.darkestGreyBg{background-color:#484848;}
.darkGreyBg{background-color:#666;}
.midGreyBg{background-color:#999;}
.lightGreyBg{background-color:#ccc;}

/* Normalise Headings */
h1, h2, h3, h4, h5, h6{font-weight:normal;}

/* Table formating */
table td{padding:2px;}
td.first{padding:2px 2px 2px 4px;}

/* Input formating */
input, select, textarea{margin-right:10px; padding:4px; background-color:#eee; border:0;}
input:focus, select:focus, textarea:focus{background-color:#fff;}
input[type=&quot;radio&quot;]{border:0 solid !important;}
input[type=&quot;checkbox&quot;]{border:0 solid !important;}
input[type=&quot;submit&quot;]:hover{background-color:#9cd7f1;}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/core-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
