<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>ClickPopMedia</title>
	
	<link>http://www.clickpopmedia.com</link>
	<description>ClickPopMedia is a great little design and illustration firm.</description>
	<pubDate>Thu, 26 Mar 2009 06:06:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/clickpopmedia" type="application/rss+xml" /><item>
		<title>Password information storage and security</title>
		<link>http://feedproxy.google.com/~r/clickpopmedia/~3/yMK0_ZcY74E/</link>
		<comments>http://www.clickpopmedia.com/2009/03/26/password-information-storage-and-security/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 06:06:11 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
		
		<category><![CDATA[Sean]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[checksum]]></category>

		<category><![CDATA[hash]]></category>

		<category><![CDATA[md5]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[passwords]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[security]]></category>

		<category><![CDATA[user authentication]]></category>

		<guid isPermaLink="false">http://www.clickpopmedia.com/?p=470</guid>
		<description><![CDATA[There are several techniques used for storing passwords; some are very good, while some are downright terrible.  Without mentioning the name of the organizations (for security purposes), I am, and have been associated with 2 groups that, without a doubt in my mind, store passwords in an extremely insecure manner.  And of course, they&#8217;re not [...]]]></description>
			<content:encoded><![CDATA[<p>There are several techniques used for storing passwords; some are very good, while some are downright terrible.  Without mentioning the name of the organizations (for security purposes), I am, and have been associated with 2 groups that, without a doubt in my mind, store passwords in an extremely insecure manner.  And of course, they&#8217;re not alone.</p>
<p>It is easy to spot an organization that stores passwords either completely unencrypted or encrypted using a method that allows for decryption easily.  One method to spot this insecure behavior is the ability to &#8220;recover your password&#8221; without the need of resetting it.  If you can recover your password, then someone else can easily access it as well (with the right tools).  Another method is one to spot carefully&#8230; it&#8217;s not to fear when a company requires your password to be different from your previous X passwords, but when they also look for similarities and judge your password to be &#8220;too close&#8221;.  This may come off as being a very secure tactic, when indeed it must mean that they are storing not just one, but several old passwords in a way that would make them, once again, an easy target.</p>
<p>So now we know some things to spot visibly that should throw up some caution flags.  What else is there to know.  There are methods of storing passwords that are more secure.  For instance, storing a &#8220;hash&#8221; or checksum of a password using an irreversible, or one-way, algorithm is a good start.  There are several hashing methods out there, some of which are better than others, but before we continue, allow me to explain what a hash is and how it can benefit secure data storage.<span id="more-470"></span></p>
<p>Sparing you from all the techno-jargon, a &#8220;hash&#8221; or checksum is an &#8220;encrypted&#8221; form of a variable.  That&#8217;s a few quotes thrown in there, technically the term hash is misused by the Internet community as is encrypted when talking about a checksum.  Encrypted would technically make the statement that the process is reversible using some sort of key.  When in all actuality there is no key, it is a one-way cypher resulting in a fixed length string of letters and numbers that is unique to the variable data.  A common hash string (MD5) is 128-bit or 32 hexadecimal characters.  In short you have 32 characters ranging from 0-9 and A-F, 16 possible choices for each character position, giving you approximately 340,000,000,000,000,000,000,000,000,000,000,000,000 possibilities.  This doesn&#8217;t eliminate the possibility of duplicate checksums, but obviously the chances of that occurrence are highly unlikely.  The benefit of storing a data in &#8220;hash&#8221; form is that if a person gets a hold of a list of passwords, they are much easier to enter than if they get a hold of just your password hashes, but there is still a weakness.</p>
<p>Passwords are only as good as the people that make them.  Of course a developer can submit their users to a multitude of password rules, eliminating common passwords and other occurrences, but you&#8217;re still left with the possibility of 2 people having the same password.  If 2 people have the same password, they therefor have the same hash.  So how do we eliminate this?  Now it&#8217;s getting fun!</p>
<p>Eliminating possible duplicate hashes in your database is the fun part, and the part that can really help you push forward into the realm of password security.  Salting your passwords is the easiest method to eliminate this rare phenomenon. A salt is small bit of data added &#8220;somewhere&#8221; to your password string.  As I said, this is where it can be a lot of fun if you&#8217;re creative.  The salt has to be stored, and should be unique to each individual user, otherwise you still have the possibility of identical hashes with the same password.  Attaching information collected during the registration process is a good start, or even using the &#8220;id&#8221; of the user.  Or you can be creative and use multiple items or even multiple times of running it through a hashing function.  This ultimately will be up to you, but I will give you a little guidance.</p>
<p>For convenience we will keep this easy.  The salt variable will be left undetermined in this sample so that you can fill it in with whatever you like.  Feel free to play around with it.</p>
<p><strong>&lt;?php<br />
$salt=X;  //undetermined, replace X with something of your choosing.<br />
$password=$_REQUEST['password'];  //Sent from a form, or other type of post/get data set.<br />
$seasoned_password=$salt.$password; //This will joint the 2 together;<br />
$password_hash=md5($seasoned_password);  //This can now be stored in the database along with the salt.</strong><br />
?&gt;</p>
<p>Storing a salted hashed password will effectively eliminate the chances for duplicate password hashes, as long as the salt is wide enough variable.  Remember never to store your salt as it&#8217;s own field, hide it as something else.</p>
<p>I am indeed sorry if this was a little long and drawn out.  Security is not something to be taken lightly, and I hope this helps give insight in to how you can help protect your users passwords as well as the data you wish to protect.<br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.clickpopmedia.com/2009/02/20/introduction-to-my-phpmysql-user-authentication-system/" title="Introduction to my PHP/MySQL User Authentication system">Introduction to my PHP/MySQL User Authentication system (0)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.clickpopmedia.com/2009/03/26/password-information-storage-and-security/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.clickpopmedia.com/2009/03/26/password-information-storage-and-security/</feedburner:origLink></item>
		<item>
		<title>How to Have a Heart - Illustrator Tutorial</title>
		<link>http://feedproxy.google.com/~r/clickpopmedia/~3/ZdaZ60q2C6I/</link>
		<comments>http://www.clickpopmedia.com/2009/02/26/how-to-have-a-heart-illustrator-tutorial/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 18:00:01 +0000</pubDate>
		<dc:creator>VQ</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[VQ]]></category>

		<category><![CDATA[Vector]]></category>

		<category><![CDATA[illustrator]]></category>

		<guid isPermaLink="false">http://www.clickpopmedia.com/?p=472</guid>
		<description><![CDATA[
I posted a simple heart vector last week, which I actually had a fair amount of fun making. As I was making it, I noticed how many shortcuts and simple techniques make the process of vector illustration so much easier. I&#8217;ve learned a ton of great stuff from Vectips, Vectortuts, and Abduzeedo and wanted to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-485" title="step13" src="http://www.clickpopmedia.com/wp-content/uploads/2009/02/step13.png" alt="step13" width="600" height="477" /></p>
<p>I posted a simple <a href="http://www.clickpopmedia.com/2009/02/20/have-a-heart-happy-valentines-6/">heart vector</a> last week, which I actually had a fair amount of fun making. As I was making it, I noticed how many shortcuts and simple techniques make the process of vector illustration so much easier. I&#8217;ve learned a ton of great stuff from <a href="http://vectips.com/">Vectips</a>, <a href="http://vector.tutsplus.com/">Vectortuts</a>, and <a href="http://abduzeedo.com/">Abduzeedo</a> and wanted to pass along some workflow tips of my own. Have fun.</p>
<p>Oh, I should stress (as though it&#8217;s not already obvious), I&#8217;m no anatomist.</p>
<p><span id="more-472"></span></p>
<p><img class="alignnone size-full wp-image-473" title="step01" src="http://www.clickpopmedia.com/wp-content/uploads/2009/02/step01.png" alt="step01" width="600" height="477" /></p>
<p>First, I always find it helpful to start with a reference sketch. So go ahead and scribble up a heart, or grab the image from above. I&#8217;m sure you noticed my ugly mug in the background. I though it added just a sinister air that complements the tutorial nicely.</p>
<p><img class="alignnone size-full wp-image-474" title="step02" src="http://www.clickpopmedia.com/wp-content/uploads/2009/02/step02.png" alt="step02" width="600" height="477" /></p>
<p>We&#8217;re going to start by tracing the major central shape of the heart that we&#8217;ll build from. I always like to trace using no fill, and a really bright, contrasting color, so I don&#8217;t lose my lines.</p>
<p><img class="alignnone size-full wp-image-475" title="step03" src="http://www.clickpopmedia.com/wp-content/uploads/2009/02/step03.png" alt="step03" width="600" height="477" /></p>
<p>Now we&#8217;ll trace the little veins/arteries/i don&#8217;t know, with a much thicker brush with round edges. Make sure to make the overlap the the border of your first shape.</p>
<p><img class="alignnone size-full wp-image-476" title="step04" src="http://www.clickpopmedia.com/wp-content/uploads/2009/02/step04.png" alt="step04" width="600" height="477" /></p>
<p>Now we&#8217;ll go through the process of blocking out the rest of your shapes. If you like, you can make the cava&#8217;s, aorta, veins, and arteries connect and end in different ways where they won&#8217;t show up in the final piece, but for my purposes, I was only concerned with the parts that would show up at the end. This step is really just more tracing.</p>
<h3>Other Posts</h3>
<ul class="related_post">
<li><a href="http://www.clickpopmedia.com/2008/05/28/cool-rollover-effects-with-filters/" title="Cool Rollover Effects with Filters">Cool Rollover Effects with Filters (6)</a></li>
<li><a href="http://www.clickpopmedia.com/2007/12/05/sotel-enterprises/" title="Sotel Enterprises">Sotel Enterprises (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/03/06/way-up-in-the-middle-of-the-air/" title="Way Up in the Middle of the Air">Way Up in the Middle of the Air (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/04/10/free-vector-laurels/" title="Free Vector - Laurels">Free Vector - Laurels (4)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.clickpopmedia.com/2009/02/26/how-to-have-a-heart-illustrator-tutorial/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.clickpopmedia.com/2009/02/26/how-to-have-a-heart-illustrator-tutorial/</feedburner:origLink></item>
		<item>
		<title>Introduction to my PHP/MySQL User Authentication system</title>
		<link>http://feedproxy.google.com/~r/clickpopmedia/~3/vNOywik8keE/</link>
		<comments>http://www.clickpopmedia.com/2009/02/20/introduction-to-my-phpmysql-user-authentication-system/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 02:45:42 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
		
		<category><![CDATA[Sean]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[sean metzgar]]></category>

		<category><![CDATA[security]]></category>

		<category><![CDATA[user authentication]]></category>

		<guid isPermaLink="false">http://www.clickpopmedia.com/2009/02/20/introduction-to-my-phpmysql-user-authentication-system/</guid>
		<description><![CDATA[I thought I&#8217;d take a few minutes to go over the basics of what I&#8217;m going to be accomplishing over the next few weeks.  I plan on guiding everyone through some of the basics of building your own user authentication system.  This will include many segments varying from storing password information securely, user [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I&#8217;d take a few minutes to go over the basics of what I&#8217;m going to be accomplishing over the next few weeks.  I plan on guiding everyone through some of the basics of building your own user authentication system.  This will include many segments varying from storing password information securely, user registration (and required information), password recovery vs. password reset, analyzing security vulnerabilities, possible applications and a wide variety of other topics that could possibly go along.</p>
<p>I will be starting off with a very basic set of security rules that you will need to keep in mind in order to maintain a secure list of users and password information.  Without going in to further details, I can&#8217;t stress enough the huge mistake that many authentication systems use by limiting the size, type, and strength of a users passwords as well as the mistake of how the information is stored.  I plan on analyzing a few preexisting systems and show some fundamental flaws associated with them, and provide tips to help safeguard your data from any unwanted guests.</p>
<p>Please be sure to check back soon, as I will be posting in the next few days.<br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.clickpopmedia.com/2009/03/26/password-information-storage-and-security/" title="Password information storage and security">Password information storage and security (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/02/26/the-brand-new-super-fantastic-2008-clickpop-lineup-and-a-vector-megaphone/" title="The ClickPopLineup (&#038; a vector megaphone)">The ClickPopLineup (&#038; a vector megaphone) (4)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.clickpopmedia.com/2009/02/20/introduction-to-my-phpmysql-user-authentication-system/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.clickpopmedia.com/2009/02/20/introduction-to-my-phpmysql-user-authentication-system/</feedburner:origLink></item>
		<item>
		<title>Have a Heart, Happy Valentines +6</title>
		<link>http://feedproxy.google.com/~r/clickpopmedia/~3/KSsMHLTeook/</link>
		<comments>http://www.clickpopmedia.com/2009/02/20/have-a-heart-happy-valentines-6/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 17:51:03 +0000</pubDate>
		<dc:creator>VQ</dc:creator>
		
		<category><![CDATA[Download]]></category>

		<category><![CDATA[Free]]></category>

		<category><![CDATA[VQ]]></category>

		<category><![CDATA[Vector]]></category>

		<guid isPermaLink="false">http://www.clickpopmedia.com/?p=444</guid>
		<description><![CDATA[
Introducing the first free resource in the ClickPop comeback.  I wanted to get this out for valentines day, but got a little caught up in some fun projects I&#8217;ve been working on. So here it is, better late than never. Consider it a very early 2010 valentines day release.
As always, if you come up with [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-445" title="heart_header" src="http://www.clickpopmedia.com/wp-content/uploads/2009/02/heart_header.png" alt="heart_header" width="650" height="250" /></p>
<p>Introducing the first free resource in the ClickPop comeback.  I wanted to get this out for valentines day, but got a little caught up in some fun projects I&#8217;ve been working on. So here it is, better late than never. Consider it a very early 2010 valentines day release.</p>
<p>As always, if you come up with something great, let us know. We love to see the amazing work creative people do with our humble resources. Happy illustrating.</p>
<p style="text-align: center;"><strong><a href="http://www.clickpopmedia.com/Freebies/vectors/heart.zip">Download the Have a Heart Vector (ai and eps)</a></strong></p>
<p><strong>GodBless:VQ</strong></p>
<div class="lisence"><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/"><img style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/us/80x15.png" alt="Creative Commons License" /></a><span>ClickPop Have a Heart Vector</span> by <a rel="cc:attributionURL" href="http://www.clickpopmedia.com">Christopher Vasquez</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>. Based on a work at <a rel="dc:source" href="http://www.clickpopmedia.com/Freebies/vectors/heart.zip">www.clickpopmedia.com</a></div>
<h3>Other Posts</h3>
<ul class="related_post">
<li><a href="http://www.clickpopmedia.com/2008/04/10/free-vector-laurels/" title="Free Vector - Laurels">Free Vector - Laurels (4)</a></li>
<li><a href="http://www.clickpopmedia.com/2009/02/20/introduction-to-my-phpmysql-user-authentication-system/" title="Introduction to my PHP/MySQL User Authentication system">Introduction to my PHP/MySQL User Authentication system (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/02/29/ricky-spaniel-hits-clickpopmedia/" title="Ricky Spaniel Hits ClickPopMedia">Ricky Spaniel Hits ClickPopMedia (1)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/04/30/a-painting-collaborating/" title="A Painting Collaborating.">A Painting Collaborating. (0)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.clickpopmedia.com/2009/02/20/have-a-heart-happy-valentines-6/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.clickpopmedia.com/2009/02/20/have-a-heart-happy-valentines-6/</feedburner:origLink></item>
		<item>
		<title>We’re Coming Back</title>
		<link>http://feedproxy.google.com/~r/clickpopmedia/~3/zak_Wn95Ndk/</link>
		<comments>http://www.clickpopmedia.com/2009/02/13/were-coming-back/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 15:34:47 +0000</pubDate>
		<dc:creator>VQ</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.clickpopmedia.com/2009/02/13/were-coming-back/</guid>
		<description><![CDATA[I know we haven&#8217;t been around in some time. That&#8217;s going to change in the next couple of weeks. You can expect a fresh new round of Flash, Photoshop, and Illustrator tutorials, free vectors and textures, and some cool portfolio stuff. Hope to see you soon.
GodBless:VQ
Other Posts

Grandscale Ent. (0)
Ricky Spaniel Hits ClickPopMedia (1)
Free Vector Octopus [...]]]></description>
			<content:encoded><![CDATA[<p>I know we haven&#8217;t been around in some time. That&#8217;s going to change in the next couple of weeks. You can expect a fresh new round of Flash, Photoshop, and Illustrator tutorials, free vectors and textures, and some cool portfolio stuff. Hope to see you soon.</p>
<p>GodBless:VQ<br />
<h3>Other Posts</h3>
<ul class="related_post">
<li><a href="http://www.clickpopmedia.com/2009/03/26/password-information-storage-and-security/" title="Password information storage and security">Password information storage and security (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/03/17/physics-in-actionscript-3/" title="Physics in ActionScript 3: Box2DFlashAS3">Physics in ActionScript 3: Box2DFlashAS3 (27)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/04/06/streams-in-the-city-psalm-4645/" title="Streams in the city (Psalm 46:4,5)">Streams in the city (Psalm 46:4,5) (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/03/14/fun-with-illustrator-brushes-nuke/" title="Fun With Illustrator Brushes: NUKE!">Fun With Illustrator Brushes: NUKE! (7)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.clickpopmedia.com/2009/02/13/were-coming-back/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.clickpopmedia.com/2009/02/13/were-coming-back/</feedburner:origLink></item>
		<item>
		<title>Updated: Vector Tutorial - Obama Logo (Added .ai and .eps Assets)</title>
		<link>http://feedproxy.google.com/~r/clickpopmedia/~3/KgcXY2Z-B7k/</link>
		<comments>http://www.clickpopmedia.com/2009/01/23/vector-tutorial-obama-logo/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 21:11:37 +0000</pubDate>
		<dc:creator>VQ</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[VQ]]></category>

		<category><![CDATA[Vector]]></category>

		<category><![CDATA[illustrator]]></category>

		<category><![CDATA[logo]]></category>

		<category><![CDATA[obama]]></category>

		<category><![CDATA[tutorail]]></category>

		<guid isPermaLink="false">http://www.clickpopmedia.com/?p=379</guid>
		<description><![CDATA[
No matter what you think of his politics, U.S. presidential cantidate Barack Obama has a pretty incredible marketing and design machine behind him. One strong example of this is his &#8220;O&#8221; logo. Simple, attractive, symbolic, it&#8217;s undeniably an effective logo.
Another aspect of the Obama campaign that is attractive to a lot of American&#8217;s is the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-381" title="Obama Logo" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/obama.jpg" alt="" /></p>
<p>No matter what you think of his politics, U.S. presidential cantidate <a href="http://www.barackobama.com">Barack Obama</a> has a pretty incredible marketing and design machine behind him. One strong example of this is his &#8220;O&#8221; logo. Simple, attractive, symbolic, it&#8217;s undeniably an effective logo.</p>
<p>Another aspect of the Obama campaign that is attractive to a lot of American&#8217;s is the grass-roots, everybody can be involved attitude that they&#8217;ve been trying quite successfully to convey. In honor of that attitude, and just in time for the Democratic Convention, I thought I would show some really helpful Illustrator techniques by making the Obama logo. In this tutorial, we&#8217;ll be going over the Pathfinder, Envelope Warps, Opacity Masks, and Gradient Meshes. And we&#8217;ll use a drop shadow!</p>
<p>What&#8217;s that? You don&#8217;t think we can do it? I have three words for you my friend.</p>
<p>Yes. We. Can.</p>
<p><span id="more-379"></span></p>
<p><strong>Step 1. Get Yourself Ready<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-385" title="Obama 1" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/01.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">I&#8217;m working with a 400px by 400px artboard. I&#8217;ve set a verticle gradient from #0768A4 to #168ACB. Also, it&#8217;s important you&#8217;re working in CMYK for this tutorial. I&#8217;ll explain later when we get down to the Opacity Masks.</p>
<p style="text-align: left;"><strong>Step 2. Lay the Foundation<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-386" title="Obama 2" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/02.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Make a 350px by 350px white circle in the middle of your artboard.</p>
<p style="text-align: left;"><strong>Step 3. Lay Another Foundation<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-387" title="Obama 3" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/03.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Select your cirlce and copy in front (ctrl + f, <em>mac</em> cmd + f) to make a copy in the same position. Size it down to 320px by 320px and apply the same gradient that you have on the background. You&#8217;ll want to have the light blue on the bottom of this circle, and push it up past the middle.</p>
<p style="text-align: left;"><strong>Step 4. And a Third Foundation<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-388" title="Obama 4" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/04.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now copy in front (ctrl + f, <em>mac </em>cmd + f) again, size the circle down to 175px by 175px, and change the fill to white.</p>
<p style="text-align: left;"><strong>Step 5. Stripes<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-390" title="Obama 5" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/05.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now we have to make the gently sloping stripes that represent the bountiful fields of the American mid-west. We start to do this by making five rectangles, alternating red and white. You can start by making one rectangle, then hold down alt (<em>mac</em> option) and drag the shape to make another copy. Line them up, and repeat till you have your five stripes.</p>
<p style="text-align: left;"><strong>Step 6. Bendy Stripes<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-392" title="Obama 6" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/06.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now it&#8217;s time to get your warp on! Yeah! Hit ctrl + alt + shift + w (<em>mac </em>cmd + option + shift + w) or go to Object&gt;Envelope Distort&gt;Make With Warp&#8230; A dialogue box will pop up. Click the preview box, so you can see what you&#8217;re doing, and set distortion just the way you like it. I have mine set to Arc, with the bend at 25%, and the horizontal distortion at -50%.</p>
<p style="text-align: left;"><strong>Step 7. Bendy, Stripey Ground<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-394" title="Obama 7" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/07.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now you want to size up, rotate, and align your stripes. You want the top of your shape stopping slightly below the halfway mark of your innermost white circle, representing the sunrise of a new day or something. The bottom of the stripes need to cover the bottom of the inner blue circle.</p>
<p style="text-align: left;"><strong>Step 8. Pathfinding<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-395" title="Obama 8" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/08.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now we&#8217;re going to use an incredibly helpful tool that I&#8217;ve used in <a href="http://www.clickpopmedia.com/2008/03/27/fun-with-illustrator-happy-little-clouds/">other tutorial&#8217;s</a>. Say hello to the Pathfinder. Select the inner blue circle, copy it in front (ctrl + f, <em>mac</em> cmd + f) and move the copy to the front (ctr + shift + ], <em>mac</em> cmd + shift + ] ). Now select your stripes, expand (Object&gt;Envelope&gt;Expand) and ungroup (ctrl + shift + g, <em>mac </em>cmd + shift + g) them. Finally, select your stripes and the blue circle copy, and hit the crop button in the pathfinder window. You should end up with this:</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-397" title="Obama 9" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/09.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now, if you&#8217;re the boring type, you could stop right here with a perfectly functional Obama logo. If you&#8217;re the adverterous type, why don&#8217;t you continue with me?</p>
<p style="text-align: left;"><strong>Step 9.</strong> <strong>Depth and Shadow</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-398" title="Obama 10" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/10.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now you&#8217;re going to copy the big white circle from the back, and move it to the front (remember that one? ctrl + shift + ], <em>mac </em>cmd + shift + ] ). Here&#8217;s another really great illustrator thing, the gradient mesh. Object&gt;Create Gradient Mesh, then a dialogue window will popup. I set it to 3 columns and three rows. The more detail you want on your gradient, the more rows and columns you should set. For our purposes, 3 is fine.</p>
<p style="text-align: left;">Now we&#8217;re going to begin adding color to individual points on our mesh. Anywhere you want to darken (in my case the bottom left side of the logo) should be assigned darker shades.</p>
<p style="text-align: left;">In the transparency panel, we&#8217;re going to set the blend mode to multiply, and the opacity to 80.</p>
<p style="text-align: left;"><strong>Step 10. The Bright Horizon<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-399" title="Obama 11" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/11.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now we have to make the bright glow coming up from beyond the horizon. Any ideas on how to do this? If you said, &#8220;Let&#8217;s just use a simple white to black gradient with the blend mode set to lighten or screen.&#8221; you&#8217;d be wrong. Dead wrong.</p>
<p style="text-align: left;">Because of some problem, which I won&#8217;t pretend to understand, with working with CMYK in Illustrator, sometimes you can&#8217;t do lighten or screen gradients. Why don&#8217;t we just work with RGB then? Because the gradients look cruddy, that&#8217;s why.</p>
<p style="text-align: left;">The solution lies in something called an Opacity Mask. First select your inner blue circle, copy it, and move it to the front. Now set the fill to white and set the blend mode to <strong>lighten</strong>. While in the transparency panel, open up the more options menu and select <strong>Make Opacity Mask</strong>. Now with your opacity mask selected, make a rectangle with a white to black gradient fill. Keep in mind, the white area displays fully what&#8217;s underneath, and as you&#8217;re getting closer to black, it masks more and more.</p>
<p style="text-align: left;"><strong>Step 11. More Practice Masking</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-400" title="Obama 12" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/12.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now we need to set up another opacity mask for the &#8220;shine&#8221; cast by the rising sun. Copy, paste, and move to front The blue circle. Size it down slightly, and align it with the bottom of the original blue circle. Now Copy this circle, but don&#8217;t paste it yet. Set the blend mode of the white circle to <strong>Screen</strong><img src="file:///C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/moz-screenshot.jpg" alt="" />.</p>
<p style="text-align: left;">Now create an Opacity Mask on this layer, like you did for your last layer. With the opacity layer selected, paste the circle into it from your clipboard and set the fill to a black to white gradient.  Play around with your gradient till you get the effect you want.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-401" title="Obama 13" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/13.jpg" alt="" width="400" height="400" /><strong></strong></p>
<p style="text-align: left;"><strong>Step 12. The Finishing Touch</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-403" title="Obama 14" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/14.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">To finish things off we&#8217;re going to add a little dropshadow. Select Effect&gt;Stylize&gt;Drop Shadow, set your settings, and go for it. I have the mode set to Multiply, opacity at 75%, x offset -10px, y offset 10px, and blur to 15px.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-404" title="Obama Logo" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/end.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">I hope you enjoyed this tutorial. In the next politically minded tutorial, I&#8217;m going to show you how to make a Shepard Farey inspired John McCain poster like <a href="http://www.clickpopmedia.com/projects/mccain/posters/McCain-Kids.pdf">this one:</a></p>
<p style="text-align: center;"><a href="http://www.clickpopmedia.com/projects/mccain/posters/McCain-Kids.pdf"><img class="alignnone" title="Kids" src="http://www.clickpopmedia.com/projects/mccain/McCain-Kids.jpg" alt="" width="300" height="388" /></a></p>
<p style="text-align: center;"><strong><a href="http://www.clickpopmedia.com/Freebies/obama.zip">Download the Obama Logo Asset Files Vectors</a></strong></p>
<p style="text-align: left;"><strong>GodBless:VQ</strong></p>
<p style="text-align: center;">
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.clickpopmedia.com/2008/06/26/free-vector-octopus/" title="Free Vector Octopus">Free Vector Octopus (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/06/18/water-buffalo-skull-vector/" title="Water Buffalo Skull Vector">Water Buffalo Skull Vector (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/06/05/batik-is-beautiful/" title="Batik is Beautiful - Free Vector Swatches UPDATED">Batik is Beautiful - Free Vector Swatches UPDATED (24)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/05/19/free-vectors-penguins/" title="Free Vectors: Penguins!">Free Vectors: Penguins! (4)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.clickpopmedia.com/2009/01/23/vector-tutorial-obama-logo/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.clickpopmedia.com/2009/01/23/vector-tutorial-obama-logo/</feedburner:origLink></item>
		<item>
		<title>Palin Shirts For Sale!</title>
		<link>http://feedproxy.google.com/~r/clickpopmedia/~3/0sbQ_uX8NNc/</link>
		<comments>http://www.clickpopmedia.com/2008/10/08/palin-shirts-for-sale/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 01:17:17 +0000</pubDate>
		<dc:creator>VQ</dc:creator>
		
		<category><![CDATA[VQ]]></category>

		<category><![CDATA[Vector]]></category>

		<category><![CDATA[palin]]></category>

		<category><![CDATA[sale]]></category>

		<category><![CDATA[shirt]]></category>

		<guid isPermaLink="false">http://www.clickpopmedia.com/?p=419</guid>
		<description><![CDATA[
A couple weeks ago, I gave out a Palin vector. I&#8217;ve been playing around with it since then, and finally have a shirt for sale. It combines the absolutely gorgeous Sarah Palin with her home state, and state motto, appropriately, &#8220;North to the future.&#8221;
I actually went to a McCain/Palin event with some friends and some [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.thehypefactory.com"><img class="size-full wp-image-420 aligncenter" title="palin_store" src="http://www.clickpopmedia.com/wp-content/uploads/2008/10/palin_store.jpg" alt="" /></a></p>
<p>A couple weeks ago, I gave out a Palin vector. I&#8217;ve been playing around with it since then, and finally have a <a href="http://www.thehypemachine.com">shirt for sale</a>. It combines the absolutely gorgeous Sarah Palin with her home state, and state motto, appropriately, &#8220;North to the future.&#8221;</p>
<p>I actually went to a McCain/Palin event with some friends and some shirts. The shirts were an enormous hit, and everybody and their grandmother (seriously, an elderly lady with a super old camera) wanted to get pictures. I don&#8217;t want to exaggerate, but I think we may have been more popular than McCain today.</p>
<p>Governor Palin was actually kind enough to autograph one for us, and we&#8217;ll be auctioning that off for charity soon. We&#8217;re still working out the details, but I&#8217;ll let you know on that one.</p>
<p>In any case, be a pal and pick up a Palin shirt. Photos from the rally after the jump.<span id="more-419"></span></p>
<p style="text-align: center;"><img class="size-full wp-image-422 aligncenter" title="palin1" src="http://www.clickpopmedia.com/wp-content/uploads/2008/10/palin1.jpg" alt="" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-423" title="palin7" src="http://www.clickpopmedia.com/wp-content/uploads/2008/10/palin7.jpg" alt="" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-424" title="palin3" src="http://www.clickpopmedia.com/wp-content/uploads/2008/10/palin3.jpg" alt="" /></p>
<p style="text-align: center;">
<h3>Other Posts</h3>
<ul class="related_post">
<li><a href="http://www.clickpopmedia.com/2008/03/16/handskills-ent-starters-promotional-flyer/" title="Handskills Ent. - Starter&#8217;s Promotional Flyer">Handskills Ent. - Starter&#8217;s Promotional Flyer (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/04/21/box2dflash-v200-released/" title="Box2DFlash v2.0.0 Released!">Box2DFlash v2.0.0 Released! (2)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/04/30/photoshop-watercolor-paint-smudges/" title="Photoshop Watercolor Paint Smudges">Photoshop Watercolor Paint Smudges (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/02/07/free-vector-packs-round-2/" title="Free Vector Packs: Round 2">Free Vector Packs: Round 2 (1)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.clickpopmedia.com/2008/10/08/palin-shirts-for-sale/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.clickpopmedia.com/2008/10/08/palin-shirts-for-sale/</feedburner:origLink></item>
		<item>
		<title>ClickPopMedia </title>
		<link>http://feedproxy.google.com/~r/clickpopmedia/~3/grhIYbbKPXk/</link>
		<comments>http://www.clickpopmedia.com/2008/08/21/clickpopmedia-2/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 04:26:48 +0000</pubDate>
		<dc:creator>VQ</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[VQ]]></category>

		<category><![CDATA[Vector]]></category>

		<category><![CDATA[art]]></category>

		<category><![CDATA[contest]]></category>

		<category><![CDATA[help]]></category>

		<category><![CDATA[merch]]></category>

		<category><![CDATA[threadless]]></category>

		<category><![CDATA[vectors]]></category>

		<guid isPermaLink="false">http://www.clickpopmedia.com/?p=409</guid>
		<description><![CDATA[
I personally have been a big fan of Threadless for quite some time now. The designs they offer are, generally speaking, more beautiful, funny, or insightful than your run of the mill t-shirt. However, this might just be about to change. You see, I&#8217;ve posted a design to Threadless, and if it does not get [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.threadless.com/submission/175433/Music_Saved_My_Life/showmore,designs"><img class="alignnone size-full wp-image-183" title="Threadless" src="http://roboparade.clickpopmedia.com/wp-content/uploads/2008/08/header.jpg" alt="" width="500" height="300" /></a></p>
<p>I personally have been a big fan of <a href="http://www.threadless.com/submission/175433/Music_Saved_My_Life/showmore,designs">Threadless</a> for quite some time now. The designs they offer are, generally speaking, more beautiful, funny, or insightful than your run of the mill t-shirt. However, this might just be about to change. You see, I&#8217;ve posted a design to Threadless, and if it does not get printed, I promise I will throw a hissy fit and never use Threadless again!</p>
<p>Well, maybe not for a week or so at least.</p>
<p>As you can see, I&#8217;ve used a ton of the our free vectors. So if you like the design and want to support the site, give us a quick vote. I&#8217;ll love you forever if you do.</p>
<p><a title="Music Saved My Life - Threadless, Best T-shirts Ever" href="http://www.threadless.com/submission/175433/Music_Saved_My_Life?streetteam=theroboparade"><img src="http://www.threadless.com/subbanner/175433/banner1.png" border="0" alt="Music Saved My Life - Threadless, Best T-shirts Ever" width="220" height="119" /></a><br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.clickpopmedia.com/2008/05/02/free-vectors-messy-swirls/" title="Free Vectors: Messy Swirls">Free Vectors: Messy Swirls (3)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/04/24/free-waves-and-ridges-illustrator-swatches/" title="Free! Waves and Ridges Illustrator Swatches">Free! Waves and Ridges Illustrator Swatches (2)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/04/13/210/" title="strikeouts and curveballs">strikeouts and curveballs (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/04/10/free-vector-laurels/" title="Free Vector - Laurels">Free Vector - Laurels (4)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.clickpopmedia.com/2008/08/21/clickpopmedia-2/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.clickpopmedia.com/2008/08/21/clickpopmedia-2/</feedburner:origLink></item>
		<item>
		<title>Obama Logo Tutorial</title>
		<link>http://feedproxy.google.com/~r/clickpopmedia/~3/7VxNl1RnB6o/</link>
		<comments>http://www.clickpopmedia.com/2008/08/07/vector-tutorial-obama-logo-2/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 22:58:05 +0000</pubDate>
		<dc:creator>VQ</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.clickpopmedia.com/?p=461</guid>
		<description><![CDATA[
No matter what you think of his politics, U.S. presidential cantidate Barack Obama has a pretty incredible marketing and design machine behind him. One strong example of this is his &#8220;O&#8221; logo. Simple, attractive, symbolic, it&#8217;s undeniably an effective logo.
Another aspect of the Obama campaign that is attractive to a lot of American&#8217;s is the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-381" title="Obama Logo" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/obama.jpg" alt="" /></p>
<p>No matter what you think of his politics, U.S. presidential cantidate <a href="http://www.barackobama.com">Barack Obama</a> has a pretty incredible marketing and design machine behind him. One strong example of this is his &#8220;O&#8221; logo. Simple, attractive, symbolic, it&#8217;s undeniably an effective logo.</p>
<p>Another aspect of the Obama campaign that is attractive to a lot of American&#8217;s is the grass-roots, everybody can be involved attitude that they&#8217;ve been trying quite successfully to convey. In honor of that attitude, and just in time for the Democratic Convention, I thought I would show some really helpful Illustrator techniques by making the Obama logo. In this tutorial, we&#8217;ll be going over the Pathfinder, Envelope Warps, Opacity Masks, and Gradient Meshes. And we&#8217;ll use a drop shadow!</p>
<p>What&#8217;s that? You don&#8217;t think we can do it? I have three words for you my friend.</p>
<p>Yes. We. Can.</p>
<p><span id="more-461"></span></p>
<p><strong>Step 1. Get Yourself Ready<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-385" title="Obama 1" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/01.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">I&#8217;m working with a 400px by 400px artboard. I&#8217;ve set a verticle gradient from #0768A4 to #168ACB. Also, it&#8217;s important you&#8217;re working in CMYK for this tutorial. I&#8217;ll explain later when we get down to the Opacity Masks.</p>
<p style="text-align: left;"><strong>Step 2. Lay the Foundation<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-386" title="Obama 2" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/02.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Make a 350px by 350px white circle in the middle of your artboard.</p>
<p style="text-align: left;"><strong>Step 3. Lay Another Foundation<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-387" title="Obama 3" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/03.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Select your cirlce and copy in front (ctrl + f, <em>mac</em> cmd + f) to make a copy in the same position. Size it down to 320px by 320px and apply the same gradient that you have on the background. You&#8217;ll want to have the light blue on the bottom of this circle, and push it up past the middle.</p>
<p style="text-align: left;"><strong>Step 4. And a Third Foundation<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-388" title="Obama 4" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/04.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now copy in front (ctrl + f, <em>mac </em>cmd + f) again, size the circle down to 175px by 175px, and change the fill to white.</p>
<p style="text-align: left;"><strong>Step 5. Stripes<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-390" title="Obama 5" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/05.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now we have to make the gently sloping stripes that represent the bountiful fields of the American mid-west. We start to do this by making five rectangles, alternating red and white. You can start by making one rectangle, then hold down alt (<em>mac</em> option) and drag the shape to make another copy. Line them up, and repeat till you have your five stripes.</p>
<p style="text-align: left;"><strong>Step 6. Bendy Stripes<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-392" title="Obama 6" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/06.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now it&#8217;s time to get your warp on! Yeah! Hit ctrl + alt + shift + w (<em>mac </em>cmd + option + shift + w) or go to Object&gt;Envelope Distort&gt;Make With Warp&#8230; A dialogue box will pop up. Click the preview box, so you can see what you&#8217;re doing, and set distortion just the way you like it. I have mine set to Arc, with the bend at 25%, and the horizontal distortion at -50%.</p>
<p style="text-align: left;"><strong>Step 7. Bendy, Stripey Ground<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-394" title="Obama 7" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/07.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now you want to size up, rotate, and align your stripes. You want the top of your shape stopping slightly below the halfway mark of your innermost white circle, representing the sunrise of a new day or something. The bottom of the stripes need to cover the bottom of the inner blue circle.</p>
<p style="text-align: left;"><strong>Step 8. Pathfinding<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-395" title="Obama 8" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/08.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now we&#8217;re going to use an incredibly helpful tool that I&#8217;ve used in <a href="http://www.clickpopmedia.com/2008/03/27/fun-with-illustrator-happy-little-clouds/">other tutorial&#8217;s</a>. Say hello to the Pathfinder. Select the inner blue circle, copy it in front (ctrl + f, <em>mac</em> cmd + f) and move the copy to the front (ctr + shift + ], <em>mac</em> cmd + shift + ] ). Now select your stripes, expand (Object&gt;Envelope&gt;Expand) and ungroup (ctrl + shift + g, <em>mac </em>cmd + shift + g) them. Finally, select your stripes and the blue circle copy, and hit the crop button in the pathfinder window. You should end up with this:</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-397" title="Obama 9" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/09.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now, if you&#8217;re the boring type, you could stop right here with a perfectly functional Obama logo. If you&#8217;re the adverterous type, why don&#8217;t you continue with me?</p>
<p style="text-align: left;"><strong>Step 9.</strong> <strong>Depth and Shadow</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-398" title="Obama 10" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/10.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now you&#8217;re going to copy the big white circle from the back, and move it to the front (remember that one? ctrl + shift + ], <em>mac </em>cmd + shift + ] ). Here&#8217;s another really great illustrator thing, the gradient mesh. Object&gt;Create Gradient Mesh, then a dialogue window will popup. I set it to 3 columns and three rows. The more detail you want on your gradient, the more rows and columns you should set. For our purposes, 3 is fine.</p>
<p style="text-align: left;">Now we&#8217;re going to begin adding color to individual points on our mesh. Anywhere you want to darken (in my case the bottom left side of the logo) should be assigned darker shades.</p>
<p style="text-align: left;">In the transparency panel, we&#8217;re going to set the blend mode to multiply, and the opacity to 80.</p>
<p style="text-align: left;"><strong>Step 10. The Bright Horizon<br />
</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-399" title="Obama 11" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/11.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now we have to make the bright glow coming up from beyond the horizon. Any ideas on how to do this? If you said, &#8220;Let&#8217;s just use a simple white to black gradient with the blend mode set to lighten or screen.&#8221; you&#8217;d be wrong. Dead wrong.</p>
<p style="text-align: left;">Because of some problem, which I won&#8217;t pretend to understand, with working with CMYK in Illustrator, sometimes you can&#8217;t do lighten or screen gradients. Why don&#8217;t we just work with RGB then? Because the gradients look cruddy, that&#8217;s why.</p>
<p style="text-align: left;">The solution lies in something called an Opacity Mask. First select your inner blue circle, copy it, and move it to the front. Now set the fill to white and set the blend mode to <strong>lighten</strong>. While in the transparency panel, open up the more options menu and select <strong>Make Opacity Mask</strong>. Now with your opacity mask selected, make a rectangle with a white to black gradient fill. Keep in mind, the white area displays fully what&#8217;s underneath, and as you&#8217;re getting closer to black, it masks more and more.</p>
<p style="text-align: left;"><strong>Step 11. More Practice Masking</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-400" title="Obama 12" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/12.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">Now we need to set up another opacity mask for the &#8220;shine&#8221; cast by the rising sun. Copy, paste, and move to front The blue circle. Size it down slightly, and align it with the bottom of the original blue circle. Now Copy this circle, but don&#8217;t paste it yet. Set the blend mode of the white circle to <strong>Screen</strong><img src="file:///C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/moz-screenshot.jpg" alt="" />.</p>
<p style="text-align: left;">Now create an Opacity Mask on this layer, like you did for your last layer. With the opacity layer selected, paste the circle into it from your clipboard and set the fill to a black to white gradient.  Play around with your gradient till you get the effect you want.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-401" title="Obama 13" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/13.jpg" alt="" width="400" height="400" /><strong></strong></p>
<p style="text-align: left;"><strong>Step 12. The Finishing Touch</strong></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-403" title="Obama 14" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/14.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">To finish things off we&#8217;re going to add a little dropshadow. Select Effect&gt;Stylize&gt;Drop Shadow, set your settings, and go for it. I have the mode set to Multiply, opacity at 75%, x offset -10px, y offset 10px, and blur to 15px.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-404" title="Obama Logo" src="http://www.clickpopmedia.com/wp-content/uploads/2008/08/end.jpg" alt="" width="400" height="400" /></p>
<p style="text-align: left;">I hope you enjoyed this tutorial. In the next politically minded tutorial, I&#8217;m going to show you how to make a Shepard Farey inspired John McCain poster like <a href="http://www.clickpopmedia.com/projects/mccain/posters/McCain-Kids.pdf">this one:</a></p>
<p style="text-align: center;"><a href="http://www.clickpopmedia.com/projects/mccain/posters/McCain-Kids.pdf"><img class="alignnone" title="Kids" src="http://www.clickpopmedia.com/projects/mccain/McCain-Kids.jpg" alt="" width="300" height="388" /></a></p>
<p style="text-align: center;"><strong><a href="http://www.clickpopmedia.com/Freebies/obama.zip">Download the Obama Logo Asset Files Vectors</a></strong></p>
<p style="text-align: left;"><strong>GodBless:VQ</strong></p>
<p style="text-align: center;">
<h3>Other Posts</h3>
<ul class="related_post">
<li><a href="http://www.clickpopmedia.com/2008/02/28/relief-vector-pack/" title="Relief Vector Pack">Relief Vector Pack (1)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/03/22/transition-a-quick-fire-questionnaire-with-a-very-rad-band/" title="TRANSITION (a quick-fire questionnaire with a very rad band)">TRANSITION (a quick-fire questionnaire with a very rad band) (1)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/04/30/a-painting-collaborating/" title="A Painting Collaborating.">A Painting Collaborating. (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/04/09/clickpop-pixel-patterns-ornamental-wallpaper/" title="ClickPop Pixel Patterns - Ornamental Wallpaper">ClickPop Pixel Patterns - Ornamental Wallpaper (1)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.clickpopmedia.com/2008/08/07/vector-tutorial-obama-logo-2/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.clickpopmedia.com/2008/08/07/vector-tutorial-obama-logo-2/</feedburner:origLink></item>
		<item>
		<title>Free Textures from the UK</title>
		<link>http://feedproxy.google.com/~r/clickpopmedia/~3/C1CTV6nweC0/</link>
		<comments>http://www.clickpopmedia.com/2008/07/17/free-photoshop-textures-from-the-uk/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 00:56:05 +0000</pubDate>
		<dc:creator>Weese</dc:creator>
		
		<category><![CDATA[Download]]></category>

		<category><![CDATA[Free]]></category>

		<category><![CDATA[Textures]]></category>

		<category><![CDATA[Weese]]></category>

		<category><![CDATA[photoshop]]></category>

		<category><![CDATA[Add new tag]]></category>

		<category><![CDATA[Carpet Textures]]></category>

		<category><![CDATA[Flower Print Textures]]></category>

		<guid isPermaLink="false">http://www.clickpopmedia.com/?p=360</guid>
		<description><![CDATA[Sound Foam, Wicker, Carpet, Flower Wallpaper, Paintbrush Stroke and many more!


In the pursuit to keep things fresh with our photo editing, VQ and I are trying to regularly capture new Photoshop Textures wherever we are in the world.  For the next few weeks, I&#8217;ll be in England, so these textures are straight from the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Sound Foam, Wicker, Carpet, Flower Wallpaper, Paintbrush Stroke and many more!</p>
<p style="text-align: center;"><a href="http://www.clickpopmedia.com/wp-content/uploads/2008/07/texture_panel1.jpg"><img class="size-full wp-image-362 aligncenter" title="texture_panel1" src="http://www.clickpopmedia.com/wp-content/uploads/2008/07/texture_panel1.jpg" alt="" width="500" height="375" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">In the pursuit to keep things fresh with our photo editing, <a href="http://www.clickpopmedia.com/author/vq/" target="_blank">VQ</a> and I are trying to regularly capture new Photoshop Textures wherever we are in the world.  For the next few weeks, I&#8217;ll be in England, so these textures are straight from the UK to you, with love.  I hope you find them useful in your designs!</p>
<p style="text-align: left;">God bless you guys,</p>
<p style="text-align: left;">Weese</p>
<p style="text-align: left;">P.S.- If you&#8217;re looking for some free brick textures, download them <a href="http://www.clickpopmedia.com/2008/06/02/free-brick-textures/" target="_blank">here</a>!</p>
<p style="text-align: left;"><span id="more-360"></span></p>
<p style="text-align: left;"><strong>Floral</strong> pattern:</p>
<p style="text-align: center;"><a href="http://www.clickpopmedia.com/Freebies/textures/UK/floral.jpg"><img class="alignnone size-full wp-image-363" title="Floral Texture" src="http://www.clickpopmedia.com/wp-content/uploads/2008/07/floral_sm.jpg" alt="" width="450" height="300" /></a></p>
<p style="text-align: left;"><strong>Rock</strong></p>
<p style="text-align: center;"><a href="http://www.clickpopmedia.com/Freebies/textures/UK/rock.jpg"><img class="alignnone size-full wp-image-364" title="Rock Texture" src="http://www.clickpopmedia.com/wp-content/uploads/2008/07/rock_sm.jpg" alt="" width="450" height="300" /></a></p>
<p style="text-align: left;"><strong>Sound </strong>Foam</p>
<p style="text-align: center;"><a href="http://www.clickpopmedia.com/Freebies/textures/UK/soundfoam.jpg"><img class="alignnone size-full wp-image-366" title="Sound Foam Texture" src="http://www.clickpopmedia.com/wp-content/uploads/2008/07/soundfoam_sm.jpg" alt="" width="450" height="300" /></a></p>
<p style="text-align: left;"><strong>Woven </strong>Material</p>
<p style="text-align: center;"><a href="http://www.clickpopmedia.com/Freebies/textures/UK/woven.jpg"><img class="alignnone size-full wp-image-367" title="Woven Texture" src="http://www.clickpopmedia.com/wp-content/uploads/2008/07/woven_sm.jpg" alt="" width="450" height="300" /></a></p>
<p style="text-align: center;"><strong><a href="http://www.clickpopmedia.com/Freebies/textures/uk_textures.zip">Download the UK Textures (.jpg&#8217;s)</a></strong></p>
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://www.clickpopmedia.com/2008/06/24/how-to-make-a-spraypaint-panel/" title="How To Make A Spraypaint Panel">How To Make A Spraypaint Panel (1)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/06/18/water-buffalo-skull-vector/" title="Water Buffalo Skull Vector">Water Buffalo Skull Vector (0)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/05/02/free-vectors-messy-swirls/" title="Free Vectors: Messy Swirls">Free Vectors: Messy Swirls (3)</a></li>
<li><a href="http://www.clickpopmedia.com/2008/04/10/free-vector-laurels/" title="Free Vector - Laurels">Free Vector - Laurels (4)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.clickpopmedia.com/2008/07/17/free-photoshop-textures-from-the-uk/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.clickpopmedia.com/2008/07/17/free-photoshop-textures-from-the-uk/</feedburner:origLink></item>
	</channel>
</rss>
