<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>Free Photoshop Tutorials @ PinkZAP.com</title>
	<link>http://pinkzap.com</link>
	<description>Free tutorials for Illustrator and Photoshop</description>
	<pubDate>Tue, 18 May 2010 05:51:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>jQuery trick: Assigning random colors to each object of a class.</title>
		<link>http://pinkzap.com/tutorial/jquery-trick-assign-a-random-colors-to-each-object-of-a-class/</link>
		<comments>http://pinkzap.com/tutorial/jquery-trick-assign-a-random-colors-to-each-object-of-a-class/#comments</comments>
		<pubDate>Tue, 18 May 2010 05:36:54 +0000</pubDate>
		<dc:creator>Noemi [Administrator]</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pinkzap.com/tutorial/jquery-trick-assign-a-random-colors-to-each-object-of-a-class/</guid>
		<description><![CDATA[Random colors can come in useful in web design. You can use them for background colors of certain elements (like posts). You can limit the randomness of the colors to light colors or dark. I originally came up with this script to create a replacement for gravatars - basically get rid of avatars and just [...]]]></description>
			<content:encoded><![CDATA[<p>Random colors can come in useful in web design. You can use them for background colors of certain elements (like posts). You can limit the randomness of the colors to <em>light colors</em> or <em>dark</em>. I originally came up with this script to create a replacement for gravatars - basically get rid of avatars and just give commenters a random color based on their name (or email). The first step was to create the random colors. With jQuery installed, this is all the code I needed.</p>
<blockquote><p><code>$(document).ready(function() {<br />
$('.examplebox').each(function () {<br />
var hue = 'rgb(' + (Math.floor(Math.random()  * 256)) + ',' + (Math.floor(Math.random()  * 256)) + ',' + (Math.floor(Math.random()  * 256)) + ')';<br />
$(this).css("background-color", hue);<br />
});<br />
});<br />
</code></p></blockquote>
<p>For this simple example, I&#8217;m going to be changing the background color. This is the CSS for my little divs below.</p>
<blockquote><p><code>.examplebox {width:50px; height:50px;float:left;margin:10px;background:red;}</code></p></blockquote>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p class="examplebox">&nbsp;</p>
<p><a href="javascript:this.location.reload();">Refresh</a> to see more colors. I&#8217;m still working on the plugin to base the random color on the commenters name.</p>
<p>Oh, and to use only light colors, you modify the rgb formula to your liking. This will only yield light colors:</p>
<blockquote><p><code>'rgb(' + (Math.floor((256-199)*Math.random()) + 200) + ','  + (Math.floor((256-199)*Math.random()) + 200) + ','  + (Math.floor((256-199)*Math.random()) + 200) + ')';<br />
</code></p></blockquote>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p class="examplebox2">&nbsp;</p>
<p>I love the visual effect these random color boxes give off, don&#8217;t you? <img src='http://pinkzap.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
PS. If the boxes are all red, the script isn&#8217;t working.</p>
]]></content:encoded>
			<wfw:commentRss>http://pinkzap.com/tutorial/jquery-trick-assign-a-random-colors-to-each-object-of-a-class/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Thanks for reading</title>
		<link>http://pinkzap.com/tutorial/thanks-for-reading/</link>
		<comments>http://pinkzap.com/tutorial/thanks-for-reading/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 09:53:29 +0000</pubDate>
		<dc:creator>Noemi [Administrator]</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pinkzap.com/tutorial/thanks-for-reading/</guid>
		<description><![CDATA[Thank you to everyone who read Pinkzap over the years. Pinkzap is now defunct. Please visit my new web project at Jumpino.com. It&#8217;s something new and fresh and it will take over the internet.
]]></description>
			<content:encoded><![CDATA[<p>Thank you to everyone who read Pinkzap over the years. Pinkzap is now defunct. Please visit my new web project at <a href="http://jumpino.com">Jumpino.com</a>. It&#8217;s something new and fresh and it will take over the internet.</p>
]]></content:encoded>
			<wfw:commentRss>http://pinkzap.com/tutorial/thanks-for-reading/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Removing Items from Photographs (For Text)</title>
		<link>http://pinkzap.com/tutorial/removing-items-from-photographs-and-making-them-usable-for-copy/</link>
		<comments>http://pinkzap.com/tutorial/removing-items-from-photographs-and-making-them-usable-for-copy/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 03:17:11 +0000</pubDate>
		<dc:creator>Noemi [Administrator]</dc:creator>
		
		<category><![CDATA[Intermediate]]></category>

		<category><![CDATA[Specific Effects]]></category>

		<category><![CDATA[Basic]]></category>

		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://pinkzap.com/tutorial/removing-items-from-photographs-and-making-them-usable-for-copy/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://pinkzap.com/tutorial/removing-items-from-photographs-and-making-them-usable-for-copy/"><img src="http://pinkzap.com/wp-content/uploads/2008/02/roadlesstraveled.gif" alt="roadlesstraveled.gif" /></a> <a href="http://pinkzap.com/tutorial/removing-items-from-photographs-and-making-them-usable-for-copy/#more-587" class="more-link">(View this tutorial&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pinkzap.com/tutorial/removing-items-from-photographs-and-making-them-usable-for-copy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Easy Favicons - No Plugins required!</title>
		<link>http://pinkzap.com/tutorial/easy-favicons-no-plugins-required/</link>
		<comments>http://pinkzap.com/tutorial/easy-favicons-no-plugins-required/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 23:11:04 +0000</pubDate>
		<dc:creator>Noemi [Administrator]</dc:creator>
		
		<category><![CDATA[Intermediate]]></category>

		<category><![CDATA[Specific Effects]]></category>

		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://pinkzap.com/tutorial/easy-favicons-no-plugins-required/</guid>
		<description><![CDATA[ 
]]></description>
			<content:encoded><![CDATA[<p> <a href="http://pinkzap.com/tutorial/easy-favicons-no-plugins-required/#more-577" title="make a favorites icon" target="_blank"><img src="http://pinkzap.com/wp-content/uploads/2008/01/thumb.gif" alt="thumb.gif" /></a></p>
<p> <a href="http://pinkzap.com/tutorial/easy-favicons-no-plugins-required/#more-577" class="more-link">(View this tutorial&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pinkzap.com/tutorial/easy-favicons-no-plugins-required/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to make a glossy button</title>
		<link>http://pinkzap.com/tutorial/how-to-make-a-glossy-button/</link>
		<comments>http://pinkzap.com/tutorial/how-to-make-a-glossy-button/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 10:13:06 +0000</pubDate>
		<dc:creator>Noemi [Administrator]</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pinkzap.com/tutorial/how-to-make-a-glossy-button/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://pinkzap.com/?p=574" title="making a glossy button in photoshop" target="_blank"><img src="http://pinkzap.com/wp-content/uploads/2008/01/glossybuttonthuynb.gif" alt="glossybuttonthuynb.gif" border="0"/></a><br />
 <a href="http://pinkzap.com/tutorial/how-to-make-a-glossy-button/#more-574" class="more-link">(View this tutorial&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pinkzap.com/tutorial/how-to-make-a-glossy-button/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Making a Logo: Dashed Lines and 3d Objects</title>
		<link>http://pinkzap.com/tutorial/making-a-logo-dashed-lines-and-3d-objects/</link>
		<comments>http://pinkzap.com/tutorial/making-a-logo-dashed-lines-and-3d-objects/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 22:04:29 +0000</pubDate>
		<dc:creator>Noemi [Administrator]</dc:creator>
		
		<category><![CDATA[Advanced]]></category>

		<category><![CDATA[Intermediate]]></category>

		<category><![CDATA[Specific Effects]]></category>

		<category><![CDATA[Illustrator]]></category>

		<guid isPermaLink="false">http://pinkzap.com/tutorial/making-a-logo-dashed-lines-and-3d-objects/</guid>
		<description><![CDATA[ 
]]></description>
			<content:encoded><![CDATA[<p> <a href="http://pinkzap.com/tutorial/making-a-logo-dashed-lines-and-3d-objects/#more-560" title="logo ideas photoshop tutorial"><img src="http://pinkzap.com/wp-content/uploads/2007/11/logoth.jpg" alt="logoth.jpg" /></a></p>
<p> <a href="http://pinkzap.com/tutorial/making-a-logo-dashed-lines-and-3d-objects/#more-560" class="more-link">(View this tutorial&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pinkzap.com/tutorial/making-a-logo-dashed-lines-and-3d-objects/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Drawing a character&#8217;s face in Illustrator</title>
		<link>http://pinkzap.com/tutorial/drawing-a-characters-face-in-illustrator/</link>
		<comments>http://pinkzap.com/tutorial/drawing-a-characters-face-in-illustrator/#comments</comments>
		<pubDate>Sun, 18 Nov 2007 00:27:48 +0000</pubDate>
		<dc:creator>Noemi [Administrator]</dc:creator>
		
		<category><![CDATA[Advanced]]></category>

		<category><![CDATA[Illustrator]]></category>

		<guid isPermaLink="false">http://pinkzap.com/tutorial/drawing-a-characters-face-in-illustrator/</guid>
		<description><![CDATA[ 
]]></description>
			<content:encoded><![CDATA[<p> <a href="http://pinkzap.com/tutorial/drawing-a-characters-face-in-illustrator/" title="illustrator tutorials" target="_blank"><img src="http://pinkzap.com/wp-content/uploads/2007/11/elf.gif" alt="elf.gif" border="0"/> <a href="http://pinkzap.com/tutorial/drawing-a-characters-face-in-illustrator/#more-534" class="more-link">(View this tutorial&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pinkzap.com/tutorial/drawing-a-characters-face-in-illustrator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Learn to Make Web 2.0 Glossy Objects Yourself</title>
		<link>http://pinkzap.com/tutorial/learn-to-make-web-20-glossy-objects-yourself/</link>
		<comments>http://pinkzap.com/tutorial/learn-to-make-web-20-glossy-objects-yourself/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 06:01:42 +0000</pubDate>
		<dc:creator>Noemi [Administrator]</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pinkzap.com/2007/11/12/learn-to-make-web-20-glossy-objects-yourself/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://pinkzap.com/tutorial/learn-to-make-web-20-glossy-objects-yourself/"><img src="http://pinkzap.com/wp-content/uploads/2007/11/glossyobjects.jpg" alt="web 2.0 graphics tutorial photoshop" border="0" /></a><br />
 <a href="http://pinkzap.com/tutorial/learn-to-make-web-20-glossy-objects-yourself/#more-529" class="more-link">(View this tutorial&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pinkzap.com/tutorial/learn-to-make-web-20-glossy-objects-yourself/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Trendy Header Text</title>
		<link>http://pinkzap.com/tutorial/trendy-header-text/</link>
		<comments>http://pinkzap.com/tutorial/trendy-header-text/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 08:04:55 +0000</pubDate>
		<dc:creator>Noemi [Administrator]</dc:creator>
		
		<category><![CDATA[Intermediate]]></category>

		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://pinkzap.com/?p=503</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://pinkzap.com/?p=503"><img src="http://pinkzap.com/wp-content/uploads/2007/08/th.jpg" alt="th.jpg" /></a><br />
 <a href="http://pinkzap.com/tutorial/trendy-header-text/#more-503" class="more-link">(View this tutorial&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pinkzap.com/tutorial/trendy-header-text/feed/</wfw:commentRss>
		</item>
		<item>
		<title>RSS Button Variations</title>
		<link>http://pinkzap.com/tutorial/rss-button-variations/</link>
		<comments>http://pinkzap.com/tutorial/rss-button-variations/#comments</comments>
		<pubDate>Sat, 11 Aug 2007 10:59:39 +0000</pubDate>
		<dc:creator>Noemi [Administrator]</dc:creator>
		
		<category><![CDATA[Intermediate]]></category>

		<category><![CDATA[Specific Effects]]></category>

		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://pinkzap.com/?p=454</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://pinkzap.com/?p=454"><img src="http://pinkzap.com/wp-content/uploads/2007/08/rssfinalth.jpg" alt="rssfinalth.jpg" /></a></p>
<p> <a href="http://pinkzap.com/tutorial/rss-button-variations/#more-454" class="more-link">(View this tutorial&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pinkzap.com/tutorial/rss-button-variations/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
