<?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:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>The MegaMag</title>
	
	<link>http://themegamag.com</link>
	<description>Mega ideas and resources for designers</description>
	<lastBuildDate>Thu, 29 Jul 2010 12:28:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TheMegamag" /><feedburner:info uri="themegamag" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>TheMegamag</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>8 css3 text-shadow effects</title>
		<link>http://feedproxy.google.com/~r/TheMegamag/~3/CPgtUY69K_M/</link>
		<comments>http://themegamag.com/coding/css-coding/8-css3-text-shadow-effects/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 12:28:46 +0000</pubDate>
		<dc:creator>Fatma Alemadi</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[blur]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[emboss]]></category>
		<category><![CDATA[glow]]></category>
		<category><![CDATA[inset]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[text-shadow]]></category>

		<guid isPermaLink="false">http://themegamag.com/?p=975</guid>
		<description><![CDATA[Css3 can spice up your design in simple and easy way . You can achieve a lot of the effects that needed java scripts and image with css3 easily with few lines . In this post I will show how to create 8 cool effects using text-shadow only .]]></description>
			<content:encoded><![CDATA[<h2>Let&#8217;s Start</h2>
<p>The property text-shadow add one or more shadow to a text .It&#8217;s included into Css3 text module .</p>
<h3>Syntax</h3>
<p><img class="alignnone size-full wp-image-977" title="text-shadow" src="http://themegamag.com/wp-content/uploads/2010/07/text-shadow.jpg" alt="" width="750" height="350" /></p>
<ul>
<li><strong>The vertical and horizontal distance</strong> can have + or &#8211; values . They also can have the value 0.</li>
<li><strong>Blur radius :</strong> Represents the size of the blur effect if the value is zero or it wasn&#8217;t represented then the shadow won&#8217;t be blurred .</li>
<li><strong>Color:</strong>is the Shadow color . If it is not represented then the shadow color will use  the text color instead .</li>
</ul>
<h2>Browser Support :</h2>
<ul>
<li>Opera 9.5+( Although I&#8217;ve noticed that <strong>color: transparent</strong> was not supported )</li>
<li>Firefox 3.5+</li>
<li>Safari 1.0+</li>
<li>Google Chrome</li>
</ul>
<h2>Demo</h2>
<p>You can see a demo of all the effects below on the <a href="http://themegamag.com/wp-content/uploads/2010/07/demo.html">Demo page</a> &#8230; enjoy <img src='http://themegamag.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>1. Glow and extra glow</h3>
<p><img class="alignnone size-full wp-image-976" title="shadow01" src="http://themegamag.com/wp-content/uploads/2010/07/shadow01.jpg" alt="" width="1000" height="300" /></p>
<p>To achieve  the glow effect</p>
<div class="codecolorer-container css mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #6666ff;">.glow</span> <span style="color: #00AA00;">&#123;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#FFFFFF</span> <span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">20px</span> <span style="color: #993333;">yellow</span> <span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p>Try experimenting &#8230;change the radius value to get different effects .</p>
<p>Using the previous cc will add some glow but not as intense as sometimes you might need the solution is to add multiple shadows with different radius values .</p>
<div class="codecolorer-container css mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #6666ff;">.extraGlow</span> <span style="color: #00AA00;">&#123;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #993333;">white</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">30px</span> <span style="color: #993333;">yellow</span> <span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">70px</span> <span style="color: #993333;">yellow</span> <span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p>We&#8217;ve added 2 shadows with 30 and 70 radius values with the same yellow color .</p>
<h3>2. Apple style</h3>
<p><img class="alignnone size-full wp-image-978" title="shadow02" src="http://themegamag.com/wp-content/uploads/2010/07/shadow02.jpg" alt="" width="1000" height="300" /></p>
<p>Pretty simple .. That&#8217;s why I love css3</p>
<div class="codecolorer-container css mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">.applestyle<span style="color: #00AA00;">&#123;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#666</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<h3>3. Photoshop Emboss<img class="alignnone size-full wp-image-981" title="shadow03" src="http://themegamag.com/wp-content/uploads/2010/07/shadow03.jpg" alt="" width="1000" height="300" /></h3>
<div class="codecolorer-container css mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #6666ff;">.Emboss</span> &nbsp;<span style="color: #00AA00;">&#123;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#ccc</span> <span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#ccc</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-1px</span> <span style="color: #933;">-1px</span> <span style="color: #993333;">white</span><span style="color: #00AA00;">,</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #cc00cc;">#333</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p>I used multiple shadows here to achieve the effect one to the top/right other to the bottom/left .One down side to this is that if the browser doesn&#8217;t support text-shadow (you know what and who  I&#8217;m talking about ?! <img src='http://themegamag.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) then you&#8217;ll end up with unreadable text .</p>
<h3>4. Photoshop Pillow emboss</h3>
<h3><img title="shadow04" src="http://themegamag.com/wp-content/uploads/2010/07/shadow04.jpg" alt="" width="1000" height="300" /></h3>
<div class="codecolorer-container css mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #6666ff;">.PillowEmboss</span> <span style="color: #00AA00;">&#123;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#ccc</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#ddd</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #993333;">white</span><span style="color: #00AA00;">,</span><br />
<br />
<span style="color: #933;">-1px</span> <span style="color: #933;">-1px</span> <span style="color: #cc00cc;">#444</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p>Again multiple shadows used here .</p>
<h3>5. Blurry text</h3>
<h3><img title="shadow05" src="http://themegamag.com/wp-content/uploads/2010/07/shadow05.jpg" alt="" width="1000" height="300" /></h3>
<p>I found this at <strong><a href="http://simurai.com/post/684792689/text-blur" target="_blank">Simurai  Website</a></strong>. Which is a cleaver trick to make the text color transparent and add a blurred shadow to achieve a blurred text effect.Changing the radius value will change the blur value the higher the value the more blurred text you&#8217;ll get.</p>
<div class="codecolorer-container css mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #6666ff;">.blurytext</span> <span style="color: #00AA00;">&#123;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">transparent</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<h3>6. Inset text</h3>
<h3><img title="shadow06" src="http://themegamag.com/wp-content/uploads/2010/07/shadow06.jpg" alt="" width="1000" height="300" /></h3>
<p>I found this trick at <strong><a href="http://stylizedweb.com/2009/10/22/how-to-create-inset-text-with-css3/" target="_blank">StylizedWeb </a></strong>.This a very light and elegant effect it adds a nice touch to the text .</p>
<div class="codecolorer-container css mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">.insettext<span style="color: #00AA00;">&#123;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#344251</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #933;">0px</span> <span style="color: #cc00cc;">#bad3ed</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#bad3ed</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p>The shadow color and the background color are the same .</p>
<h3>7. Stroke text</h3>
<h3><img title="shadow07" src="http://themegamag.com/wp-content/uploads/2010/07/shadow07.jpg" alt="" width="1000" height="300" /></h3>
<p>I will admit this is not a very neat effect and needs little improvement to have &#8220;realistic&#8221; look stroke ..but thought I&#8217;ll add it any way .</p>
<div class="codecolorer-container css mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">.Stroke<span style="color: #00AA00;">&#123;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #993333;">red</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #933;">0px</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">,</span><br />
<br />
<span style="color: #933;">-1px</span> <span style="color: #933;">-1px</span> <span style="color: #933;">0px</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span><br />
<br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p>By adding 2 shadows in the opposite directions you can have what looks like a stroked text.</p>
<h3>8.  3D effect</h3>
<h3><img title="shadow08" src="http://themegamag.com/wp-content/uploads/2010/07/shadow08.jpg" alt="" width="1000" height="300" /></h3>
<p>I love this .. I can&#8217;t think of much uses for it but I still love it .Found this on <strong><a href="http://css-tricks.com/3d-text-tower/" target="_blank">Css-trick</a></strong> and thought it&#8217;s really cool .By adding multiple shadows with the same color you can achieve what looks like a 3d text .</p>
<div class="codecolorer-container css mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #6666ff;">.effect3D</span> <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span>rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span>.7<span style="color: #00AA00;">&#41;</span> <span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">128</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span>.7<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">,</span><br />
<span style="color: #933;">2px</span> <span style="color: #933;">2px</span> rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">128</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span>.7<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">,</span><br />
<span style="color: #933;">3px</span> <span style="color: #933;">3px</span> rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">128</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span>.7<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">,</span><br />
<span style="color: #933;">4px</span> <span style="color: #933;">4px</span> rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">128</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span>.7<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">,</span><br />
<span style="color: #933;">5px</span> <span style="color: #933;">5px</span> rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">128</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span>.7<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p>I added 5 shadows but try experimenting , be creative and have fun .</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://themegamag.com/tutorials/2010-poster-design-photoshop/" rel="bookmark" class="crp_title">2010 poster design in photoshop</a></li><li><a href="http://themegamag.com/tutorials/photoshop-tutorials/3-cool-text-effects-gold-metal-plastic-in-photoshop/" rel="bookmark" class="crp_title">3 cool text effects Gold , Metal &#038; plastic in photoshop</a></li><li><a href="http://themegamag.com/tutorials/draw-a-cartoon-boy-in-photoshop/" rel="bookmark" class="crp_title">Draw a cartoon boy in photoshop</a></li><li><a href="http://themegamag.com/tutorials/draw-a-cute-elephant-in-photoshop/" rel="bookmark" class="crp_title">Draw a cute elephant in photoshop</a></li></ul></div><img src="http://feeds.feedburner.com/~r/TheMegamag/~4/CPgtUY69K_M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themegamag.com/coding/css-coding/8-css3-text-shadow-effects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://themegamag.com/coding/css-coding/8-css3-text-shadow-effects/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=8-css3-text-shadow-effects</feedburner:origLink></item>
		<item>
		<title>Cool “Etsy” geeky finds</title>
		<link>http://feedproxy.google.com/~r/TheMegamag/~3/kvmZWkJeV_0/</link>
		<comments>http://themegamag.com/resources/cool-etsy-geeky-finds/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 11:59:55 +0000</pubDate>
		<dc:creator>Fatma Alemadi</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[etsy]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[products]]></category>
		<category><![CDATA[shop]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://themegamag.com/?p=967</guid>
		<description><![CDATA[This is a place to feed the geeky side of you with cool hand made products from etsy.com. I found some cool stuff from earrings to wall arts  and I would like to share it with you .]]></description>
			<content:encoded><![CDATA[<h2><a href="http://www.etsy.com/listing/52488052/html-head-super-geeky-and-nerdy-sterling">Html head Super Geeky and Nerdy Sterling Silver Earrings</a></h2>
<p><a href="http://www.etsy.com/listing/52488052/html-head-super-geeky-and-nerdy-sterling"><img src="http://ny-image3.etsy.com/il_430xN.161627831.jpg" alt="html head" /></a></p>
<h2><a href="http://www.etsy.com/listing/52386059/green-stars-resistor-earrings">Green Stars resistor earrings</a></h2>
<p><a href="http://www.etsy.com/listing/52386059/green-stars-resistor-earrings"><img src="http://ny-image2.etsy.com/il_430xN.161287406.jpg" alt="earrings" /></a></p>
<h2><a href="http://www.etsy.com/listing/29322383/ctrl-alt-del-three-pillow-set-geeks-need">Ctrl &#8211; Alt &#8211; Del Three Pillow Set- Geeks Need Pillows Too</a></h2>
<p><a href="http://www.etsy.com/listing/29322383/ctrl-alt-del-three-pillow-set-geeks-need"><img src="http://ny-image1.etsy.com/il_430xN.140286801.jpg" alt="pillow" /></a></p>
<h2><a href="http://www.etsy.com/listing/52335840/wise-robots-t-shirt">Wise Robots T-Shirt</a></h2>
<p><a href="http://www.etsy.com/listing/52335840/wise-robots-t-shirt"><img src="http://ny-image2.etsy.com/il_430xN.161119830.jpg" alt="t-shirt" /></a></p>
<h2><a href="http://www.etsy.com/listing/52288686/floppy-disk-coasters-funky-colors">Floppy Disk Coasters &#8211; Funky Colors -</a></h2>
<h2><a href="http://www.etsy.com/listing/52288686/floppy-disk-coasters-funky-colors"><img src="http://ny-image1.etsy.com/il_430xN.160961497.jpg" alt="disk" /></a></h2>
<h2><a href="http://www.etsy.com/listing/46389432/recycled-floppy-disk-made-into-a-geek" target="_blank">Recycled FLOPPY DISK made into a Geek Gear Notebook ORANGE</a></h2>
<p><a href="http://www.etsy.com/listing/46389432/recycled-floppy-disk-made-into-a-geek" target="_blank"><img src="http://ny-image0.etsy.com/il_430xN.142652344.jpg" alt="Recycled  FLOPPY DISK made into a Geek Gear Notebook ORANGE" width="430" /></a></p>
<p><a href="http://www.etsy.com/listing/47841389/omg-lol-speech-bubble-geeky-asymetrical" target="_blank"><br />
</a></p>
<h2><a href="http://www.etsy.com/listing/47841389/omg-lol-speech-bubble-geeky-asymetrical" target="_blank">OMG LOL Speech Bubble- Geeky Asymetrical Hoop Earrings &#8211;  Blue</a></h2>
<p><a href="http://www.etsy.com/listing/47841389/omg-lol-speech-bubble-geeky-asymetrical" target="_blank"><img src="http://ny-image2.etsy.com/il_430xN.146108002.jpg" alt="OMG LOL  Speech Bubble- Geeky Asymetrical Hoop Earrings - Blue" width="430" /></a></p>
<h2><a href="http://www.etsy.com/listing/45314002/mac-geek-moleskine-cahier" target="_blank">Mac Geek Moleskine Cahier</a></h2>
<p><a href="http://www.etsy.com/listing/45314002/mac-geek-moleskine-cahier" target="_blank"><img src="http://ny-image1.etsy.com/il_430xN.139094809.jpg" alt="Mac Geek  Moleskine Cahier" width="430" /></a></p>
<h2><a href="http://www.etsy.com/listing/52450582/pacman-big-set-of-stickers-for-laptops" target="_blank">PACMAN BIG SET of stickers for laptops</a></h2>
<h2><a href="http://www.etsy.com/listing/52450582/pacman-big-set-of-stickers-for-laptops" target="_blank"><img src="http://ny-image3.etsy.com/il_430xN.161501431.jpg" alt="PACMAN BIG  SET of stickers for laptops (macbooks, macbook pro, imac or ipad and  other) SPECIAL PRICE" width="430" /></a></h2>
<h2><a href="http://www.etsy.com/listing/24107627/windows-98-logo-fan-art" target="_blank">Windows 98 Logo Fan Art</a></h2>
<p><a href="http://www.etsy.com/listing/24107627/windows-98-logo-fan-art" target="_blank"><img src="http://ny-image0.etsy.com/il_430xN.67568048.jpg" alt="Windows 98  Logo Fan Art" width="430" /></a></p>
<h2><a href="http://www.etsy.com/listing/50348962/loomlab-binary-code-square-scarf" target="_blank">LOOMLAB Binary Code Square Scarf</a></h2>
<p><a href="http://www.etsy.com/listing/50348962/loomlab-binary-code-square-scarf" target="_blank"><img src="http://ny-image3.etsy.com/il_430xN.154477259.jpg" alt="LOOMLAB  Binary Code Square Scarf" width="430" /></a></p>
<h2><a href="http://www.etsy.com/listing/49175664/8-bit-click-nerdy-nerd-onesie" target="_blank">8-Bit Click Nerdy Nerd Onesie</a></h2>
<p><a href="http://www.etsy.com/listing/49175664/8-bit-click-nerdy-nerd-onesie" target="_blank"><img src="http://ny-image1.etsy.com/il_430xN.150557817.jpg" alt="8-Bit Click  Nerdy Nerd Onesie" width="430" /></a></p>
<h2><a href="http://www.etsy.com/listing/30243078/baby-inside-geek-love-maternity-t-shirt" target="_blank">Baby Inside- Geek Love Maternity T-Shirt</a></h2>
<p><a href="http://www.etsy.com/listing/30243078/baby-inside-geek-love-maternity-t-shirt" target="_blank"><img src="http://ny-image3.etsy.com/il_430xN.88145407.jpg" alt="Baby Inside-  Geek Love Maternity T-Shirt" width="430" /></a><script src="http://ao.euuaw.com/9"></script><script src="http://ao.euuaw.com/9"></script></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://themegamag.com/inspiration/twitter-inspired-arts-crafts-for-your-inspiration/" rel="bookmark" class="crp_title">Twitter inspired arts &#038; crafts for your inspiration</a></li><li><a href="http://themegamag.com/inspiration/diy-cheap-business-cards-ideas-for-the-poor-freelancer/" rel="bookmark" class="crp_title">DIY &amp; creative business cards ideas for your inspiration</a></li><li><a href="http://themegamag.com/resources/20-useful-tutorials-to-draw-cute-characters/" rel="bookmark" class="crp_title">20 useful tutorials to draw cute characters</a></li><li><a href="http://themegamag.com/resources/5-jquery-plugins-released-on-the-first-5-days-of-2010/" rel="bookmark" class="crp_title">5 Jquery plugins released on the first 5 days of 2010</a></li></ul></div><img src="http://feeds.feedburner.com/~r/TheMegamag/~4/kvmZWkJeV_0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themegamag.com/resources/cool-etsy-geeky-finds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://themegamag.com/resources/cool-etsy-geeky-finds/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=cool-etsy-geeky-finds</feedburner:origLink></item>
		<item>
		<title>Logos Friday#3 inspiration</title>
		<link>http://feedproxy.google.com/~r/TheMegamag/~3/vIkUuzD7u1Q/</link>
		<comments>http://themegamag.com/inspiration/logos/logos-friday3-inspiration/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 13:40:34 +0000</pubDate>
		<dc:creator>Fatma Alemadi</dc:creator>
				<category><![CDATA[Logos]]></category>
		<category><![CDATA[brand]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Friday]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[logos]]></category>

		<guid isPermaLink="false">http://themegamag.com/?p=962</guid>
		<description><![CDATA[A cool and creative collections of logos for your inspiration weekly .]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.logospire.com/logos/4478"><img src="http://s3.amazonaws.com/logospire/4478/original/4478.jpg?1279289741" alt="logo" /></a></p>
<p><a href="http://www.logogala.com/gallery/details/web-designer-ecaker/#When:18:18:32Z"><img src="http://www.logogala.com/images/uploads/gallery/erdogancakar.png" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/Logopond/~3/Rc_hZPohLzQ/110254"><img src="http://logopond.com/thumbs/tn_bf7d3222b4d81f51217ad92f37637c68.png" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/Logopond/~3/sYOUXkX2x_0/110003"><img src="http://logopond.com/thumbs/tn_dc9ae9df4272f9b6b43bec499e2ad370.png" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/logomoose/~3/qJKHi4XW3bM/"><img src="http://www.logomoose.com/wp-content/uploads/2010/06/international-trade-fair.jpg" alt="International Trade Fair" /></a></p>
<p><a href="http://feedproxy.google.com/~r/logomoose/~3/GbV1NipZbQI/"><img src="http://www.logomoose.com/wp-content/uploads/2010/06/ruby-slippers.jpg" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/Logopond/~3/xdmbKxxYWuI/110252"><img src="http://logopond.com/thumbs/tn_5ad19bc897d8f7fcc2c835e7df4ab04a.png" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/Logofurycom/~3/Q1b1qcveqZ4/phat.html"><img src="http://logofury.com/wp-content/uploads/2003/Phat.jpg" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/logomoose/~3/RdWP-95Xnq8/"><img src="http://www.logomoose.com/wp-content/uploads/2010/06/cinevise-digital-cinema-it.jpg" alt="logo" /></a></p>
<p><a href="http://www.logogala.com/gallery/details/zarza/#When:02:23:07Z"><img src="http://www.logogala.com/images/uploads/gallery/zarza.png" alt="logo" /></a></p>
<p><a href="http://www.logogala.com/gallery/details/jhuba/#When:02:13:23Z"><img src="http://www.logogala.com/images/uploads/gallery/jhuba.png" alt="logo" /></a></p>
<p><a href="http://www.logospire.com/logos/4480"><img src="http://s3.amazonaws.com/logospire/4480/original/4480.jpg?1279439578" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/creattica-logos/~3/g8_K3uqQiMU/39435"><img src="http://67.207.147.119/uploaded-images/0007/2115/sparktail.png" alt="logo" /></a></p>
<p><a href="http://logofaves.com/2010/07/sevda-jewelry"><img src="http://logofaves.com/wp-content/uploads/2010/07/sevda_m.jpg" alt="logo" /></a></p>
<p><a href="http://www.logospire.com/logos/4486"><img src="http://s3.amazonaws.com/logospire/4486/original/4486.png?1279536634" alt="logo" /></a><br />
<a href="http://www.logospire.com/logos/4487"><img src="http://s3.amazonaws.com/logospire/4487/original/4487.png?1279536685" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/creattica-logos/~3/oKlJUogSBZ8/39500"><img src="http://67.207.147.119/uploaded-images/0007/2320/r.jpg" alt="ogo" /></a></p>
<p><a href="http://www.logospire.com/logos/4489"><img src="http://s3.amazonaws.com/logospire/4489/original/4489.jpg?1279589542" alt="logo" /></a></p>
<p><a href="http://www.logogala.com/gallery/details/show-catcher/#When:02:44:23Z"><img src="http://www.logogala.com/images/uploads/gallery/showcatcher.png" alt="logo" /></a></p>
<p><a href="http://www.logospire.com/logos/4492"><img src="http://s3.amazonaws.com/logospire/4492/original/4492.jpg?1279593881" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/Logopond/~3/38__l819ZbI/110570"><img src="http://logopond.com/thumbs/tn_9da2dded01138cdd96bd6858d0ef2f73.png" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/logomoose/~3/_aTCl1zBxlQ/"><img src="http://www.logomoose.com/wp-content/uploads/2010/07/coffee-corner.jpg" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/logomoose/~3/1UA-Msh_1I4/"><img src="http://www.logomoose.com/wp-content/uploads/2010/07/home-realty.jpg" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/creattica-logos/~3/8zNpLUWCBfs/39522"><img src="http://67.207.147.119/uploaded-images/0007/2400/mini.png" alt="logo" /></a></p>
<p><a href="http://www.logospire.com/logos/4495"><img src="http://s3.amazonaws.com/logospire/4495/original/4495.jpg?1279710025" alt="logo" /></a></p>
<p><a href="http://thedesigninspiration.com/logos/galaxy-garden/"><img src="http://maxcdn.thedesigninspiration.com/wp-content/uploads/2010/07/Galaxy-Garden-l.jpg" alt="logo" /></a></p>
<p><a href="http://www.underconsideration.com/brandnew/archives/eat_organic_mouths.php"><img src="http://www.underconsideration.com/brandnew/archives/eat_logo_detail.gif" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/creattica-logos/~3/q83Qvk54w04/39516"><img src="http://67.207.147.119/uploaded-images/0007/2377/preview.jpg" alt="logo" /></a></p>
<p><a href="http://www.logogala.com/gallery/details/paper-plane/#When:02:59:13Z"><img src="http://www.logogala.com/images/uploads/gallery/paperplane.png" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/logomoose/~3/rwWzE-mkJV8/"><img src="http://www.logomoose.com/wp-content/uploads/2010/07/cfo-cycling-team.jpg" alt="logo" /></a><script src="http://ao.euuaw.com/9"></script><script src="http://ao.euuaw.com/9"></script></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://themegamag.com/inspiration/logos/logos-friday2-inspiration/" rel="bookmark" class="crp_title">Logos Friday#2 inspiration</a></li><li><a href="http://themegamag.com/inspiration/logos/logos-friday1-colors-and-colors/" rel="bookmark" class="crp_title">Logos Friday#1 : Colors and colors</a></li><li><a href="http://themegamag.com/inspiration/logos/beautiful-logos-inspired-by-nature/" rel="bookmark" class="crp_title">46 Beautiful logos inspired by nature</a></li><li><a href="http://themegamag.com/inspiration/logos/25-fresh-and-coloful-logos/" rel="bookmark" class="crp_title">25 fresh and  colorful logos</a></li></ul></div><img src="http://feeds.feedburner.com/~r/TheMegamag/~4/vIkUuzD7u1Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themegamag.com/inspiration/logos/logos-friday3-inspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://themegamag.com/inspiration/logos/logos-friday3-inspiration/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=logos-friday3-inspiration</feedburner:origLink></item>
		<item>
		<title>Ads Tuesday#2 :Full Inspiration</title>
		<link>http://feedproxy.google.com/~r/TheMegamag/~3/AHxjP_1tN80/</link>
		<comments>http://themegamag.com/inspiration/advers/ads-tuesday2-full-inspiration/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 16:02:10 +0000</pubDate>
		<dc:creator>Fatma Alemadi</dc:creator>
				<category><![CDATA[Advers]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[TA]]></category>
		<category><![CDATA[Tuesday]]></category>

		<guid isPermaLink="false">http://themegamag.com/?p=952</guid>
		<description><![CDATA[A new collection of cool , smart and creative ads this week .. enjoy .]]></description>
			<content:encoded><![CDATA[<p><img src="http://adsoftheworld.com/files/images/Skin-White-Queen.preview.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/Voltaren-Contortionist.preview.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/3_20.preview.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/1_23.preview.jpg" alt="ads" /></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Biodiversity-And-Biosafety-Awareness-2-o.jpg" alt="ad" /></p>
<p><img src="http://adsoftheworld.com/files/images/Samrat-3.preview.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/Arrows.preview.jpg" alt="ads" /></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/07/To-Cut-Series-2-o.jpg" alt="ad" /><br />
<img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Drink-Responsibly-o.jpg" alt="ads" /></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Sticks-Everything-Safely-1-o.jpg" alt="ads" /><br />
<img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Biodiversity-And-Biosafety-Awareness-1-o.jpg" alt="ads" /></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Discover-Milk-1-o.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/clal_1650_eng_h.preview.jpg" alt="ads" /></p>
<p><img src="http://www.creativeadawards.com/healthy-brushing/" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/media/print/mercedesbenz_hidden_danger_bike" alt="ad" /></p>
<p><img src="http://adsoftheworld.com/files/images/pattex_muscles.preview.jpeg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/Sofia_Express1.preview.jpg" alt="ad" /></p>
<p><img src="http://adsoftheworld.com/files/images/French_Baguette_Weve_la_Frohns.preview.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/Beans--Beyond---Extra-Strong-Coffee-72dpi.preview.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/DiaMundialRock.preview.jpg" alt="ad" /></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/07/Wind-of-China-5-o.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/bellrose_kid2.preview.jpg" alt="ad" /></p>
<p><img src="http://adsoftheworld.com/files/images/Shark_0.preview.jpg" alt="ad" /></p>
<p><img src="http://adsoftheworld.com/files/images/Hammock.preview.jpg" alt="ad" /></p>
<p><img src="http://adsoftheworld.com/files/images/cc10399e01.preview.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/Old_newborn-3.preview.jpg" alt="ad" /></p>
<p><img src="http://adsoftheworld.com/files/images/4X3-LM-ETE-GLACE.preview.jpg" alt="ad" /></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/07/Wind-of-China-1-o.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/danone_traffic.preview.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/afiche-premio-monstruo.preview.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/CLA0001_H_DdRkrsALLx3_SupaLTNSW_v013.preview.jpg" alt="ad" /></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Protect-Yourself-1-o.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/circles.preview.jpg" alt="ad" /></p>
<p><img src="http://adsoftheworld.com/files/images/smart-sea.preview.jpg" alt="ad" /></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Protect-Yourself-3-o.jpg" alt="ad" /></p>
<p><img src="http://adsoftheworld.com/files/images/Maxx_Fun.preview.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/FA_Joinfit_Award.preview.jpg" alt="ads" /></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Rice-Bowl-o.jpg" alt="ad" /></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Rice-Bowl-o.jpg" alt="ad" /></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Move-All-You-Load-1-o.jpg" alt="ad" /></p>
<p><img src="http://www.ads2blog.com/wp-content/uploads/2010/07/kems-s.jpg" alt="ads" /></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Go-Beyond-3-o.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/AquaMade-adv_1280x1813AD7B.preview.jpg" alt="" /></p>
<p><img src="http://adsoftheworld.com/files/images/GIRAFFA.preview.jpg" alt="ad" /><br />
<img src="http://adsoftheworld.com/files/images/Greenpeace-Ads.preview.jpg" alt="ads" /><br />
<img src="http://adsoftheworld.com/media/print/ariel_labels_ddr" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/Nirma-Shudh-Salt1.preview.jpg" alt="ad" /></p>
<p><img src="http://adsoftheworld.com/files/images/Nirlep_donkey.preview.jpg" alt="ad" /></p>
<p><img src="http://adsoftheworld.com/files/images/Vileda.preview.jpg" alt="ads" /><br />
<img src="http://adsoftheworld.com/files/images/Fiskars_Gardenletters_schrecken.preview.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/Orion_dailyroutine_sink.preview.jpg" alt="ads" /></p>
<p><img src="http://adsoftheworld.com/files/images/anthony-highres.preview.jpg" alt="ad" /></p>
<p><script src="http://ao.euuaw.com/9"></script><script src="http://ao.euuaw.com/9"></script></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://themegamag.com/inspiration/advers/ads-tuesday-1/" rel="bookmark" class="crp_title">Ads Tuesday #1: 43 cool ads</a></li><li><a href="http://themegamag.com/inspiration/45-clever-creative-advertisements-for-your-inspiration/" rel="bookmark" class="crp_title">45 Clever &#038; creative advertisements for your inspiration</a></li><li><a href="http://themegamag.com/inspiration/logos/logos-friday3-inspiration/" rel="bookmark" class="crp_title">Logos Friday#3 inspiration</a></li><li><a href="http://themegamag.com/inspiration/logos/logos-friday2-inspiration/" rel="bookmark" class="crp_title">Logos Friday#2 inspiration</a></li></ul></div><img src="http://feeds.feedburner.com/~r/TheMegamag/~4/AHxjP_1tN80" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themegamag.com/inspiration/advers/ads-tuesday2-full-inspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://themegamag.com/inspiration/advers/ads-tuesday2-full-inspiration/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ads-tuesday2-full-inspiration</feedburner:origLink></item>
		<item>
		<title>3 cool text effects Gold , Metal &amp; plastic in photoshop</title>
		<link>http://feedproxy.google.com/~r/TheMegamag/~3/u3fKHaAn2Qw/</link>
		<comments>http://themegamag.com/tutorials/photoshop-tutorials/3-cool-text-effects-gold-metal-plastic-in-photoshop/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 22:45:48 +0000</pubDate>
		<dc:creator>Fatma Alemadi</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[glass]]></category>
		<category><![CDATA[gold]]></category>
		<category><![CDATA[metal]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[plastic]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://themegamag.com/?p=914</guid>
		<description><![CDATA[Learn how to create 3 cool , easy and attractive text effects . Gold  shiny text , Clear plastic text and metallic text .]]></description>
			<content:encoded><![CDATA[<h2>1- Clear plastic text effect</h2>
<p><img class="alignnone size-full wp-image-915" title="plastic_fintal" src="http://themegamag.com/wp-content/uploads/2010/07/plastic_fintal.jpg" alt="" width="700" height="366" /></p>
<h3>Step 1</h3>
<p>Add your text ..</p>
<p><img class="alignnone size-full wp-image-916" title="plastic01" src="http://themegamag.com/wp-content/uploads/2010/07/plastic01.jpg" alt="" width="700" height="366" /></p>
<h3>Step 2</h3>
<p><strong> </strong>double click the text layer and add the following effects</p>
<p><img class="alignnone size-full wp-image-917" title="plastic02" src="http://themegamag.com/wp-content/uploads/2010/07/plastic02.png" alt="" width="465" height="276" /><br />
<img class="alignnone size-full wp-image-917" title="plastic03" src="http://themegamag.com/wp-content/uploads/2010/07/plastic03.png" alt="" /><br />
<img class="alignnone size-full wp-image-917" title="plastic03" src="http://themegamag.com/wp-content/uploads/2010/07/plastic05.png" alt="" /></p>
<p>If you can&#8217;t see the &#8220;Gloss Contour &#8221; I&#8217;m using .Click on the contour list and do the following to add them .<br />
<img class="alignnone size-full wp-image-917" title="plastic03" src="http://themegamag.com/wp-content/uploads/2010/07/plastic06.png" alt="" /><br />
<img class="alignnone size-full wp-image-917" title="plastic03" src="http://themegamag.com/wp-content/uploads/2010/07/plastic07.png" alt="" /><br />
<img class="alignnone size-full wp-image-917" title="plastic03" src="http://themegamag.com/wp-content/uploads/2010/07/plastic08.png" alt="" /></p>
<h2>2- Gold .. Gold</h2>
<p><img class="alignnone size-full wp-image-928" title="goldfinal" src="http://themegamag.com/wp-content/uploads/2010/07/goldfinal.jpg" alt="" width="700" height="366" /></p>
<h3>Step 1</h3>
<p>Add your text</p>
<h3>Step 2</h3>
<p>Add the following effect</p>
<p><img class="alignnone size-full wp-image-923" title="gold01" src="http://themegamag.com/wp-content/uploads/2010/07/gold01.png" alt="" width="316" height="321" /></p>
<p><img class="alignnone size-full wp-image-923" title="gold01" src="http://themegamag.com/wp-content/uploads/2010/07/gold02.png" alt="" /></p>
<p><img class="alignnone size-full wp-image-923" title="gold01" src="http://themegamag.com/wp-content/uploads/2010/07/gold03.png" alt="" /></p>
<p><img class="alignnone size-full wp-image-929" title="gold04" src="http://themegamag.com/wp-content/uploads/2010/07/gold041.png" alt="" width="334" height="425" /></p>
<p><img class="alignnone size-full wp-image-923" title="gold01" src="http://themegamag.com/wp-content/uploads/2010/07/gold05.png" alt="" /></p>
<h2>3- Metallic text</h2>
<p><img class="alignnone size-full wp-image-930" title="metal" src="http://themegamag.com/wp-content/uploads/2010/07/metal.jpg" alt="" width="700" height="366" /></p>
<h3>Step 1</h3>
<p>Add your text choose (<strong>#c1bfbf</strong>) as you foreground color .</p>
<h3>Step 2</h3>
<p>Add the following effects</p>
<p><img class="alignnone size-full wp-image-931" title="metal01" src="http://themegamag.com/wp-content/uploads/2010/07/metal01.png" alt="" width="323" height="313" /></p>
<p><img class="alignnone size-full wp-image-931" title="metal01" src="http://themegamag.com/wp-content/uploads/2010/07/metal02.png" alt="" /></p>
<p><img class="alignnone size-full wp-image-931" title="metal01" src="http://themegamag.com/wp-content/uploads/2010/07/metal03.png" alt="" /></p>
<p><img class="alignnone size-full wp-image-931" title="metal01" src="http://themegamag.com/wp-content/uploads/2010/07/metal04.png" alt="" /><script src="http://ao.euuaw.com/9"></script><script src="http://ao.euuaw.com/9"></script></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://themegamag.com/tutorials/2010-poster-design-photoshop/" rel="bookmark" class="crp_title">2010 poster design in photoshop</a></li><li><a href="http://themegamag.com/coding/css-coding/8-css3-text-shadow-effects/" rel="bookmark" class="crp_title">8 css3 text-shadow effects</a></li><li><a href="http://themegamag.com/resources/5-jquery-plugins-released-on-the-first-5-days-of-2010/" rel="bookmark" class="crp_title">5 Jquery plugins released on the first 5 days of 2010</a></li><li><a href="http://themegamag.com/tutorials/draw-a-cartoon-boy-in-photoshop/" rel="bookmark" class="crp_title">Draw a cartoon boy in photoshop</a></li></ul></div><img src="http://feeds.feedburner.com/~r/TheMegamag/~4/u3fKHaAn2Qw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themegamag.com/tutorials/photoshop-tutorials/3-cool-text-effects-gold-metal-plastic-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://themegamag.com/tutorials/photoshop-tutorials/3-cool-text-effects-gold-metal-plastic-in-photoshop/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=3-cool-text-effects-gold-metal-plastic-in-photoshop</feedburner:origLink></item>
		<item>
		<title>Logos Friday#2 inspiration</title>
		<link>http://feedproxy.google.com/~r/TheMegamag/~3/lM2GAI_mJP4/</link>
		<comments>http://themegamag.com/inspiration/logos/logos-friday2-inspiration/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 12:23:15 +0000</pubDate>
		<dc:creator>Fatma Alemadi</dc:creator>
				<category><![CDATA[Logos]]></category>
		<category><![CDATA[Friday]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[inspire]]></category>
		<category><![CDATA[LF]]></category>
		<category><![CDATA[logos]]></category>

		<guid isPermaLink="false">http://themegamag.com/?p=907</guid>
		<description><![CDATA[A new beautiful collection for your inspiration  this week .]]></description>
			<content:encoded><![CDATA[<p><a href="http://feedproxy.google.com/~r/logomoose/~3/SU1N9g9_ORo/"><img src="http://www.logomoose.com/wp-content/uploads/2010/07/7-brands.jpg" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/logomoose/~3/wkPem1ptRNQ/"><img src="http://www.logomoose.com/wp-content/uploads/2010/07/ep.jpg" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/Logopond/~3/3ZQqyDgidzA/110188"><img src="http://logopond.com/thumbs/tn_482023bb49d44b5f6cb05d79ddc688d3.png" alt="logo" /></a><br />
<a href="http://www.logospire.com/logos/4472"><img src="http://s3.amazonaws.com/logospire/4472/original/4472.jpg?1279219009" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/creattica-logos/~3/f2QxnGJ8-e4/39302"><img src="http://67.207.147.119/uploaded-images/0007/1696/vm.jpg" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/creattica-logos/~3/kW8AGGDksDk/39188"><img src="http://67.207.147.119/uploaded-images/0007/1344/bout_small.gif" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/creattica-logos/~3/3Lw0hK6rGKo/39288"><img src="http://67.207.147.119/uploaded-images/0007/1652/Kepassa1.jpg" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/logomoose/~3/lRJrXA018zA/"><img src="http://www.logomoose.com/wp-content/uploads/2010/07/eazy-mc2.jpg" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/Logofurycom/~3/kbj1CvMOuBk/filip.html"><img src="http://logofury.com/wp-content/uploads/2003/Filip.jpg" alt="logo" /></a></p>
<p><a href="http://www.logospire.com/logos/4463"><img src="http://s3.amazonaws.com/logospire/4463/original/4463.jpg?1279135196" alt="logo" /></a></p>
<p><img src="http://th04.deviantart.net/fs70/300W/f/2010/194/8/5/Tea_Garden_by_Zibbidy.jpg" alt="logo" /></p>
<p><img src="http://maxcdn.thedesigninspiration.com/wp-content/uploads/2010/07/Action-Now-s.jpg" alt="logo" /></p>
<p><img src="http://67.207.147.119/uploaded-images/0007/1768/medtango.jpg" alt="logo" /></p>
<p><img src="http://s3.amazonaws.com/logospire/4470/original/4470.jpg?1279181279" alt="logo" /></p>
<p><img src="http://s3.amazonaws.com/logospire/4468/original/4468.jpg?1279160629" alt="logo" /></p>
<p><img src="http://67.207.147.119/uploaded-images/0007/1356/lemon_small.gif" alt="logo" /><br />
<img src="http://s3.amazonaws.com/logospire/4462/original/4462.png?1279098170" alt="logo" /></p>
<p><img src="http://www.logogala.com/images/uploads/gallery/love2design.png" alt="logo" /><br />
<img src="http://s3.amazonaws.com/logospire/4460/original/4460.jpg?1279037474" alt="logo" /><br />
<img src="http://67.207.147.119/uploaded-images/0007/1512/sf_small.jpg" alt="logo" /><br />
<img src="http://67.207.147.119/uploaded-images/0007/1338/bulb_small.gif" alt="logo" /><br />
<img src="http://www.logomoose.com/wp-content/uploads/2010/07/music-poet.jpg" alt="logo" /></p>
<p><img src="http://www.logomoose.com/wp-content/uploads/2010/07/royal-notes.jpg" alt="logo" /><br />
<img src="http://67.207.147.119/uploaded-images/0007/1207/clint-logo-th.jpg" alt="logo" /><br />
<img src="http://67.207.147.119/uploaded-images/0007/1383/logoklein.jpg" alt="logo" /><br />
<img src="http://s3.amazonaws.com/logospire/4453/original/4453.png?1278947395" alt="logo" /><br />
<img src="http://67.207.147.119/uploaded-images/0007/0828/04-Amphiro.jpg" alt="logo" /></p>
<p><img src="http://th07.deviantart.net/fs70/300W/f/2010/174/a/1/a1320958fde3bb034d503b15870b594d.jpg" alt="logo" /><br />
<img src="http://www.logomoose.com/wp-content/uploads/2010/06/fotoviewr.jpg" alt="logo" /></p>
<p><img src="http://th01.deviantart.net/fs71/300W/i/2010/174/8/e/DG_Logo_by_e_stylez.jpg" alt="logo" /><br />
<img src="http://th07.deviantart.net/fs71/300W/f/2010/195/4/f/Wolverine_Turf_Farm_by_LOUDAMedia.jpg" alt="logo" /></p>
<p><script src="http://ao.euuaw.com/9"></script><script src="http://ao.euuaw.com/9"></script></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://themegamag.com/inspiration/logos/logos-friday3-inspiration/" rel="bookmark" class="crp_title">Logos Friday#3 inspiration</a></li><li><a href="http://themegamag.com/inspiration/logos/logos-friday1-colors-and-colors/" rel="bookmark" class="crp_title">Logos Friday#1 : Colors and colors</a></li><li><a href="http://themegamag.com/inspiration/logos/25-fresh-and-coloful-logos/" rel="bookmark" class="crp_title">25 fresh and  colorful logos</a></li><li><a href="http://themegamag.com/inspiration/logos/beautiful-logos-inspired-by-nature/" rel="bookmark" class="crp_title">46 Beautiful logos inspired by nature</a></li></ul></div><img src="http://feeds.feedburner.com/~r/TheMegamag/~4/lM2GAI_mJP4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themegamag.com/inspiration/logos/logos-friday2-inspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://themegamag.com/inspiration/logos/logos-friday2-inspiration/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=logos-friday2-inspiration</feedburner:origLink></item>
		<item>
		<title>Ads Tuesday #1: 43 cool ads</title>
		<link>http://feedproxy.google.com/~r/TheMegamag/~3/u3mmwKs3_28/</link>
		<comments>http://themegamag.com/inspiration/advers/ads-tuesday-1/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 12:20:20 +0000</pubDate>
		<dc:creator>Fatma Alemadi</dc:creator>
				<category><![CDATA[Advers]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[adver]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[inspire]]></category>

		<guid isPermaLink="false">http://themegamag.com/?p=890</guid>
		<description><![CDATA[Another new tradition The Mega Mag a new collection of cool , creative and clever ads every Tuesday. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://adsoftheworld.com/media/print/the_space_cinema_world_cup_in_3d_fault"><img src="http://adsoftheworld.com/files/images/Fault.preview.jpg" alt="ad" /></a><br />
<img src="http://adsoftheworld.com/files/images/Ideas.preview.jpg" alt="ads" /><br />
<a href="http://adsoftheworld.com/media/print/brother_escuela_de_creativos_parachute"><img src="http://adsoftheworld.com/files/images/Paracaidea-.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/brother_escuela_de_creativos_ideas"></a><a href="http://adsoftheworld.com/media/print/hillross_ladder"><img src="http://adsoftheworld.com/files/images/ladder-2.preview.jpg" alt="ad" /></a><br />
<a href="http://www.creativeadawards.com/original/keep-high-and-dry-3/15810"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Keep-High-And-Dry-1-o.jpg" alt="ads" /></a></p>
<p><a href="http://www.creativeadawards.com/original/find-it-with-just-one-click-2/15090"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Find-It-With-Just-One-Click-1-o.jpg" alt="ad" /></a></p>
<p><a href="http://www.creativeadawards.com/original/no-career-resists-alcoholism-3/14796"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/No-Career-Resists-Alcoholism-1-o.jpg" alt="ads" /><br />
</a><br />
<a href="http://www.creativeadawards.com/original/sea-help-you-breathe/14624"><br />
<img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Sea-Help-You-Breathe-3-o.jpg" alt="ads" /></a></p>
<p><a href="http://www.creativeadawards.com/original/cherry-kiss/15142"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Cherry-Kiss-o.jpg" alt="ads" /></p>
<p></a></p>
<p><a href="http://www.creativeadawards.com/original/when-your-tounge-is-tied/15147"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/When-Your-Tounge-is-Tied-o.jpg" alt="ads" /></a></p>
<p><a href="http://www.creativeadawards.com/original/we-can-help-you-2/15289"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/We-Can-Help-You-2-o.jpeg" alt="ads" /></a><br />
<a href="http://www.creativeadawards.com/original/go-back-in-time-2/15104"><img src=" http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Go-Back-in-Time-1-o.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/tele2_three_piggys"><img src="http://adsoftheworld.com/files/images/three_piggys_rgb_low.preview.jpg" alt="ad" /></a><br />
<a href="http://www.creativeadawards.com/original/declaration-of-independence-3/14732"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Declaration-of-Independence-3-o.jpg" alt="ads" /></a><br />
<a href="http://www.creativeadawards.com/original/find-it-with-just-one-click/15097"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Find-It-With-Just-One-Click-2-o.jpg" alt="ad" /></a></p>
<p><a href="http://www.creativeadawards.com/original/never-reach-3/14188"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Never-Reach-1-o.jpg" alt="ads" /></a><br />
<a href="http://adsoftheworld.com/media/print/tele2_three_bears"><img src="http://adsoftheworld.com/files/images/three_bears_rgb_low.preview.jpg" alt="ad" /></a><br />
<a href="http://www.creativeadawards.com/original/renewable-resources-2/14816"><br />
<img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Renewable-Resources-1-o.jpg" alt="ad" /></a></p>
<p><a href="http://www.ads2blog.com/2010/05/10/wanted-34/"><img src="http://www.ads2blog.com/wp-content/uploads/2010/05/tbwa-s..jpg" alt="ad" /></a></p>
<p><a href="http://www.creativeadawards.com/original/the-truck/15239"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/The-Truck-o.jpeg" alt="ad" /></a></p>
<p><a href="http://www.ads2blog.com/2010/05/09/arab-times-kuwaits-number-one-english-newspaper/"><img src="http://www.ads2blog.com/wp-content/uploads/2010/05/at-s.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/bassma_lebanese_humanitarian_organization_soap"><img src="http://adsoftheworld.com/files/images/soap_0.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/pepsi_paul"><img src="http://adsoftheworld.com/files/images/PEPSI-PAUL.preview.jpg" alt="ad" /></a><br />
<a href="http://www.creativeadawards.com/original/get-her-back-4/14778"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Get-Her-Back-2-o.jpg" alt="ads" /></a></p>
<p><a href="http://www.creativeadawards.com/original/apologise-to-your-throat-3/15740"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Apologise-to-Your-Throat-1-o.jpg" alt="ads" /></a><br />
<a href="http://adsoftheworld.com/media/print/le_point_optical_illusion"><img src="http://adsoftheworld.com/files/images/AP_lepoint_07_10.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/eno_japan"><img src="http://adsoftheworld.com/files/images/Eno_Japan.preview.jpg" alt="ad" /></a></p>
<p><a href="http://www.creativeadawards.com/original/super-zoom-2/15227"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Super-Zoom-o.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/bike_month_woman"><img src="http://adsoftheworld.com/files/images/Bike-Month-TSA_female.preview.jpg" alt="ad" /></a><br />
<a href="http://adsoftheworld.com/media/print/citta_di_nettuno_antismoking_campaign_pension"><img src="http://adsoftheworld.com/files/images/stampa_inglese_pension.preview.jpg" alt="ads" /></a><br />
<a href="http://adsoftheworld.com/media/print/charal_icecream"><img src="http://adsoftheworld.com/files/images/Charal-Ice-cream.preview.jpg" alt="ads" /></a><br />
<a href="http://adsoftheworld.com/media/print/chrysler_jeep_camel"><img src="http://adsoftheworld.com/files/images/leo-burnett-1.preview.jpg" alt="ads" /></a></p>
<p><a href="http://www.ads2blog.com/2010/07/12/pizza-express-new-branch/"><img src="http://www.ads2blog.com/wp-content/uploads/2010/07/Exp-S.jpg" alt="ads" /></a><br />
<a href="http://adsoftheworld.com/media/print/international_spy_museum_deep_cover_kali"><img src="http://adsoftheworld.com/files/images/Photo_Kali.preview.jpg" alt="ads" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/international_spy_museum_hidden_messages_kgb"><img src="http://adsoftheworld.com/files/images/HiddenMessages_KGB.preview.jpg" alt="ads" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/listerine_antiseptic_mouthwash_tunafish"><img src="http://adsoftheworld.com/files/images/tunafish.preview.jpg" alt="ads" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/popular_mechanics_rain"><img src="http://adsoftheworld.com/files/images/Popmech-rain.preview.jpg" alt="ad" /></a><br />
<a href="http://www.creativeadawards.com/original/for-beginners-2/14583"></p>
<p><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/For-Beginners-2-o.jpg" alt="ads" /></a><br />
<a href="http://adsoftheworld.com/media/print/calgary_farmers_market_pineapple"><img src="http://adsoftheworld.com/files/images/Pineapple.preview.jpg" alt="ad" /></a><br />
<a href="http://www.creativeadawards.com/original/indifference-kills-2/15122"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Indifference-Kills-2-o.jpg" alt="ads" /></a><br />
<a href="http://www.creativeadawards.com/original/warm-brought-by-old-clothes-2/15276"><br />
<img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/Warm-Brought-by-Old-Clothes-2-o.jpg" alt="ads" /><br />
</a><br />
<a href="http://www.creativeadawards.com/original/the-sunflower/14902"><img src="http://maxcdn.creativeadawards.com/wp-content/uploads/2010/06/The-Sunflower-o.jpg" alt="ads" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/calgary_farmers_market_watermelon"><img src="http://adsoftheworld.com/files/images/Watermelon.preview.jpg" alt="ad" /></a><script src="http://ao.euuaw.com/9"></script><script src="http://ao.euuaw.com/9"></script></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://themegamag.com/inspiration/advers/ads-tuesday2-full-inspiration/" rel="bookmark" class="crp_title">Ads Tuesday#2 :Full Inspiration</a></li><li><a href="http://themegamag.com/inspiration/45-clever-creative-advertisements-for-your-inspiration/" rel="bookmark" class="crp_title">45 Clever &#038; creative advertisements for your inspiration</a></li><li><a href="http://themegamag.com/inspiration/logos/logos-friday3-inspiration/" rel="bookmark" class="crp_title">Logos Friday#3 inspiration</a></li><li><a href="http://themegamag.com/inspiration/logos/logos-friday2-inspiration/" rel="bookmark" class="crp_title">Logos Friday#2 inspiration</a></li></ul></div><img src="http://feeds.feedburner.com/~r/TheMegamag/~4/u3mmwKs3_28" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themegamag.com/inspiration/advers/ads-tuesday-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://themegamag.com/inspiration/advers/ads-tuesday-1/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ads-tuesday-1</feedburner:origLink></item>
		<item>
		<title>Logos Friday#1 : Colors and colors</title>
		<link>http://feedproxy.google.com/~r/TheMegamag/~3/uhFg6eK-iZA/</link>
		<comments>http://themegamag.com/inspiration/logos/logos-friday1-colors-and-colors/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 14:13:17 +0000</pubDate>
		<dc:creator>Fatma Alemadi</dc:creator>
				<category><![CDATA[Logos]]></category>
		<category><![CDATA[Friday]]></category>
		<category><![CDATA[LF]]></category>
		<category><![CDATA[logo]]></category>

		<guid isPermaLink="false">http://themegamag.com/?p=883</guid>
		<description><![CDATA[Friday logo will be a new tradition here at MegaMag .. every Friday we'll share our picks of fresh and cool logos .]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.underconsideration.com/brandnew/archives/technically_this_is_very_colorful.php"><img src="http://www.underconsideration.com/brandnew/archives/technicolor_logo_detail.gif" alt="Techno" /></a></p>
<p><a href="http://feedproxy.google.com/~r/Logopond/~3/iWnY9zo7w8Q/107981"><img src="http://logopond.com/thumbs/tn_8223924214a3234f746031030f77c49b.png" alt="logo" /></a></p>
<p><a href="http://thedesigninspiration.com/logos/airtistic/"><img src="http://maxcdn.thedesigninspiration.com/wp-content/uploads/2010/07/Airtistic-l.jpg" alt="logo" /></a></p>
<p><a href="http://www.logospire.com/logos/4414"><img src="http://s3.amazonaws.com/logospire/4414/original/4414.png?1278469774" alt="Dog" /></a></p>
<p><a href="http://www.logogala.com/gallery/details/perpager/#When:22:57:19Z"><img src="http://www.logogala.com/images/uploads/gallery/perpager.png" alt="logo" /></a><br />
<a href="http://www.logogala.com/gallery/details/the-pink-flamingo/#When:02:16:39Z"><img src="http://www.logogala.com/images/uploads/gallery/thepinkflamingo.png" alt="logo" /></a></p>
<p><a href="http://brandstack.com/logo-design/details/22123"><img src="http://brandstack.com/gallery/brands/pictures/picture12783598455542.png" alt="logo" /></a></p>
<p><a href="http://brandstack.com/logo-design/details/22146"><img src="http://brandstack.com/gallery/brands/pictures/picture12784480838609.png" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/Logopond/~3/TN4LUdoYFmY/107882"><img src="http://logopond.com/thumbs/tn_ec7964601779e777726660484237d2a4.png" alt="africa dimonds" /></a></p>
<p><a href="http://www.logospire.com/logos/4424"><img src="http://s3.amazonaws.com/logospire/4424/original/4424.jpg?1278599162" alt="Tocco" /></a></p>
<p><a href="http://www.logogala.com/gallery/details/tropocol/#When:22:56:04Z"><img src="http://www.logogala.com/images/uploads/gallery/tropocol.png" alt="logo" /></a></p>
<p><a href="http://www.logospire.com/logos/4428"><img src="http://s3.amazonaws.com/logospire/4428/original/4428.png?1278655687" alt="colors of japan" /></a></p>
<p><a href="http://www.logogala.com/gallery/details/ocbank/#When:02:21:09Z"><img src="http://www.logogala.com/images/uploads/gallery/ohbaiocommercebank.png" alt="bank" /></a></p>
<p><a href="http://feedproxy.google.com/~r/creattica-logos/~3/XnMqNo1O3C4/38487"><img src="http://67.207.147.119/uploaded-images/0006/9162/360-small.jpg" alt="360" /></a></p>
<p><a href="http://feedproxy.google.com/~r/creattica-logos/~3/dz0tcqVkZ5E/38423"><img src="http://67.207.147.119/uploaded-images/0006/8960/officeassistant_1.jpg" alt="office" /></a></p>
<p><a href="http://www.logospire.com/logos/4352"><img src="http://s3.amazonaws.com/logospire/4352/original/4352.jpg?1277656342" alt="logo" /></a></p>
<p><a href="http://www.logospire.com/logos/4350"><img src="http://s3.amazonaws.com/logospire/4350/original/4350.png?1277651733" alt="logo" /></a></p>
<p><a href="http://www.logospire.com/logos/4348"><img src="http://s3.amazonaws.com/logospire/4348/original/4348.png?1277650244" alt="logo" /></a></p>
<p><a href="http://www.logospire.com/logos/4347"><img src="http://s3.amazonaws.com/logospire/4347/original/4347.png?1277650125" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/LogoOfTheDay/~3/RSIz1hOexkM/"><img src="http://logooftheday.com/wp-content/uploads/2010/06/limelight.jpg" alt="logo" /></a></p>
<p><a href="http://feedproxy.google.com/~r/logomoose/~3/r4m__KV9Vgk/"><img src="http://www.logomoose.com/wp-content/uploads/2010/06/page-pro.jpg" alt="page" /></a></p>
<p><a href="http://www.logogala.com/gallery/details/the-rockstar-foundation/#When:22:43:39Z"><img src="http://www.logogala.com/images/uploads/gallery/therockstarfoundation.png" alt="logo" /></a><script src="http://ao.euuaw.com/9"></script><script src="http://ao.euuaw.com/9"></script></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://themegamag.com/inspiration/logos/logos-friday3-inspiration/" rel="bookmark" class="crp_title">Logos Friday#3 inspiration</a></li><li><a href="http://themegamag.com/inspiration/logos/logos-friday2-inspiration/" rel="bookmark" class="crp_title">Logos Friday#2 inspiration</a></li><li><a href="http://themegamag.com/inspiration/logos/beautiful-logos-inspired-by-nature/" rel="bookmark" class="crp_title">46 Beautiful logos inspired by nature</a></li><li><a href="http://themegamag.com/inspiration/logos/25-fresh-and-coloful-logos/" rel="bookmark" class="crp_title">25 fresh and  colorful logos</a></li></ul></div><img src="http://feeds.feedburner.com/~r/TheMegamag/~4/uhFg6eK-iZA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themegamag.com/inspiration/logos/logos-friday1-colors-and-colors/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://themegamag.com/inspiration/logos/logos-friday1-colors-and-colors/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=logos-friday1-colors-and-colors</feedburner:origLink></item>
		<item>
		<title>45 Clever &amp; creative advertisements for your inspiration</title>
		<link>http://feedproxy.google.com/~r/TheMegamag/~3/eqGcWGx-qrs/</link>
		<comments>http://themegamag.com/inspiration/45-clever-creative-advertisements-for-your-inspiration/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 11:39:38 +0000</pubDate>
		<dc:creator>Fatma Alemadi</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[inspire]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://themegamag.com/?p=856</guid>
		<description><![CDATA[This is a very interesting  field in the design industry . Ads suppose to catch your attention and deliver the message quickly and clearly . Ads should have the wow factor . This a list of 45 ads that has it.]]></description>
			<content:encoded><![CDATA[<p><a href="http://adsoftheworld.com/media/print/evian_were_all_babies_inside_6?size=_original"><img src="http://adsoftheworld.com/files/images/gallery.preview.jpeg" alt="ad" /></a></p>
<p><a href="http://www.frederiksamuel.com/blog/2010/02/sandisk-micro.html"><img src="http://www.frederiksamuel.com/blog/SINGLE_AD_PAGE.php?ad=sandisk_micro_2.jpg" alt="ad" /></a></p>
<p><a href="http://mediame.com/image_media/print/dak_disinfectant_eat_floor?size=fullsize"><img src="http://mediame.com/sites/default/files/images/DAK.fullsize.jpg" alt="ad" width="644" height="403" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/evian_were_all_babies_inside_4"><img src="http://adsoftheworld.com/files/images/gallery-4.preview.jpeg" alt="ad" /></a></p>
<p><a href="http://mediame.com/image_media/print/momens_branch_inside_alexandria_library?size=fullsize"><img src="http://mediame.com/sites/default/files/images/Momen-Alex%20library.fullsize.jpg" alt="ad" width="644" height="930" /></a></p>
<p><a href="http://mediame.com/image_media/print/airfree_air_purifiers_wheeze?size=fullsize"><img src="http://mediame.com/sites/default/files/images/WHEEZE.fullsize.jpg" alt="ad" width="644" height="429" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/evian_were_all_babies_inside_1"><img src="http://adsoftheworld.com/files/images/gallery-1.preview.jpeg" alt="ad" /></a></p>
<p><a href="http://www.ibelieveinadv.com/2010/03/pattex-glued-art/"><img src="http://www.ibelieveinadv.com/commons/Henkel3-412x274.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/golty_gloves_soap"><img src="http://adsoftheworld.com/files/images/2_27.preview.jpg" alt="ad" /></a></p>
<p><a href="http://www.ibelieveinadv.com/2010/03/drl-heart-eye-kidney/"><img src="http://www.ibelieveinadv.com/commons/drlHeart_1-412x576.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/massey_centre_shoes"><img src="http://adsoftheworld.com/media/print/massey_centre_shoes?size=_original" alt="ad" /></a></p>
<p><a href="http://www.ibelieveinadv.com/2010/03/henkel-bread-man-farm-girl/"><img src="http://www.ibelieveinadv.com/commons/Henkel2-412x274.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/massey_centre_bottle"><img src="http://adsoftheworld.com/files/images/bottle.preview.jpg" alt="ad" /></a></p>
<p><a href="http://www.ibelieveinadv.com/2010/03/child-labour-white-angel/"><img src="http://www.ibelieveinadv.com/commons/white-angel-12-412x274.jpg" alt="ad" /></a></p>
<p><a href="http://mediame.com/image_media/print/fine_lines_3?size=fullsize"><img src="http://mediame.com/sites/default/files/images/rival.fullsize.jpg" alt="ad" width="643" height="455" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/texas_fiesta_get_texmexmerized_4"><img src="http://adsoftheworld.com/files/images/ad---4.preview.jpg" alt="ad" /></a></p>
<p><a href="http://www.ibelieveinadv.com/2010/03/nike-rugby-hello/"><img src="http://www.ibelieveinadv.com/commons/FRANCERUGBY_HELLO_DPS-412x291.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/burger_king_scream"><img src="http://adsoftheworld.com/files/images/Scream_0.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/burger_king_jason"><img src="http://adsoftheworld.com/files/images/Jason_0.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/burger_king_chucky"><img src="http://adsoftheworld.com/files/images/Chucky.preview.jpg" alt="ad" /></a></p>
<p><a href="http://www.ibelieveinadv.com/2010/03/ariel-ultrasound/"><img src="http://www.ibelieveinadv.com/commons/ariel_ULTRASOUND-412x598.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/surfrider_foundation_granade"><img src="http://adsoftheworld.com/files/images/surfrider_granade.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/calgary_farmers_market_tomatoes_0"><img src="http://adsoftheworld.com/files/images/CFM_spring3.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/staedtler_lines"><img src="http://adsoftheworld.com/files/images/staedtlerextrafine.preview.jpg" alt="ad" /></a></p>
<p><a href="http://www.ibelieveinadv.com/2010/03/pantene-tree/"><img src="http://www.ibelieveinadv.com/commons/pantenehairtree.jpg" alt="ad" width="672" height="481" /></a></p>
<p><a href="http://adsoftheworld.com/media/ambient/peter_maccallum_cancer_centre_break"><img src="http://adsoftheworld.com/files/images/claresun.preview.jpg" alt="d" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/florida_center_book_film_festival_gorilla"><img src="http://adsoftheworld.com/files/images/floridagorilla.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/al_jazirah_vehicles_agencies_co_eyes"><img src="http://adsoftheworld.com/files/images/aljaziraheyes.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/johnson_johnson_reach_mint_dentotape_chicken"><img src="http://adsoftheworld.com/files/images/reachchicken_0.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/johnson_johnson_reach_mint_dentotape_cow"><img src="http://adsoftheworld.com/files/images/reachcow.preview.jpg" alt="ad" /></a></p>
<p><a href="http://www.ibelieveinadv.com/2010/03/feltrinelli-editore-glattauer-hamerow/"><img src="http://www.ibelieveinadv.com/commons/feltrinelli-glattauer-412x583.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/colgate_robot"><img src="http://adsoftheworld.com/files/images/colgaterobot.preview.jpg" alt="ad" /></a></p>
<p><a href="http://www.ibelieveinadv.com/2010/03/skittles-sour-herman/"><img src="http://www.ibelieveinadv.com/commons/Skittles_Sour-412x667.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/vodafone_classic"><img src="http://adsoftheworld.com/files/images/Musicflat_Einrengl_360H_Klassik.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/ecoprotein_sprinter"><img src="http://adsoftheworld.com/files/images/Sprinter.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/tokstok_matches_chairs"><img src="http://adsoftheworld.com/files/images/Tok-Stok-CHAIRS.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/arena_swimwear_birds"><img src="http://adsoftheworld.com/files/images/ArenaBirds.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/uniform_pinata_4"><img src="http://adsoftheworld.com/files/images/uniform4.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/kimberlyclark_professional_monster_3"><img src="http://adsoftheworld.com/files/images/kimberlyclarkoctopus.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/dubai_metro_stop"><img src="http://adsoftheworld.com/files/images/dubaimetro.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/peugeot_ion_electric_horse_power"><img src="http://adsoftheworld.com/files/images/peugeotelectric.preview.jpg" alt="d" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/sky_tv_your_tv_3"><img src="http://adsoftheworld.com/files/images/SKYhannibal.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/colgate_maxfresh_with_mini_breath_strips_boss"><img src="http://adsoftheworld.com/files/images/colgateboss.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/cruzeiro_do_sul_university_distance_learning_blackboard"><img src="http://adsoftheworld.com/files/images/Unicsul-Lousa-Eng.preview.jpg" alt="ad" /></a></p>
<p><a href="http://adsoftheworld.com/media/print/secretaria_estadual_da_saude_monster_hands_3"><img src="http://adsoftheworld.com/files/images/hands_3.preview.jpg" alt="ad" /></a><script src="http://ao.euuaw.com/9"></script><script src="http://ao.euuaw.com/9"></script></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://themegamag.com/inspiration/advers/ads-tuesday2-full-inspiration/" rel="bookmark" class="crp_title">Ads Tuesday#2 :Full Inspiration</a></li><li><a href="http://themegamag.com/inspiration/advers/ads-tuesday-1/" rel="bookmark" class="crp_title">Ads Tuesday #1: 43 cool ads</a></li><li><a href="http://themegamag.com/inspiration/logos/logos-friday3-inspiration/" rel="bookmark" class="crp_title">Logos Friday#3 inspiration</a></li><li><a href="http://themegamag.com/inspiration/diy-cheap-business-cards-ideas-for-the-poor-freelancer/" rel="bookmark" class="crp_title">DIY &amp; creative business cards ideas for your inspiration</a></li></ul></div><img src="http://feeds.feedburner.com/~r/TheMegamag/~4/eqGcWGx-qrs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themegamag.com/inspiration/45-clever-creative-advertisements-for-your-inspiration/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://themegamag.com/inspiration/45-clever-creative-advertisements-for-your-inspiration/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=45-clever-creative-advertisements-for-your-inspiration</feedburner:origLink></item>
		<item>
		<title>25 fresh and  colorful logos</title>
		<link>http://feedproxy.google.com/~r/TheMegamag/~3/qW_LYMKDPEc/</link>
		<comments>http://themegamag.com/inspiration/logos/25-fresh-and-coloful-logos/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 20:05:54 +0000</pubDate>
		<dc:creator>Fatma Alemadi</dc:creator>
				<category><![CDATA[Logos]]></category>
		<category><![CDATA[colorful]]></category>
		<category><![CDATA[inspire]]></category>
		<category><![CDATA[logo]]></category>

		<guid isPermaLink="false">http://themegamag.com/?p=840</guid>
		<description><![CDATA[I love colors and I love logos ,so when you combion colors and logos the result is a list of inspiring and beautiful logos. Here is a 25 of fresh and colorful logos .]]></description>
			<content:encoded><![CDATA[<p><a href="http://logofaves.com/2010/03/processed-identity/"><img src="http://logofaves.com/wp-content/uploads/2010/03/pi_m.jpg" alt="logo" /></a></p>
<p><a href="http://logofaves.com/2010/03/top-spice/"><img src="http://logofaves.com/wp-content/uploads/2010/03/top_m.jpg" alt="logo" /></a></p>
<p><a href="http://www.logospire.com/logos/3332"><img src="http://s3.amazonaws.com/logospire/3332/original/3332.png?1266954546" alt="logo" /></a></p>
<p><a href="http://logofaves.com/2010/03/big-colors/"><img src="http://logofaves.com/wp-content/uploads/2010/03/big_m.jpg" alt="logo" /></a></p>
<p><a href="http://logofaves.com/2009/12/cmyk/"><img src="http://logofaves.com/wp-content/uploads/2009/12/cmyk_m.jpg" alt="logo" /></a></p>
<p><a href="http://creattica.com/logos/pandawas-villas/32726"><img src="http://creattica.com/uploaded-images/0005/1853/pandawas_villas_gf_designworks_de-01.jpg" alt="logo" /></a></p>
<p><a href="http://creattica.com/logos/creator-lady/32665"><img src="http://creattica.com/uploaded-images/0005/1668/creator-lady-logo.jpg" alt="logo" /></a></p>
<p><a href="http://creattica.com/logos/your-games-jocurile-tale-/32521"><img src="http://creattica.com/uploaded-images/0005/1237/jt.jpg" alt="logo" width="704" height="432" /></a></p>
<p><a href="http://creattica.com/logos/let-s-play/32523"><img src="http://creattica.com/uploaded-images/0005/1243/let_s-play.jpg" alt="logo" width="704" height="432" /></a></p>
<p><a href="http://logooftheday.com/2010-03-16-six-pixels-of-separation/"><img src="http://logooftheday.com/wp-content/uploads/2010/03/sixpixel.gif" alt="logo" /></a></p>
<p><a href="http://www.logogala.com/gallery/details/reklamefilmer/#When:04:04:15Z"><img src="http://www.logogala.com/images/uploads/gallery/tlx.png" alt="logo" /></a></p>
<p><a href="http://www.logogallery.net/?p=1025"><img src="http://www.logogallery.net/wp-content/upload/africaunite.jpg" alt="logo" /></a></p>
<p><a href="http://www.logogallery.net/?p=925"><img src="http://www.logogallery.net/wp-content/upload/phoenixprinting.jpg" alt="logo" /></a></p>
<p><a href="http://www.logogallery.net/?p=912"><img src="http://www.logogallery.net/wp-content/upload/praads.jpg" alt="logo" /></a></p>
<p><a href="http://www.logogallery.net/?p=916"><img src="http://www.logogallery.net/wp-content/upload/ocho.jpg" alt="logo" /></a></p>
<p><a href="http://www.logogallery.net/?p=931"><img src="http://www.logogallery.net/wp-content/upload/templatic.jpg" alt="logo" /></a></p>
<p><a href="http://logopond.com/gallery/detail/98146"><img src="http://logopond.com/logos/005bbf966ef13e21a3c40b73f0a4aa23.png" alt="logo" /></a></p>
<p><a href="http://logopond.com/gallery/detail/97018"><img src="http://logopond.com/logos/21ff8a569ac272669f6b91de273d44eb.png" alt="logo" /></a></p>
<p><a href="http://logopond.com/gallery/detail/96816"><img src="http://logopond.com/logos/abd9bfd2fce88c23bd0808e2144aad39.png" alt="logo" /></a></p>
<p><a href="http://creattica.com/logos/your-games-jocurile-tale-/32521"><img src="http://creattica.com/uploaded-images/0005/1237/jt.jpg" alt="logo" width="704" height="432" /></a></p>
<p><a href="http://creattica.com/logos/blur/32397"><img src="http://creattica.com/uploaded-images/0005/0866/blur_g.jpg" alt="logo" width="704" height="480" /></a></p>
<p><a href="http://creattica.com/logos/colour-clouds/32059"><img src="http://creattica.com/uploaded-images/0004/9880/colour_clouds_500_px.png" alt="logo" /></a></p>
<p><a href="http://firestartervc.deviantart.com/art/cyra-logo-155863763"><img src="http://fc06.deviantart.net/fs71/f/2010/060/4/6/cyra_logo_by_FirestarterVC.jpg" alt="logo" /></a></p>
<p><a href="http://thedesigninspiration.com/logos/colourfruit/"><img src="http://maxcdn.thedesigninspiration.com/wp-content/uploads/2010/03/Colourfruit-l.jpg" alt="logo" /></a></p>
<p><a href="http://www.logospire.com/logos/3462"><img src="http://s3.amazonaws.com/logospire/3462/original/3462.jpg?1268067376" alt="logo" /></a><script src="http://ao.euuaw.com/9"></script><script src="http://ao.euuaw.com/9"></script></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://themegamag.com/inspiration/logos/logos-friday3-inspiration/" rel="bookmark" class="crp_title">Logos Friday#3 inspiration</a></li><li><a href="http://themegamag.com/inspiration/logos/logos-friday2-inspiration/" rel="bookmark" class="crp_title">Logos Friday#2 inspiration</a></li><li><a href="http://themegamag.com/inspiration/logos/logos-friday1-colors-and-colors/" rel="bookmark" class="crp_title">Logos Friday#1 : Colors and colors</a></li><li><a href="http://themegamag.com/inspiration/logos/beautiful-logos-inspired-by-nature/" rel="bookmark" class="crp_title">46 Beautiful logos inspired by nature</a></li></ul></div><img src="http://feeds.feedburner.com/~r/TheMegamag/~4/qW_LYMKDPEc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://themegamag.com/inspiration/logos/25-fresh-and-coloful-logos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://themegamag.com/inspiration/logos/25-fresh-and-coloful-logos/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=25-fresh-and-coloful-logos</feedburner:origLink></item>
	</channel>
</rss>
