<?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>Kalkran.COM &#187; Graphical</title>
	<atom:link href="http://kalkran.com/category/tutorials/gfx/feed/" rel="self" type="application/rss+xml" />
	<link>http://kalkran.com</link>
	<description>Design&#38;Coding</description>
	<lastBuildDate>Fri, 26 Feb 2010 15:48:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Change photoshop background colour</title>
		<link>http://kalkran.com/tutorials/gfx/change-ps-bg-colour/</link>
		<comments>http://kalkran.com/tutorials/gfx/change-ps-bg-colour/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 19:37:59 +0000</pubDate>
		<dc:creator>Kalkran</dc:creator>
				<category><![CDATA[Graphical]]></category>
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://kalkran.com/?p=85</guid>
		<description><![CDATA[Change the background colour Ever wondered if you could get rid of the boring gray colour behind your canvas in photoshop? Of course you can! Ever since PS 4 you're able to change the background-colour: Select your paint bucket tool Pick a nice foreground colour SHIFT+Click on the background to change it's colour. Oh, and [...]]]></description>
			<content:encoded><![CDATA[<h3>Change the background colour</h3>
<p><img class="alignright size-full wp-image-84" title="Photoshop Background" src="http://kalkran.com/wp-content/uploads/2008/04/ps-background.jpg" alt="" width="180" height="179" />Ever wondered if you could get rid of the boring gray colour behind your canvas in photoshop? Of course you can! Ever since PS 4 you're able to change the background-colour:</p>
<ol>
<li>Select your paint bucket tool <img class="alignnone size-full wp-image-86" title="paintbucket" src="http://kalkran.com/wp-content/uploads/2008/04/paintbucket.jpg" alt="" width="24" height="22" /></li>
<li>Pick a nice foreground colour <img class="alignnone size-full wp-image-87" title="colour-select" src="http://kalkran.com/wp-content/uploads/2008/04/colour-select.jpg" alt="" width="49" height="47" /></li>
<li>SHIFT+Click on the background to change it's colour.</li>
</ol>
<p>Oh, and this might be useful.. At least it is to me!</p>
<h3>Hide the toolbar, layer palette and all other windows</h3>
<p>Ever tried pressing TAB? It hides all the windows.. They always get in my way when I'm messing around in photoshop.</p>
<img src="http://kalkran.com/?ak_action=api_record_view&id=85&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://kalkran.com/tutorials/gfx/change-ps-bg-colour/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS Sprites</title>
		<link>http://kalkran.com/tutorials/css-sprites/</link>
		<comments>http://kalkran.com/tutorials/css-sprites/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 16:07:19 +0000</pubDate>
		<dc:creator>Kalkran</dc:creator>
				<category><![CDATA[Graphical]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[sprite]]></category>

		<guid isPermaLink="false">http://www.kalkran.com/?p=38</guid>
		<description><![CDATA[Since this seems such a "hot" topic these days, I figured I might as well spend a couple of minutes and write a quick tutorial on what they are and how to make them work. The finished result will look like this Arrow For this mini-tutorial I'll be using an image that looks like this: [...]]]></description>
			<content:encoded><![CDATA[<p>Since this seems such a "hot" topic these days, I figured I might as well spend a couple of minutes and write a quick tutorial on what they are and how to make them work.</p>
<p>The finished result will look like this <a class="tutorial-sprite" href="#">Arrow</a><br />
<span id="more-38"></span><br />
For this mini-tutorial I'll be using an image that looks like this:<br />
<img style="padding: 1px; border: 1px solid black;" src="http://www.kalkran.com/wp-content/uploads/2008/03/arrow-tut.gif" alt="CSS Sprites" /></p>
<p>When we're not hovering over the link, we want the top image to be displayed. And if we are hovering, show the bottom image. They are both 16px high. Together forming an image of 32 pixels high and 16 pixels wide.</p>
<pre class="css">&nbsp;
a<span style="color: #6666ff;">.sprite</span> <span style="color: #66cc66;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background-image</span>: <span style="color: #993333;">url</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'arrow-tut.gif'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">background-repeat</span>: <span style="color: #993333;">no-repeat</span>;
<span style="color: #000000; font-weight: bold;">background-position</span>: <span style="color: #933;">0</span> -<span style="color: #933;">1px</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">display</span>: <span style="color: #993333;">block</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">width</span>: <span style="color: #933;">16px</span>;
<span style="color: #000000; font-weight: bold;">height</span>: <span style="color: #933;">16px</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">padding-left</span>: <span style="color: #933;">16px</span>;
<span style="color: #000000; font-weight: bold;">margin</span>: <span style="color: #933;">0px</span>;
<span style="color: #66cc66;">&#125;</span>
a<span style="color: #6666ff;">.sprite</span><span style="color: #3333ff;">:hover</span> <span style="color: #66cc66;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background-position</span>: <span style="color: #933;">0px</span> -<span style="color: #933;">17px</span>;
<span style="color: #66cc66;">&#125;</span></pre>
<p>That's the actual CSS code I'm using. Display:Block so I can set a defined height (alternatively, use line-height: 16px;)</p>
<p>What the :hover tag does, is shift the background out of position, so the lower 16 pixels of the image are shown, rather than the top 16 pixels.</p>
<p>You can actually integrate the .sprite class to be more general, allowing you to use different kinds of pictures.</p>
<p>All you have to do is leave the background-image: url(); out of the stylesheet and define it inline:</p>
<pre>&nbsp;
&lt;a class=&quot;sprite&quot; style=&quot;background-image:url('arrow-tut.gif');&quot; href=&quot;http://kalkran.com/&quot;&gt;Arrow&lt;/a&gt;</pre>
<p>You could also use bigger images, with more little pictures on it, and shift it to the correct image for each different state.</p>
<img src="http://kalkran.com/?ak_action=api_record_view&id=38&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://kalkran.com/tutorials/css-sprites/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Link presentation and Fitts&#8217; Law</title>
		<link>http://kalkran.com/tutorials/link-presentation-and-fitts-law/</link>
		<comments>http://kalkran.com/tutorials/link-presentation-and-fitts-law/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 11:33:06 +0000</pubDate>
		<dc:creator>Kalkran</dc:creator>
				<category><![CDATA[Graphical]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://kalkran.com/?p=62</guid>
		<description><![CDATA[When I was stumbling around this morning, I came across a site which mentioned Fitt's Law: "The time to acquire a target is a function of the distance to and size of the target." This means that, when the distance becomes smaller and size becomes larger, then the time taken to acquire a target(link) will [...]]]></description>
			<content:encoded><![CDATA[<p>When I was <a title="StumbleUpon" href="http://www.stumbleupon.com/">stumbling</a> around this morning, I came across a site which mentioned Fitt's Law:</p>
<blockquote><p>"The time to acquire a target is a function of the distance to and size of the target."</p></blockquote>
<p>This means that, when the distance becomes smaller and size becomes larger, then the time taken to acquire a target(link) will decrease. You can apply this to links really neatly. Let's see what I'm talking about:</p>
<p><a href="http://kalkran.com/wp-content/uploads/2008/03/fittslaw.jpg"><img class="alignnone size-full wp-image-63" title="Fitts\' Law" src="http://kalkran.com/wp-content/uploads/2008/03/fittslaw.jpg" alt="Good vs Bad Navigation" width="397" height="243" /></a></p>
<p>In which the right navigation is, of course, far easier to navigate. The links you can click on are bigger (and that is obvious thanks to the "underline"), when you hover over a link, you are not obscuring the link text you might want to click and you're also bringing some structure into your webpage.</p>
<p><span id="more-62"></span></p>
<h3>The CSS</h3>
<pre class="css">&nbsp;
<span style="color: #cc00cc;">#sidebar</span> li a <span style="color: #66cc66;">&#123;</span>
<span style="color: #000000; font-weight: bold;">display</span>: <span style="color: #993333;">block</span>;
<span style="color: #000000; font-weight: bold;">border-bottom</span>: <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#CCCCCC</span>;
<span style="color: #000000; font-weight: bold;">text-decoration</span>: <span style="color: #993333;">none</span>;
<span style="color: #000000; font-weight: bold;">width</span>: <span style="color: #933;">190px</span>;
<span style="color: #66cc66;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#sidebar</span> li a<span style="color: #3333ff;">:hover</span> <span style="color: #66cc66;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background-color</span>: <span style="color: #cc00cc;">#CCCCCC</span>;
<span style="color: #000000; font-weight: bold;">color</span>: <span style="color: #cc00cc;">#<span style="color: #933;">555555</span></span>;
<span style="color: #66cc66;">&#125;</span></pre>
<p>These lines make the links display in a <em>block</em> fashion: You can make them any size you wish, and they'll have a line-break before and after them. They also add a nice border below your links, and make the background darker when you're hovering over them. And lastly, it sets a <em>width</em>, so they'll have a fixed width, acting as the block you can click on.</p>
<h3>Let's look at a real-world example</h3>
<p><a href="http://kalkran.com/wp-content/uploads/2008/03/485b1.gif"><img class="alignnone size-full wp-image-64" title="Bad navigation" src="http://kalkran.com/wp-content/uploads/2008/03/485b1.gif" alt="Bad navigation animation" width="202" height="300" /></a></p>
<p>The image shows a 'bad' navigation, the links are really just as big as the text that's enclosed in them. For an example of 'good' (easy) navigation, just look on the right side, that's much easier to navigate. Or look below:</p>
<p><a href="http://kalkran.com/wp-content/uploads/2008/03/485c1.gif"><img class="alignnone size-full wp-image-65" title="Good Navigation" src="http://kalkran.com/wp-content/uploads/2008/03/485c1.gif" alt="Using Fitts\' Law" width="202" height="300" /></a></p>
<p>That looks much easier!</p>
<h3>The Caveat</h3>
<p>If you decide to use this method, make it clear to the user you ARE using bigger links, nothing is more surprising then mousing over, what seems to be, white-space and suddenly hovering over a link! That's why I added the border-bottom, making it easy to spot where the link ends.</p>
<img src="http://kalkran.com/?ak_action=api_record_view&id=62&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://kalkran.com/tutorials/link-presentation-and-fitts-law/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Box Model</title>
		<link>http://kalkran.com/tutorials/css-box-model/</link>
		<comments>http://kalkran.com/tutorials/css-box-model/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 23:30:26 +0000</pubDate>
		<dc:creator>Kalkran</dc:creator>
				<category><![CDATA[Graphical]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[box model]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.kalkran.com/uncategorized/kalkran/css-box-model/</guid>
		<description><![CDATA[I was drawing up a box model in paint, when I realized I should be able to make a perfectly fitting box model in CSS itself! Legend: Purple = Margin Red = Border Orange = Padding White = Actual content Source (original file): CSS Box Model]]></description>
			<content:encoded><![CDATA[<p>I was drawing up a box model in paint, when I realized I should be able to make a perfectly fitting box model in CSS itself!</p>
<div style="margin: 0px; padding: 0px; width: 400px; height: 300px; background-color: purple">
<div style="border: 5px solid red; margin: 0px auto; height: 250px; width: 300px; position: relative; top: 20px; background-color: orange"> 		<span style="margin: 50px; width: 200px; background-color: white; display: block; height: 150px; text-align: center; line-height: 150px"></span></div>
</div>
<p>Legend:<br />
Purple = Margin<br />
Red = Border<br />
Orange = Padding<br />
White = Actual content</p>
<p>Source (original file): <a href="http://www.kalkran.com/wp-content/uploads/2008/03/cssboxmodel.html" title="CSS Box Model">CSS Box Model</a></p>
<img src="http://kalkran.com/?ak_action=api_record_view&id=35&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://kalkran.com/tutorials/css-box-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Borders</title>
		<link>http://kalkran.com/tutorials/css-borders/</link>
		<comments>http://kalkran.com/tutorials/css-borders/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 22:55:13 +0000</pubDate>
		<dc:creator>Kalkran</dc:creator>
				<category><![CDATA[Graphical]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.kalkran.com/tutorials/kalkran/css-borders/</guid>
		<description><![CDATA[Just a quick tutorial to inform you about the border property! Everyone knows you can do &#160; border: 1px solid black; Yeah? Okay. That's all nice, but what if you want a little white border between your actual border and the image to make it stand out even more?! It's all possible with the power [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick tutorial to inform you about the border property!</p>
<p>Everyone knows you can do</p>
<pre class="css">&nbsp;
<span style="color: #000000; font-weight: bold;">border</span>: <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #000000; font-weight: bold;">black</span>;</pre>
<p>Yeah?<br />
Okay. That's all nice, but what if you want a little white border <strong>between</strong> your actual border and the image to make it stand out even more?!<br />
It's all possible with the power of CSS! Just be creative!</p>
<pre class="css">&nbsp;
img <span style="color: #66cc66;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding</span>: <span style="color: #933;">1px</span>;
<span style="color: #000000; font-weight: bold;">border</span>: <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #000000; font-weight: bold;">black</span>;
<span style="color: #000000; font-weight: bold;">background-color</span>: <span style="color: #993333;">white</span>;
<span style="color: #66cc66;">&#125;</span></pre>
<p>That would make all your images one pixel larger, add a black border, then a white border, and finally the image itself. For example:<br />
<img src="http://www.kalkran.com/wp-content/uploads/2008/03/pavatar.jpg" style="border: 1px dashed #ff7800; padding: 0pt" alt="Border showoff" />  <img src="http://www.kalkran.com/wp-content/uploads/2008/03/pavatar.jpg" style="border: 1px solid black; padding: 1px; background-color: white" alt="Border showoff" /></p>
<p>First one being a dashed orange border and second one with a 1px white border between the actual border.</p>
<p>This made me think of a post to explaining the CSS Box Model. Coming up next...!</p>
<img src="http://kalkran.com/?ak_action=api_record_view&id=33&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://kalkran.com/tutorials/css-borders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your own website bug!</title>
		<link>http://kalkran.com/tutorials/website-bug/</link>
		<comments>http://kalkran.com/tutorials/website-bug/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 22:39:55 +0000</pubDate>
		<dc:creator>Kalkran</dc:creator>
				<category><![CDATA[Graphical]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.kalkran.com/tutorials/kalkran/website-bug/</guid>
		<description><![CDATA[You too can have your own website "bug" or ribbon, if you like. A good example of this would be biotech's blog. He has a bug. Now scroollll the page.. Oh my god, it's stuck to your screen! ;-). Doing this is fairly easy with the help of CSS. (Click!) Bug ExampleWow! Guess what?! :-) [...]]]></description>
			<content:encoded><![CDATA[<p>You too can have your own website "bug" or ribbon, if you like. A good example of this would be biotech's blog. He has a bug. Now scroollll the page.. Oh my god, it's stuck to your screen! ;-).</p>
<p>Doing this is fairly easy with the help of CSS.</p>
<p>(Click!)</p>
<p><span id="more-32"></span><br />
<a style="position: fixed; bottom: 0pt; left: 0pt"><big><big><strong>Bug Example</strong></big></big></a>Wow! Guess what?! :-)<br />
Okay! So, think of something you want to show off on your site, maybe a ribbon to show you're against the war in Iraq, maybe a bug with a link to a w3c validator to show your site is valid (X)HTML and CSS. Or maybe just show off your tagline.<br />
<strong>There's a little bug in the bottom left right now! :o</strong></p>
<p>Okay. Now, where would you like it to be? top left? top right? bottom left? bottom right? Just apply the appropriate tags.</p>
<p>We want the image to be fixed in place. So we'll add</p>
<pre class="css">&nbsp;
<span style="color: #000000; font-weight: bold;">position</span>: <span style="color: #993333;">fixed</span>;</pre>
<p>Other arguments for position could be</p>
<ul>
<li>absolute (relative to the page)</li>
<li>relative (relative to it's original position)</li>
<li>static (the default. Element will just be wherever it would occur normally)</li>
</ul>
<p>Having set the positioning type, we can now proceed to tell it where we want the bug to be. For this tutorial we'll put it on the bottom left of the screen.</p>
<pre class="css">&nbsp;
<span style="color: #000000; font-weight: bold;">bottom</span>: <span style="color: #933;">0</span>;left: <span style="color: #933;">0</span>;</pre>
<p>This tells it to set the distance to the bottom and left borders of the viewport to zero.<br />
That's pretty much all you need, further styling is up to you!</p>
<p>The source to my little bug would be:</p>
<pre>&nbsp;
&lt;p class=&quot;bug&quot;&gt;&lt;a href=&quot;#&quot;&gt;Back to top&lt;/a&gt;
&nbsp;</pre>
<p>And the css attached would be:</p>
<pre class="css">&nbsp;
<span style="color: #6666ff;">.bug</span> <span style="color: #66cc66;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">position</span>: <span style="color: #993333;">fixed</span>;
	<span style="color: #000000; font-weight: bold;">bottom</span>: <span style="color: #933;">0</span>;
	<span style="color: #000000; font-weight: bold;">left</span>: <span style="color: #933;">0</span>;
	<span style="color: #000000; font-weight: bold;">background-image</span>: <span style="color: #993333;">url</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'img/bug.png'</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #000000; font-weight: bold;">background-repeat</span>: <span style="color: #993333;">no-repeat</span>;
<span style="color: #66cc66;">&#125;</span></pre>
<img src="http://kalkran.com/?ak_action=api_record_view&id=32&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://kalkran.com/tutorials/website-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make a gradient in MsPaint</title>
		<link>http://kalkran.com/tutorials/how-to-make-a-gradient-in-mspaint/</link>
		<comments>http://kalkran.com/tutorials/how-to-make-a-gradient-in-mspaint/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 12:56:08 +0000</pubDate>
		<dc:creator>Kalkran</dc:creator>
				<category><![CDATA[Graphical]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[gradient]]></category>
		<category><![CDATA[microsoft paint]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://test.kalkran.com/?p=6</guid>
		<description><![CDATA[In this tutorial I will show you how to create a gradient in Microsoft Paint(tm). The finished product will look like this: (Click for a larger view) Full tutorial after the jump. First of all, start off with a document with a width of 100 pixels. Do this by pressing CTRL+E, typing in 100 in [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I will show you how to create a gradient in Microsoft Paint(tm). The finished product will look like this:</p>
<p><a href="http://www.kalkran.com/wp-content/uploads/2008/03/paint231.JPG" title="paint231.JPG"><img src="http://www.kalkran.com/wp-content/uploads/2008/03/paint231.thumbnail.JPG" alt="paint231.JPG" /></a>(Click for a larger view)</p>
<p>Full tutorial after the jump.</p>
<p><span id="more-6"></span>First of all, start off with a document with a width of 100 pixels. Do this by pressing CTRL+E, typing in 100 in the width box and any value in the height box (Just how high you want your gradient to be, I'll be using 300 in this tutorial).</p>
<p><a href="http://www.kalkran.com/wp-content/uploads/2008/03/paint11.JPG" title="paint11.JPG"><img src="http://www.kalkran.com/wp-content/uploads/2008/03/paint11.thumbnail.JPG" alt="paint11.JPG" /></a></p>
<p>Okay, we have an image with width 100 and height 300 now. Now fill the background with a color, I chose blue. Then draw a diagonal line from one of the corners to the opposite one, Like so.</p>
<p><a href="http://www.kalkran.com/wp-content/uploads/2008/03/paint24.JPG" title="paint24.JPG"><img src="http://www.kalkran.com/wp-content/uploads/2008/03/paint24.thumbnail.JPG" alt="paint24.JPG" /></a></p>
<p>The diagonal line is there to ensure a smooth, linear, transition from blue to yellow. Now hit CTRL+W and scale the width down to 1%</p>
<p><a href="http://www.kalkran.com/wp-content/uploads/2008/03/paint211.JPG" title="paint211.JPG"><img src="http://www.kalkran.com/wp-content/uploads/2008/03/paint211.thumbnail.JPG" alt="paint211.JPG" /></a></p>
<p>Then press CTRL+W again, fill in 500%, do this a couple more times and you'll end up with a nice, linear, gradient.</p>
<p><a href="http://www.kalkran.com/wp-content/uploads/2008/03/paint231.JPG" title="paint231.JPG"><img src="http://www.kalkran.com/wp-content/uploads/2008/03/paint231.thumbnail.JPG" alt="paint231.JPG" /></a></p>
<p>I've included a few more results below:</p>
<p><a href="http://www.kalkran.com/wp-content/uploads/2008/03/paint-other21.JPG" title="paint-other21.JPG"><img src="http://www.kalkran.com/wp-content/uploads/2008/03/paint-other21.thumbnail.JPG" alt="paint-other21.JPG" /></a><a href="http://www.kalkran.com/wp-content/uploads/2008/03/paint-other11.JPG" title="paint-other11.JPG"><img src="http://www.kalkran.com/wp-content/uploads/2008/03/paint-other11.thumbnail.JPG" alt="paint-other11.JPG" /></a></p>
<p>Sorry, I just had a lot of fun doing it =)</p>
<img src="http://kalkran.com/?ak_action=api_record_view&id=6&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://kalkran.com/tutorials/how-to-make-a-gradient-in-mspaint/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

