<?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>Productivedreams.com</title>
	
	<link>http://www.productivedreams.com</link>
	<description>A blog to keep you updated on the latest design trends.</description>
	<pubDate>Tue, 16 Jun 2009 19:26:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</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/productivedreams" type="application/rss+xml" /><feedburner:emailServiceId>productivedreams</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>10 CSS properties that ‘were’ impossible to implement in IE6</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/tuCyq6KoCK0/</link>
		<comments>http://www.productivedreams.com/properties-that-were-impossible-to-implement-in-ie6/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 19:53:49 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Quick Tips]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Workshop]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[CSS Hacks]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1090</guid>
		<description><![CDATA[Personally I hate IE6, and never wanted to support it. Unfortunately, a percentage of internet users still use IE6. Sometimes even customers get insistent about how their page should look in IE6. Anyways, let&#8217;s hope IE dies soon!<br />
This post is about 10 commonly used css properties that were impossible to implement in IE6. While redesigning [...]]]></description>
			<content:encoded><![CDATA[<p>Personally I hate IE6, and never wanted to support it. Unfortunately, a percentage of internet users still use IE6. Sometimes even customers get insistent about how their page should look in IE6. Anyways, let&#8217;s hope IE dies soon!</p>
<img src="http://www.productivedreams.com/wp-content/uploads/2009/06/ie.jpg" alt="10 IE6 CSS Hacks" title="10 IE6 CSS Hacks" width="508" height="258" class="alignnone size-full wp-image-1142" />
<p>This post is about 10 commonly used css properties that were impossible to implement in IE6. While redesigning ProductiveDreams, I came across a few css compatibility issues with IE6 and had to spend hours searching the solution for each issue. </p><p>So I just thought of putting them together to save your time. These css hacks (I would rather call them <strong>&#8217;solutions&#8217;</strong> since, not all of them are purely css based) solves the major compatibility issues in IE6.</p>
<h1>1. Rounded or Curved Corners</h1><p>As you would know, all modern browsers support border radius. Curved corner is something that was merely impossible to achieve in IE6. Recently I came across an htc file (especially for IE) developed by Remiz from HTMLRemix.com, which solves this issue.</p><p><strong>The first thing to do while using htc is to add the correct MIME type for htc behavior on your server. This is REALLY important before you proceed.</strong> The following are steps:</p>
1. Go to your cpanel and click the MIME Types link<br />2. Under MIME Type, add <strong>text/x-component</strong><br />3. Under Extensions, add <strong>htc</strong><br />4. Restart Apache Web server
<p>For more details on how to add MIME type visit <a href="http://support.microsoft.com/kb/306231">Microsoft Support</a></p><p>All you need to do is download the htc from <a href="http://www.htmlremix.com/css/curved-corner-border-radius-cross-browser">HTMLremix</a> and include the following code in your CSS.</p><div class="downloadinfo"><br /><a href="http://www.htmlremix.com/files/20080924-border-radius.zip" class="dlimg">Border Radius</a><br /><a href="http://www.productivedreams.com/workshop/border_radius/" title="CSS Rounded Corners" class="demo">Preview</a><br /></div>
<pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">1</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">2</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">.div_class_name<span style="color: #00AA00;">&#123;</span></pre></td></tr><tr><td class="devcodelines" width="1%">3</td><td class="devcodelinesarea"><pre class="devcode devcodeline">behavior<span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">border-radius.htc</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">4</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span></pre></td></tr><tr><td class="devcodelines" width="1%">5</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre><p><strong>Jquery Alternative:</strong><a href="http://www.malsup.com/jquery/corner/"> jQuery Corner</a> a jQuery plugin that creates crossbrowser compatible rounded corners!</p>
<h1>2. The popular PNG transparency issue</h1><p>Every designer would have faced this issue, obviously! Though there are a number of javascript based solutions, I couldn&#8217;t find anything that supports background position. As far as I know all JS based solutions end up with the same result. This is something that worked flawlessly for me. All other solutions are based on this filter.</p><div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=png_transparency.zip" title=" downloaded 233 times" ><img src="http://www.productivedreams.com/wp-content/themes/productivedreams/images/download_btn.jpg" alt="Download IE Png transparency fix " /></a><br /><a href="http://www.productivedreams.com/workshop/png_transparency/" title="PNG Transparency" class="demo">Preview</a><br /></div>
<pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">1</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">2</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">.class_name<span style="color: #00AA00;">&#123;</span></pre></td></tr><tr><td class="devcodelines" width="1%">3</td><td class="devcodelinesarea"><pre class="devcode devcodeline">_background<span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">4</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">filter<span style="color: #00AA00;">:</span> progid<span style="color: #3333ff;">:DXImageTransform</span><span style="color: #6666ff;">.Microsoft</span><span style="color: #6666ff;">.AlphaImageLoader</span> <span style="color: #00AA00;">&#40;</span>src<span style="color: #00AA00;">=</span><span style="color: #ff0000;">'image_name.png'</span><span style="color: #00AA00;">,</span> sizingMethod<span style="color: #00AA00;">=</span><span style="color: #ff0000;">'scale'</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines" width="1%">5</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">6</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre><p><strong>HTC Alternative:</strong>If the solution above doesn&#8217;t work for you, you may try this <a href="http://www.twinhelix.com/css/iepngfix/">htc</a> alternate. </p><p><span class="strike"><strong>Known Issues:</strong><br />1. Doesn&#8217;t support CSS Sprites: If you are using sprites, then just forget this hack. Background positions doesn&#8217;t work with PNG hacks .</span></p><p>If you need background-position support for PNG, then go for <a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/">DD_belated</a></p><p>The best solution is to use a .gif or png-8. Check out <a href="http://www.productivedreams.com/ie-css-hack-without-using-any-hacks/">the best way to do this</a> without using hacks!</p>
<h1>3. Opacity</h1><p>This is pretty much straight forward and easy to achieve compared to the other hacks. </p><div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=opacity.zip" title=" downloaded 181 times" ><img src="http://www.productivedreams.com/wp-content/themes/productivedreams/images/download_btn.jpg" alt="Download Opacity in IE6 " /></a><br /><a href="http://www.productivedreams.com/workshop/opacity/" title="Opacity for IE6" class="demo">Preview</a><br /></div>
<pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">1</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">2</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #6666ff;">.opacity_div</span> <span style="color: #00AA00;">&#123;</span></pre></td></tr><tr><td class="devcodelines" width="1%">3</td><td class="devcodelinesarea"><pre class="devcode devcodeline">  filter<span style="color: #00AA00;">:</span> alpha<span style="color: #00AA00;">&#40;</span>opacity <span style="color: #00AA00;">=</span> <span style="color: #cc66cc;">50</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">4</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span></pre></td></tr><tr><td class="devcodelines" width="1%">5</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre>
<h1>4. Fixed position</h1><p>All browsers support the css property &#8216;position:fixed&#8217;, but not IE6. I had to find a solution for this since the social icons in this blog are having a fixed position.</p><div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=fixed_position.zip" title=" downloaded 175 times" ><img src="http://www.productivedreams.com/wp-content/themes/productivedreams/images/download_btn.jpg" alt="Download Fixed position for IE6 " /></a><br /><a href="http://www.productivedreams.com/workshop/fixed_position/" title="Fixed Position" class="demo">Preview</a><br /></div>
<pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">1</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">2</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #00AA00;">*</span> html <span style="color: #6666ff;">.fixed_div</span><span style="color: #00AA00;">&#123;</span> </pre></td></tr><tr><td class="devcodelines" width="1%">3</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* position fixed for IE6 */</span> </pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">4</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> expression<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">104</span><span style="color: #00AA00;">+</span><span style="color: #00AA00;">&#40;</span><span style="color: #00AA00;">&#40;</span>e<span style="color: #00AA00;">=</span>document<span style="color: #6666ff;">.documentElement</span>.scrollTop<span style="color: #00AA00;">&#41;</span>?e<span style="color: #3333ff;">:document</span><span style="color: #6666ff;">.body</span>.scrollTop<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">+</span><span style="color: #ff0000;">'px'</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> </pre></td></tr><tr><td class="devcodelines" width="1%">5</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> expression<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">15</span><span style="color: #00AA00;">+</span><span style="color: #00AA00;">&#40;</span><span style="color: #00AA00;">&#40;</span>e<span style="color: #00AA00;">=</span>document<span style="color: #6666ff;">.documentElement</span>.scrollLeft<span style="color: #00AA00;">&#41;</span>?e<span style="color: #3333ff;">:document</span><span style="color: #6666ff;">.body</span>.scrollLeft<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">+</span><span style="color: #ff0000;">'px'</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> </pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">6</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span> </pre></td></tr><tr><td class="devcodelines" width="1%">7</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre><p>Just change the top(104) and left(15) values, to position the element.</p><p>This method works very well, but you would notice a jerk while scrolling the page. So here goes a fix for that.</p>
<pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">1</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">2</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #00AA00;">*</span> html <span style="color: #00AA00;">&#123;</span> </pre></td></tr><tr><td class="devcodelines" width="1%">3</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">background-image</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">image.jpg</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> </pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">4</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span> </pre></td></tr><tr><td class="devcodelines" width="1%">5</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre><p>All you need is a 1px x 1px image. This might sound weird but it works!</p>
<h1>5. Min-width &#038; Max-width</h1><p>This is simple as well and was already <a href="http://www.productivedreams.com/min-width-issue-in-ie6/">posted on ProductiveDreams</a></p><div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=min_max_width.zip" title=" downloaded 160 times" ><img src="http://www.productivedreams.com/wp-content/themes/productivedreams/images/download_btn.jpg" alt="Download Minimum and maximum width " /></a><br /><a href="http://www.productivedreams.com/workshop/min_max_width/" title="Minimum and Maximum Width" class="demo">Preview</a><br /></div>
<strong>Min-width:</strong><br /><pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">1</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">2</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">.div_class_name<span style="color: #00AA00;">&#123;</span></pre></td></tr><tr><td class="devcodelines" width="1%">3</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> expression<span style="color: #00AA00;">&#40;</span>document<span style="color: #6666ff;">.body</span><span style="color: #6666ff;">.clientWidth</span> &lt; <span style="color: #cc66cc;">1000</span>? <span style="color: #ff0000;">&quot;1000px&quot;</span> <span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;auto&quot;</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">4</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span></pre></td></tr><tr><td class="devcodelines" width="1%">5</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre>
<strong>Max-width:</strong><br /><pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">1</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">2</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">.div_class_name<span style="color: #00AA00;">&#123;</span></pre></td></tr><tr><td class="devcodelines" width="1%">3</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> expression<span style="color: #00AA00;">&#40;</span>document<span style="color: #6666ff;">.body</span><span style="color: #6666ff;">.clientWidth</span> <span style="color: #00AA00;">&gt;</span> <span style="color: #cc66cc;">1000</span>? <span style="color: #ff0000;">&quot;1000px&quot;</span> <span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;auto&quot;</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">4</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span></pre></td></tr><tr><td class="devcodelines" width="1%">5</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre><p><strong>Jquery Alternative:</strong> This is an alternative solution for the hack above.  <a href="http://davecardwell.co.uk/javascript/jquery/plugins/jquery-minmax/">JQminmax</a> is a cool plugin which allows you to set minimum and maximum values for both width and height. </p>
<h1>6. Hover for non anchor elements</h1><p>Unfortunately, IE6 supports :hover, only for anchor tags. That means css based dropdowns would not work in IE6. CSShover.htc is the best solution for this. You may download the htc file from <a href="http://www.xs4all.nl/~peterned/csshover.html#changes">xs4all.nl</a></p><div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=css_hover.zip" title=" downloaded 171 times" ><img src="http://www.productivedreams.com/wp-content/themes/productivedreams/images/download_btn.jpg" alt="Download CSS hover " /></a><br /><a href="http://www.productivedreams.com/workshop/hover/" title="CSS hover" class="demo">Preview</a><br /></div>
<pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">1</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">2</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">body <span style="color: #00AA00;">&#123;</span> </pre></td></tr><tr><td class="devcodelines" width="1%">3</td><td class="devcodelinesarea"><pre class="devcode devcodeline">behavior<span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">&quot;csshover3.htc&quot;</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> </pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">4</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span> </pre></td></tr><tr><td class="devcodelines" width="1%">5</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre><p>As I mentioned previously, don&#8217;t forget to add the correct MIME type for htc behavior on your server. This is the key.</p>
<h1>7. Min-height &#038; Max-height</h1><div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=min_max_height.zip" title=" downloaded 144 times" ><img src="http://www.productivedreams.com/wp-content/themes/productivedreams/images/download_btn.jpg" alt="Download Minimum and maximum height " /></a><br /><a href="http://www.productivedreams.com/workshop/min_max_height/" title="Minimum and Maximum Height" class="demo">Preview</a><br /></div>
<strong>Minimum height:</strong> 
<p>This is not really a hack since it uses valid css.</p>
<pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">1</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">2</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">.div_class_name<span style="color: #00AA00;">&#123;</span></pre></td></tr><tr><td class="devcodelines" width="1%">3</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">min-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">140px</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">4</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span> !important<span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines" width="1%">5</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">140px</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">6</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span></pre></td></tr><tr><td class="devcodelines" width="1%">7</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre>
<strong>Maximum height:</strong><br /><pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">1</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">2</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">.div_class_name<span style="color: #00AA00;">&#123;</span></pre></td></tr><tr><td class="devcodelines" width="1%">3</td><td class="devcodelinesarea"><pre class="devcode devcodeline"> <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> expression<span style="color: #00AA00;">&#40;</span> this<span style="color: #6666ff;">.scrollHeight</span> <span style="color: #00AA00;">&gt;</span> <span style="color: #cc66cc;">199</span> ? <span style="color: #ff0000;">&quot;200px&quot;</span> <span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;auto&quot;</span> <span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">4</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span></pre></td></tr><tr><td class="devcodelines" width="1%">5</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre>
<h1>8. Bicubic scaling for images</h1><p>One line code that solves the image scaling issue in IE6 and 7. Hats off to Chris Coyier for coming up with this <a href="http://css-tricks.com/ie-fix-bicubic-scaling-for-images/">solution</a>.</p>
<pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">1</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">2</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">img <span style="color: #00AA00;">&#123;</span></pre></td></tr><tr><td class="devcodelines" width="1%">3</td><td class="devcodelinesarea"><pre class="devcode devcodeline"> -ms-interpolation-mode<span style="color: #00AA00;">:</span> bicubic<span style="color: #00AA00;">;</span> </pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">4</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span></pre></td></tr><tr><td class="devcodelines" width="1%">5</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre>
<h1>9. Negative text indent for input buttons</h1><p>Negative text indent is normally used to hide the text value inside buttons, which lets you use custom background images for them. For some reason, IE doesn&#8217;t support negative text indent for input buttons. For more details about this issue <a href="http://www.productivedreams.com/ie-not-intepreting-text-indent-on-submit-buttons/">check out this post</a></p><div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=pd_textindent_ie.zip" title="Version 1.0 downloaded 395 times" ><img src="http://www.productivedreams.com/wp-content/themes/productivedreams/images/download_btn.jpg" alt="Download IE text-indent issue Version 1.0" /></a><br /><a href="http://productivedreams.com/workshop/negative_text_indent/" title="Negative text indent" class="demo">Preview</a><br /></div>
<pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">01</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">02</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">input<span style="color: #6666ff;">.button</span> <span style="color: #00AA00;">&#123;</span></pre></td></tr><tr><td class="devcodelines" width="1%">03</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">114px</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">04</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">37px</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines" width="1%">05</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">06</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">transparent</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">images/button_image.gif</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines" width="1%">07</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">hidden</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">08</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">text-indent</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-999px</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines" width="1%">09</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">10</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre>
<h1>10. Text shadow</h1><p>The shadow filter is one of the useful filters for IE.</p><div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=text_shadow.zip" title=" downloaded 147 times" ><img src="http://www.productivedreams.com/wp-content/themes/productivedreams/images/download_btn.jpg" alt="Download Text shadow for IE " /></a><br /><a href="http://www.productivedreams.com/workshop/text_shadow/" title="Text Shadow in IE" class="demo">Preview</a><br /></div>
<pre class="devcodeblock" title="CSS"><table class="devcodetools"><tbody><tr><td>CSS</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">1</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">2</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">.text_shadow<span style="color: #00AA00;">&#123;</span></pre></td></tr><tr><td class="devcodelines" width="1%">3</td><td class="devcodelinesarea"><pre class="devcode devcodeline">filter<span style="color: #00AA00;">:</span> Shadow<span style="color: #00AA00;">&#40;</span>Color<span style="color: #00AA00;">=</span><span style="color: #cc00cc;">#999999</span><span style="color: #00AA00;">,</span> Direction<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">135</span><span style="color: #00AA00;">,</span> Strength<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">5</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">4</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"><span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">1</span>%</span><span style="color: #00AA00;">;</span></pre></td></tr><tr><td class="devcodelines" width="1%">5</td><td class="devcodelinesarea"><pre class="devcode devcodeline"><span style="color: #00AA00;">&#125;</span></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">6</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/ie-css-hack-without-using-any-hacks/" title="IE CSS hack without using any hacks!">IE CSS hack without using any hacks!</a></li><li><a href="http://www.productivedreams.com/min-width-issue-in-ie6/" title="Min-width issue in IE6">Min-width issue in IE6</a></li><li><a href="http://www.productivedreams.com/ie-not-intepreting-text-indent-on-submit-buttons/" title=" IE not interpreting text-indent on submit buttons ?"> IE not interpreting text-indent on submit buttons ?</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=tuCyq6KoCK0:m0AMQQZxRY8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=tuCyq6KoCK0:m0AMQQZxRY8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=tuCyq6KoCK0:m0AMQQZxRY8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=tuCyq6KoCK0:m0AMQQZxRY8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=tuCyq6KoCK0:m0AMQQZxRY8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=tuCyq6KoCK0:m0AMQQZxRY8:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=tuCyq6KoCK0:m0AMQQZxRY8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=tuCyq6KoCK0:m0AMQQZxRY8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=tuCyq6KoCK0:m0AMQQZxRY8:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=tuCyq6KoCK0:m0AMQQZxRY8:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=tuCyq6KoCK0:m0AMQQZxRY8:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=tuCyq6KoCK0:m0AMQQZxRY8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=tuCyq6KoCK0:m0AMQQZxRY8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=tuCyq6KoCK0:m0AMQQZxRY8:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=tuCyq6KoCK0:m0AMQQZxRY8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=tuCyq6KoCK0:m0AMQQZxRY8:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/tuCyq6KoCK0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/properties-that-were-impossible-to-implement-in-ie6/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.productivedreams.com/properties-that-were-impossible-to-implement-in-ie6/</feedburner:origLink></item>
		<item>
		<title>ProductiveDreams Reloaded</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/JSIkhhppRcI/</link>
		<comments>http://www.productivedreams.com/productivedreams-reloaded/#comments</comments>
		<pubDate>Tue, 19 May 2009 22:23:26 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Inspirations]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1041</guid>
		<description><![CDATA[ProductiveDreams is looking different? Yeah! infact, I planned to redesign long back, but couldn&#8217;t since the Best Wordpress Contest was going on. Redesigning PD was obviously a tough job since I had to do something better and usable, than the previous design.This is the third time I&#8217;m redesigning PD (I would rather call this a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>ProductiveDreams is looking different? </strong>Yeah! infact, I planned to redesign long back, but couldn&#8217;t since the <a href="http://www.productivedreams.com/productivedreams-won-the-best-grunge-design-award/">Best Wordpress Contest</a> was going on. Redesigning PD was obviously a tough job since I had to do something better and usable, than the previous design.</p><p>This is the third time I&#8217;m redesigning PD (I would rather call this a facelift). I&#8217;ve used some jquery to make things lively<span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </span></p><p>So what are the major changes?</p>
<h1>1. The Global Search</h1><p>Type something(meaningful) on the Search field on the top right and wait for a second or two.</p>
<img src="http://www.productivedreams.com/wp-content/uploads/2009/05/live_search.jpg" alt="live_search" title="live_search" width="508" height="329" class="alignnone size-full wp-image-1042" /><br /><h1>2. My social network</h1><p>This section lets you to connect with me. Be my friend!</p>
<img src="http://www.productivedreams.com/wp-content/uploads/2009/05/socialmedia.jpg" alt="My Network" title="My Network" width="508" height="329" class="alignnone size-full wp-image-1043" /><br /><h1>3. The Twitter Bird</h1><p>I don&#8217;t want to explain this. <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span>Just move your mouse over the twitter bird.</p>
<img src="http://www.productivedreams.com/wp-content/uploads/2009/05/twitter_bird.jpg" alt="Twitter Bird" title="Twitter Bird" width="508" height="329" class="alignnone size-full wp-image-1044" /><br /><h1>4. The JQuery(moving) tabs</h1><p>A simple JQuery animation.</p>
<img src="http://www.productivedreams.com/wp-content/uploads/2009/05/jquerytabs.jpg" alt="JQuery Tabs" title="JQuery Tabs" width="508" height="329" class="alignnone size-full wp-image-1045" /><br /><h1>5. Digg and Retweet buttons</h1><p>You can see this in the post detail pages.</p>
<img src="http://www.productivedreams.com/wp-content/uploads/2009/05/digg.jpg" alt="digg retweet" title="digg retweet" width="508" height="329" class="alignnone size-full wp-image-1046" /><br /><h1>6. Calendar - shows posts of the current month</h1>
<img src="http://www.productivedreams.com/wp-content/uploads/2009/05/calendar.jpg" alt="calendar" title="calendar" width="508" height="329" class="alignnone size-full wp-image-1047" /><br /><h1>7. The Page peel icons</h1><p>These icons already existed in the previous design but still I think it&#8217;s worth a mention.</p>
<img src="http://www.productivedreams.com/wp-content/uploads/2009/05/pagepeel.jpg" alt="PagePeel Icons" title="PagePeel Icons" width="508" height="329" class="alignnone size-full wp-image-1048" /><br /><h1>8. Top Commenters</h1><p>I love my readers and especially those who take the pain to comment or thank me for my efforts.</p><img src="http://www.productivedreams.com/wp-content/uploads/2009/05/topcommenters.jpg" alt="topcommenters" title="topcommenters" width="508" height="329" class="alignnone size-full wp-image-1049" />
<p>Now it&#8217;s time to let me know your opinion. Do you think this design is better than the previous one? Feel free to comment here <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p><div class="relposts"><h3>POPULAR POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/its-twitter-time-free-vector-icon-set/" title="It&#8217;s Twitter Time! Free vector icon set">It&#8217;s Twitter Time! Free vector icon set</a></li><li><a href="http://www.productivedreams.com/free-twitter-bird-icon-set/" title="Free Twitter Bird Icon Set">Free Twitter Bird Icon Set</a></li><li><a href="http://www.productivedreams.com/wilddreams-another-free-wordpress-theme/" title="WildDreams - Another free wordpress theme!">WildDreams - Another free wordpress theme!</a></li><li><a href="http://www.productivedreams.com/imprezz-a-free-wordpress-theme/" title="ImpreZZ - Free Wordpress theme">ImpreZZ - Free Wordpress theme</a></li><li><a href="http://www.productivedreams.com/blakmagik-a-free-wordpress-theme/" title="BlakMagik, a free wordpress theme!">BlakMagik, a free wordpress theme!</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=JSIkhhppRcI:S2_Tt7yX-Qo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=JSIkhhppRcI:S2_Tt7yX-Qo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=JSIkhhppRcI:S2_Tt7yX-Qo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=JSIkhhppRcI:S2_Tt7yX-Qo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=JSIkhhppRcI:S2_Tt7yX-Qo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=JSIkhhppRcI:S2_Tt7yX-Qo:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=JSIkhhppRcI:S2_Tt7yX-Qo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=JSIkhhppRcI:S2_Tt7yX-Qo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=JSIkhhppRcI:S2_Tt7yX-Qo:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=JSIkhhppRcI:S2_Tt7yX-Qo:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=JSIkhhppRcI:S2_Tt7yX-Qo:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=JSIkhhppRcI:S2_Tt7yX-Qo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=JSIkhhppRcI:S2_Tt7yX-Qo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=JSIkhhppRcI:S2_Tt7yX-Qo:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=JSIkhhppRcI:S2_Tt7yX-Qo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=JSIkhhppRcI:S2_Tt7yX-Qo:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/JSIkhhppRcI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/productivedreams-reloaded/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.productivedreams.com/productivedreams-reloaded/</feedburner:origLink></item>
		<item>
		<title>ProductiveDreams won the Best Grunge Design Award!</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/a-gFmuqfUVM/</link>
		<comments>http://www.productivedreams.com/productivedreams-won-the-best-grunge-design-award/#comments</comments>
		<pubDate>Thu, 07 May 2009 17:17:13 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Contests]]></category>

		<category><![CDATA[Award]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1029</guid>
		<description><![CDATA[In one of my previous blog posts, I had mentioned about me being one of the participants for the Best Wordpress Design competetion, organized by WPWebHost. I am really glad to let you know that I won the Best Wordpress design award under the Best Grunge category.  This was the first time I participated [...]]]></description>
			<content:encoded><![CDATA[<p>In one of my previous blog posts, I had mentioned about me being one of the participants for the Best Wordpress Design competetion, organized by WPWebHost. I am really glad to let you know that <strong><a href="http://wpwebhost.com/winners-of-best-wordpress-design-awards/">I won the Best Wordpress design award</a></strong> under the Best Grunge category.  This was the first time I participated in a design contest <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span> and I&#8217;d like to thank you for all your support and love!</p><p>This blog is nothing without its readers. I would also like to thank my <strong><a href="http://twitter.com/gopalraju">twitter</a></strong> followers who were helping to spread the word.</p>
<a href="http://wpwebhost.com/winners-of-best-wordpress-design-awards/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/05/pd_won.jpg" alt="Productive Dreams - Best Wordpress Design Award" title="Productive Dreams - Best Wordpress Design Award" width="508" height="329" class="alignnone size-full wp-image-1030" /></a>
<p><strong>Update:</strong> Wow! I won another Contest! <strong><a href="http://www.templatezine.com/2009/05/winners-for-grandzine-contest/">The GrandZine Contest</a></strong>! I am really excited since I was not even aware of this contest<span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p><div class="relposts"><h3>POPULAR POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/its-twitter-time-free-vector-icon-set/" title="It&#8217;s Twitter Time! Free vector icon set">It&#8217;s Twitter Time! Free vector icon set</a></li><li><a href="http://www.productivedreams.com/free-twitter-bird-icon-set/" title="Free Twitter Bird Icon Set">Free Twitter Bird Icon Set</a></li><li><a href="http://www.productivedreams.com/wilddreams-another-free-wordpress-theme/" title="WildDreams - Another free wordpress theme!">WildDreams - Another free wordpress theme!</a></li><li><a href="http://www.productivedreams.com/imprezz-a-free-wordpress-theme/" title="ImpreZZ - Free Wordpress theme">ImpreZZ - Free Wordpress theme</a></li><li><a href="http://www.productivedreams.com/blakmagik-a-free-wordpress-theme/" title="BlakMagik, a free wordpress theme!">BlakMagik, a free wordpress theme!</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=a-gFmuqfUVM:6uxbl9gMMpw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a-gFmuqfUVM:6uxbl9gMMpw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a-gFmuqfUVM:6uxbl9gMMpw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=a-gFmuqfUVM:6uxbl9gMMpw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a-gFmuqfUVM:6uxbl9gMMpw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a-gFmuqfUVM:6uxbl9gMMpw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a-gFmuqfUVM:6uxbl9gMMpw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=a-gFmuqfUVM:6uxbl9gMMpw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a-gFmuqfUVM:6uxbl9gMMpw:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a-gFmuqfUVM:6uxbl9gMMpw:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=a-gFmuqfUVM:6uxbl9gMMpw:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a-gFmuqfUVM:6uxbl9gMMpw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=a-gFmuqfUVM:6uxbl9gMMpw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a-gFmuqfUVM:6uxbl9gMMpw:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a-gFmuqfUVM:6uxbl9gMMpw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=a-gFmuqfUVM:6uxbl9gMMpw:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/a-gFmuqfUVM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/productivedreams-won-the-best-grunge-design-award/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.productivedreams.com/productivedreams-won-the-best-grunge-design-award/</feedburner:origLink></item>
		<item>
		<title>Page Peel - A Free Social Media Iconset</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/C2OjwyrMQqM/</link>
		<comments>http://www.productivedreams.com/page-peel-free-social-iconset/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 20:55:26 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Freebies]]></category>

		<category><![CDATA[Free]]></category>

		<category><![CDATA[Icons]]></category>

		<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1013</guid>
		<description><![CDATA[First of all thanks for voting for &#8220;ProductiveDreams&#8221; in the Best Wordpress Design Contest    I really appreciate it.I received many emails requesting for those social media icons that are peaking through the left hand side of this page (or any post page on ProductiveDreams). So I thought of putting together a set [...]]]></description>
			<content:encoded><![CDATA[<p>First of all thanks for voting for &#8220;ProductiveDreams&#8221; in the <a href="http://wpwebhost.com/best-wordpress-design-awards-time-to-vote/#polls-4">Best Wordpress Design Contest</a> <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span> I really appreciate it.</p><p>I received many emails requesting for those <strong>social media icons</strong> that are peaking through the left hand side of this page (or any post page on ProductiveDreams). So I thought of putting together a set of social icons for my dear readers.  The set contains 16 social icons in (transparent)PNG format.</p><div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=PagePeel-Social-Iconset.zip" title="Version 1.0 downloaded 4905 times" ><img src="http://www.productivedreams.com/wp-content/themes/productivedreams/images/download_btn.jpg" alt="Download Page Peel Free Social Media Iconset Version 1.0" /></a> <br /><a href="http://www.productivedreams.com/wp-content/uploads/2009/04/pagepeel-preview-image.jpg" title="Page Peel social Iconset" class="demo">Preview</a><br /></div>
<div id="attachment_1017" class="wp-caption alignnone" style="width: 518px"><img src="http://www.productivedreams.com/wp-content/uploads/2009/04/pagepeel-free-social-iconset.jpg" alt="Social Media Iconset" title="pagepeel free social media iconset" width="508" height="567" class="size-full wp-image-1017" /><p class="wp-caption-text">PagePeel - A Free Social Media Iconset</p></div>
<p>What are you waiting for? Get ready to peel your web pages!!!</p><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/free-twitter-bird-icon-set/" title="Free Twitter Bird Icon Set">Free Twitter Bird Icon Set</a></li><li><a href="http://www.productivedreams.com/free-psd-avatar-icon-set/" title="Free PSD Avatar Icon Set">Free PSD Avatar Icon Set</a></li><li><a href="http://www.productivedreams.com/free-hand-drawn-illustration/" title="Free Hand-Drawn Illustrations!">Free Hand-Drawn Illustrations!</a></li><li><a href="http://www.productivedreams.com/dark-elegance-a-free-drupal-theme/" title="Dark Elegance: A Free Drupal Theme">Dark Elegance: A Free Drupal Theme</a></li><li><a href="http://www.productivedreams.com/merry-xmas-free-twitter-theme/" title="Merry X&#8217;mas: Free Twitter Theme">Merry X&#8217;mas: Free Twitter Theme</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=C2OjwyrMQqM:jsb3cDh3RT0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=C2OjwyrMQqM:jsb3cDh3RT0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=C2OjwyrMQqM:jsb3cDh3RT0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=C2OjwyrMQqM:jsb3cDh3RT0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=C2OjwyrMQqM:jsb3cDh3RT0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=C2OjwyrMQqM:jsb3cDh3RT0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=C2OjwyrMQqM:jsb3cDh3RT0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=C2OjwyrMQqM:jsb3cDh3RT0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=C2OjwyrMQqM:jsb3cDh3RT0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=C2OjwyrMQqM:jsb3cDh3RT0:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=C2OjwyrMQqM:jsb3cDh3RT0:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=C2OjwyrMQqM:jsb3cDh3RT0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=C2OjwyrMQqM:jsb3cDh3RT0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=C2OjwyrMQqM:jsb3cDh3RT0:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=C2OjwyrMQqM:jsb3cDh3RT0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=C2OjwyrMQqM:jsb3cDh3RT0:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/C2OjwyrMQqM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/page-peel-free-social-iconset/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.productivedreams.com/page-peel-free-social-iconset/</feedburner:origLink></item>
		<item>
		<title>It’s time to support me :)</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/hYgUkpE5rK8/</link>
		<comments>http://www.productivedreams.com/its-time-to-support/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 20:48:02 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Contests]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=985</guid>
		<description><![CDATA[Recently I posted that I was entering the &#8220;Best Wordpress Design Award&#8221; under the Grunge category. I am glad to let you know that I&#8217;ve been short listed. Now all I need is your support   <br />
If you like my  website, please vote for &#8220;Productive Dreams&#8221;. I’m joining in under “Best Grunge” category.POPULAR [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I posted that I was entering the &#8220;<strong>Best Wordpress Design Award</strong>&#8221; under the Grunge category. I am glad to let you know that I&#8217;ve been short listed. Now all I need is your support <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p>
<a href="http://wpwebhost.com/best-wordpress-design-awards-time-to-vote/#polls-4" ><img src="http://www.productivedreams.com/wp-content/uploads/2009/04/vote.jpg" alt="vote" title="vote" width="508" height="82" style="padding:0px;border-width:2px;" /></a>
<p>If you like my  website, please <a href="http://wpwebhost.com/best-wordpress-design-awards-time-to-vote/#polls-4">vote for &#8220;Productive Dreams&#8221;</a>. I’m joining in under “<strong>Best Grunge</strong>” category.</p><div class="relposts"><h3>POPULAR POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/its-twitter-time-free-vector-icon-set/" title="It&#8217;s Twitter Time! Free vector icon set">It&#8217;s Twitter Time! Free vector icon set</a></li><li><a href="http://www.productivedreams.com/free-twitter-bird-icon-set/" title="Free Twitter Bird Icon Set">Free Twitter Bird Icon Set</a></li><li><a href="http://www.productivedreams.com/wilddreams-another-free-wordpress-theme/" title="WildDreams - Another free wordpress theme!">WildDreams - Another free wordpress theme!</a></li><li><a href="http://www.productivedreams.com/imprezz-a-free-wordpress-theme/" title="ImpreZZ - Free Wordpress theme">ImpreZZ - Free Wordpress theme</a></li><li><a href="http://www.productivedreams.com/blakmagik-a-free-wordpress-theme/" title="BlakMagik, a free wordpress theme!">BlakMagik, a free wordpress theme!</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=hYgUkpE5rK8:b2r3N_8a_l4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=hYgUkpE5rK8:b2r3N_8a_l4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=hYgUkpE5rK8:b2r3N_8a_l4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=hYgUkpE5rK8:b2r3N_8a_l4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=hYgUkpE5rK8:b2r3N_8a_l4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=hYgUkpE5rK8:b2r3N_8a_l4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=hYgUkpE5rK8:b2r3N_8a_l4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=hYgUkpE5rK8:b2r3N_8a_l4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=hYgUkpE5rK8:b2r3N_8a_l4:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=hYgUkpE5rK8:b2r3N_8a_l4:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=hYgUkpE5rK8:b2r3N_8a_l4:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=hYgUkpE5rK8:b2r3N_8a_l4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=hYgUkpE5rK8:b2r3N_8a_l4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=hYgUkpE5rK8:b2r3N_8a_l4:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=hYgUkpE5rK8:b2r3N_8a_l4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=hYgUkpE5rK8:b2r3N_8a_l4:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/hYgUkpE5rK8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/its-time-to-support/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.productivedreams.com/its-time-to-support/</feedburner:origLink></item>
		<item>
		<title>Free Hand-Drawn Illustrations!</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/-TVhuHrYoO0/</link>
		<comments>http://www.productivedreams.com/free-hand-drawn-illustration/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 08:32:13 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Freebies]]></category>

		<category><![CDATA[Free]]></category>

		<category><![CDATA[Illustrations]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1226</guid>
		<description><![CDATA[Here goes something different for my dear readers    A free hand drawn illustration set. Yes, my fourth contribution to SmashingMagazine. This set contains 18 hand drawn illustrations which could be useful especially for designers who follow the hand-drawing trend. Preview<br />Where should I use these illustrations?I have listed down a few websites that [...]]]></description>
			<content:encoded><![CDATA[<p>Here goes something different for my dear readers <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span> <strong>A free hand drawn illustration set</strong>. Yes, my fourth contribution to SmashingMagazine. This set contains 18 hand drawn illustrations which could be useful especially for designers who follow the hand-drawing trend. </p><div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=Handdrawn-illustrations.zip" title="Version 1.0 downloaded 6950 times" ><img src="http://www.productivedreams.com/wp-content/themes/productivedreams/images/download_btn.jpg" alt="Download PD Hand Drawn Illustration Set Version 1.0" /></a><br /><a href="http://media1.smashingmagazine.com/images/painted-canvas-brushes/gopal-preview.jpg" title="Free Hand Drawn Illustrations" class="demo">Preview</a><br /></div>
<div id="attachment_972" class="wp-caption alignnone" style="width: 518px"><img src="http://www.productivedreams.com/wp-content/uploads/2009/03/hand-drawn-illustrations.jpg" alt="Hand Drawn Illustrations by Gopal Raju - ProductiveDreams" title="hand-drawn-illustrations" width="508" height="563" class="size-full wp-image-972" /><p class="wp-caption-text">Hand Drawn Illustrations by Gopal Raju - ProductiveDreams</p></div><h1>Where should I use these illustrations?</h1><p>I have listed down a few websites that follow this trend.</p>
<h1>1. Achstudio</h1>
<a href="http://www.achstudio.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/03/achstudio.jpg" alt="achstudio" title="achstudio" width="508" height="264" class="alignnone size-full wp-image-964" /></a><br /><h1>2. Chirag J Solanki</h1>
<a href="http://www.chiragjsolanki.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/03/chiragjsolanki.jpg" alt="chiragjsolanki" title="chiragjsolanki" width="508" height="264" class="alignnone size-full wp-image-966" /></a><br /><h1>3. Deborah Cavenaugh</h1>
<a href="http://deborahcavenaugh.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/03/deborahcavenaugh.jpg" alt="deborahcavenaugh" title="deborahcavenaugh" width="508" height="264" class="alignnone size-full wp-image-967" /></a><br /><h1>4. Hugs for Monsters</h1><a href="http://hugsformonsters.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/03/hugsformonsters.jpg" alt="hugsformonsters" title="hugsformonsters" width="508" height="264" class="alignnone size-full wp-image-968" /></a><br /><h1>5. Miki Mottes</h1><a href="http://www.mikimottes.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/03/mikimottes.jpg" alt="mikimottes" title="mikimottes" width="508" height="264" class="alignnone size-full wp-image-969" /></a>
<p>The illustrations in the set are purely vector, available in fireworks (png) format. The transparent PSD version has been included as well.</p><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/page-peel-free-social-iconset/" title="Page Peel - A Free Social Media Iconset">Page Peel - A Free Social Media Iconset</a></li><li><a href="http://www.productivedreams.com/free-twitter-bird-icon-set/" title="Free Twitter Bird Icon Set">Free Twitter Bird Icon Set</a></li><li><a href="http://www.productivedreams.com/dark-elegance-a-free-drupal-theme/" title="Dark Elegance: A Free Drupal Theme">Dark Elegance: A Free Drupal Theme</a></li><li><a href="http://www.productivedreams.com/merry-xmas-free-twitter-theme/" title="Merry X&#8217;mas: Free Twitter Theme">Merry X&#8217;mas: Free Twitter Theme</a></li><li><a href="http://www.productivedreams.com/wilddreams-another-free-wordpress-theme/" title="WildDreams - Another free wordpress theme!">WildDreams - Another free wordpress theme!</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=-TVhuHrYoO0:woRGsbJFWrY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=-TVhuHrYoO0:woRGsbJFWrY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=-TVhuHrYoO0:woRGsbJFWrY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=-TVhuHrYoO0:woRGsbJFWrY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=-TVhuHrYoO0:woRGsbJFWrY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=-TVhuHrYoO0:woRGsbJFWrY:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=-TVhuHrYoO0:woRGsbJFWrY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=-TVhuHrYoO0:woRGsbJFWrY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=-TVhuHrYoO0:woRGsbJFWrY:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=-TVhuHrYoO0:woRGsbJFWrY:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=-TVhuHrYoO0:woRGsbJFWrY:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=-TVhuHrYoO0:woRGsbJFWrY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=-TVhuHrYoO0:woRGsbJFWrY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=-TVhuHrYoO0:woRGsbJFWrY:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=-TVhuHrYoO0:woRGsbJFWrY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=-TVhuHrYoO0:woRGsbJFWrY:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/-TVhuHrYoO0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/free-hand-drawn-illustration/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.productivedreams.com/free-hand-drawn-illustration/</feedburner:origLink></item>
		<item>
		<title>Best Wordpress Design Award!</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/F9f4XBGaQqc/</link>
		<comments>http://www.productivedreams.com/best-wordpress-design-award/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 20:20:58 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=952</guid>
		<description><![CDATA[I am really excited to be one of the participants for the wordpress design competetion, organized by WPWebHost! This competetion is for Wordpress-powered websites and there are 5 categories. Please check out WPWebHost for more details.I’m joining in under “Best Grunge” category. WPWebHost team will select a top 10 websites of each category and the [...]]]></description>
			<content:encoded><![CDATA[<div class="post-contents">I am really excited to be one of the participants for the wordpress design competetion, organized by <strong>WPWebHost</strong>! This competetion is for Wordpress-powered websites and there are 5 categories. Please check out <a href="http://wpwebhost.com/best-wordpress-design-award/">WPWebHost</a> for more details.<br /><br />I’m joining in under “<strong>Best Grunge</strong>” category. <br /><br /><a href="http://wpwebhost.com/best-wordpress-design-award/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/03/wpwebhost.jpg" alt="wpwebhost" title="wpwebhost" width="508" height="329" class="alignnone size-full wp-image-953" /></a><br /><br />WPWebHost team will select a top 10 websites of each category and the public (YOU!) shall vote for the winners. Yep guys, it&#8217;s time for you to support me<span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </span><br /></div><div class="relposts"><h3>POPULAR POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/its-twitter-time-free-vector-icon-set/" title="It&#8217;s Twitter Time! Free vector icon set">It&#8217;s Twitter Time! Free vector icon set</a></li><li><a href="http://www.productivedreams.com/free-twitter-bird-icon-set/" title="Free Twitter Bird Icon Set">Free Twitter Bird Icon Set</a></li><li><a href="http://www.productivedreams.com/wilddreams-another-free-wordpress-theme/" title="WildDreams - Another free wordpress theme!">WildDreams - Another free wordpress theme!</a></li><li><a href="http://www.productivedreams.com/imprezz-a-free-wordpress-theme/" title="ImpreZZ - Free Wordpress theme">ImpreZZ - Free Wordpress theme</a></li><li><a href="http://www.productivedreams.com/blakmagik-a-free-wordpress-theme/" title="BlakMagik, a free wordpress theme!">BlakMagik, a free wordpress theme!</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=F9f4XBGaQqc:JHZHwh6-DCg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=F9f4XBGaQqc:JHZHwh6-DCg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=F9f4XBGaQqc:JHZHwh6-DCg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=F9f4XBGaQqc:JHZHwh6-DCg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=F9f4XBGaQqc:JHZHwh6-DCg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=F9f4XBGaQqc:JHZHwh6-DCg:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=F9f4XBGaQqc:JHZHwh6-DCg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=F9f4XBGaQqc:JHZHwh6-DCg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=F9f4XBGaQqc:JHZHwh6-DCg:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=F9f4XBGaQqc:JHZHwh6-DCg:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=F9f4XBGaQqc:JHZHwh6-DCg:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=F9f4XBGaQqc:JHZHwh6-DCg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=F9f4XBGaQqc:JHZHwh6-DCg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=F9f4XBGaQqc:JHZHwh6-DCg:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=F9f4XBGaQqc:JHZHwh6-DCg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=F9f4XBGaQqc:JHZHwh6-DCg:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/F9f4XBGaQqc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/best-wordpress-design-award/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.productivedreams.com/best-wordpress-design-award/</feedburner:origLink></item>
		<item>
		<title>ImpreZZ - Free Wordpress theme</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/a8_ekqNpVGA/</link>
		<comments>http://www.productivedreams.com/imprezz-a-free-wordpress-theme/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 14:25:14 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Freebies]]></category>

		<category><![CDATA[themes]]></category>

		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=893</guid>
		<description><![CDATA[I am happy to release my third free wordpress theme - ImpreZZ for SmashingMagazine and for my readers. This is a 3 column based design with a third dimension for the second column. This theme supports wordpress 2.7.1 and works well with the  zdcomments widget (which is used to display the top commenters). The [...]]]></description>
			<content:encoded><![CDATA[<div class="post-contents">I am happy to release my third free wordpress theme - <strong>ImpreZZ</strong> for <a href="http://www.smashingmagazine.com/2008/11/10/black-magic-a-free-wordpress-theme/">SmashingMagazine</a> and for my readers. This is a 3 column based design with a third dimension for the second column. This theme supports wordpress 2.7.1 and works well with the <a href="http://wordpress.org/extend/plugins/zdcommentswidget/"> zdcomments widget</a> (which is used to display the top commenters). <br /><br />The psd source file of the logo has been included with the package. This design can be used for any projects. Enjoy!!<br />
<div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=ImpreZZ.zip" title="Version 1.0 downloaded 16791 times" ><img src="http://www.productivedreams.com/wp-content/themes/productivedreams/images/download_btn.jpg" alt="Download ImpreZZ - A free wordpress theme Version 1.0" /></a><br /><a href="http://productivedreams.com/wp-content/uploads/imprezz-preview.jpg" target="_blank" title="Page Peel social Iconset" class="demo">Preview</a><br /></div>
<img src="http://www.productivedreams.com/wp-content/uploads/2009/02/imprezz-post.jpg" alt="imprezz-a free wordpress theme" title="imprezz-post" width="508" height="349" /><br /></div><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/wilddreams-another-free-wordpress-theme/" title="WildDreams - Another free wordpress theme!">WildDreams - Another free wordpress theme!</a></li><li><a href="http://www.productivedreams.com/blakmagik-a-free-wordpress-theme/" title="BlakMagik, a free wordpress theme!">BlakMagik, a free wordpress theme!</a></li><li><a href="http://www.productivedreams.com/merry-xmas-free-twitter-theme/" title="Merry X&#8217;mas: Free Twitter Theme">Merry X&#8217;mas: Free Twitter Theme</a></li><li><a href="http://www.productivedreams.com/another-12-beautiful-twitter-themes/" title="Another 15 Beautiful Twitter Themes">Another 15 Beautiful Twitter Themes</a></li><li><a href="http://www.productivedreams.com/10-beautiful-twitter-themes/" title="12 Beautiful Twitter Themes">12 Beautiful Twitter Themes</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=a8_ekqNpVGA:HqviFIiXg3U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a8_ekqNpVGA:HqviFIiXg3U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a8_ekqNpVGA:HqviFIiXg3U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=a8_ekqNpVGA:HqviFIiXg3U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a8_ekqNpVGA:HqviFIiXg3U:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a8_ekqNpVGA:HqviFIiXg3U:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a8_ekqNpVGA:HqviFIiXg3U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=a8_ekqNpVGA:HqviFIiXg3U:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a8_ekqNpVGA:HqviFIiXg3U:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a8_ekqNpVGA:HqviFIiXg3U:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=a8_ekqNpVGA:HqviFIiXg3U:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a8_ekqNpVGA:HqviFIiXg3U:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=a8_ekqNpVGA:HqviFIiXg3U:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a8_ekqNpVGA:HqviFIiXg3U:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=a8_ekqNpVGA:HqviFIiXg3U:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=a8_ekqNpVGA:HqviFIiXg3U:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/a8_ekqNpVGA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/imprezz-a-free-wordpress-theme/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.productivedreams.com/imprezz-a-free-wordpress-theme/</feedburner:origLink></item>
		<item>
		<title>Web2.0 Rockets and Gliders!</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/bBtIBPBUj7M/</link>
		<comments>http://www.productivedreams.com/web20-rockets-and-gliders/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 15:54:41 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Inspirations]]></category>

		<category><![CDATA[Inspiration]]></category>

		<category><![CDATA[Trends]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=932</guid>
		<description><![CDATA[Web2.0 rockets and gliders are visually appealing elements, normally used to indicate speed. Here goes a list of sites that follow this trend.1. A Pilot<br />2. Div Voted<br />3. Drupal Con<br />4. Get Me Fast<br />5. iSlayer<br />6. Jeff Sarmiento<br />7. Little Kids Bedrooms<br />8. Rawkes<br />9. Sopa<br />10. Mix Online<br />RELATED POSTSTrend Review: Price Tags (Part 2)Trend Review: RainbowsTrend Review: Coffee Cups in webdesignParachutes/Hot [...]]]></description>
			<content:encoded><![CDATA[<div class="post-contents">Web2.0 rockets and gliders are visually appealing elements, normally used to indicate speed. Here goes a list of sites that follow this trend.<br /><h1>1. A Pilot</h1>
<a href="http://apilot.no/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/apilot.jpg" alt="apilot" title="apilot" width="508" height="264" class="alignnone size-full wp-image-933" /></a><br /><h1>2. Div Voted</h1>
<a href="http://www.divvoted.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/divvoted.jpg" alt="divvoted" title="divvoted" width="508" height="264" class="alignnone size-full wp-image-934" /></a><br /><h1>3. Drupal Con</h1>
<a href="http://www.drupalcon.org/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/drupalcon.jpg" alt="drupalcon" title="drupalcon" width="508" height="264" class="alignnone size-full wp-image-935" /></a><br /><h1>4. Get Me Fast</h1>
<a href="http://www.getmefast.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/getmefast.jpg" alt="getmefast" title="getmefast" width="508" height="264" class="alignnone size-full wp-image-936" /></a><br /><h1>5. iSlayer</h1>
<a href="http://islayer.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/islayer.jpg" alt="islayer" title="islayer" width="508" height="264" class="alignnone size-full wp-image-937" /></a><br /><h1>6. Jeff Sarmiento</h1>
<a href="http://www.jeffsarmiento.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/jeffsarmiento.jpg" alt="jeffsarmiento" title="jeffsarmiento" width="508" height="264" class="alignnone size-full wp-image-938" /></a><br /><h1>7. Little Kids Bedrooms</h1>
<a href="http://www.littlekidsbedrooms.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/littlekidsbedrooms.jpg" alt="littlekidsbedrooms" title="littlekidsbedrooms" width="508" height="264" class="alignnone size-full wp-image-939" /></a><br /><h1>8. Rawkes</h1>
<a href="http://rawkes.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/rawkes.jpg" alt="rawkes" title="rawkes" width="508" height="264" class="alignnone size-full wp-image-940" /></a><br /><h1>9. Sopa</h1>
<a href="http://www.sopadeideias.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/sopadeideias.jpg" alt="sopadeideias" title="sopadeideias" width="508" height="264" class="alignnone size-full wp-image-942" /></a><br /><h1>10. Mix Online</h1>
<a href="http://visitmix.com/Lab/Oxite"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/visitmix.jpg" alt="visitmix" title="visitmix" width="508" height="264" class="alignnone size-full wp-image-943" /></a><br /></div><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/another-set-of-price-tag-based-designs/" title="Trend Review: Price Tags (Part 2)">Trend Review: Price Tags (Part 2)</a></li><li><a href="http://www.productivedreams.com/rainbow-based-designs-a-new-trend/" title="Trend Review: Rainbows">Trend Review: Rainbows</a></li><li><a href="http://www.productivedreams.com/coffeecups/" title="Trend Review: Coffee Cups in webdesign">Trend Review: Coffee Cups in webdesign</a></li><li><a href="http://www.productivedreams.com/parachutes-an-emerging-trend-in-webdesign/" title="Parachutes/Hot Air Balloons - An Emerging Trend in Webdesign">Parachutes/Hot Air Balloons - An Emerging Trend in Webdesign</a></li><li><a href="http://www.productivedreams.com/trend-review-clip-n-paper/" title="Trend Review: Clip &#8216;n&#8217; Paper">Trend Review: Clip &#8216;n&#8217; Paper</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=bBtIBPBUj7M:GwWm_dvZovo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=bBtIBPBUj7M:GwWm_dvZovo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=bBtIBPBUj7M:GwWm_dvZovo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=bBtIBPBUj7M:GwWm_dvZovo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=bBtIBPBUj7M:GwWm_dvZovo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=bBtIBPBUj7M:GwWm_dvZovo:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=bBtIBPBUj7M:GwWm_dvZovo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=bBtIBPBUj7M:GwWm_dvZovo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=bBtIBPBUj7M:GwWm_dvZovo:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=bBtIBPBUj7M:GwWm_dvZovo:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=bBtIBPBUj7M:GwWm_dvZovo:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=bBtIBPBUj7M:GwWm_dvZovo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=bBtIBPBUj7M:GwWm_dvZovo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=bBtIBPBUj7M:GwWm_dvZovo:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=bBtIBPBUj7M:GwWm_dvZovo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=bBtIBPBUj7M:GwWm_dvZovo:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/bBtIBPBUj7M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/web20-rockets-and-gliders/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.productivedreams.com/web20-rockets-and-gliders/</feedburner:origLink></item>
		<item>
		<title>Third Dimension/Depth in Web design</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/uY_ySemXXAY/</link>
		<comments>http://www.productivedreams.com/third-dimension-in-web-design/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 19:46:23 +0000</pubDate>
		<dc:creator>Gopal</dc:creator>
		
		<category><![CDATA[Inspirations]]></category>

		<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=903</guid>
		<description><![CDATA[Do you remember those folded 3d menus or elements with shadows, coming from behind the web page? If you can&#8217;t, here goes a hand picked set of websites with those clean 3d elements.1. Alexandru Cohaniuc<br />2. Burger King Studio<br />3. Change in Command<br />4. Cognigen Corp<br />5. From the Couch<br />6. Sarah Longnecker<br />7. The Society of Publication Designers<br />8. The Autumn [...]]]></description>
			<content:encoded><![CDATA[<div class="post-contents">Do you remember those folded <strong>3d menus</strong> or elements with shadows, coming from behind the web page? If you can&#8217;t, here goes a hand picked set of websites with those clean 3d elements.<br /><h1>1. Alexandru Cohaniuc</h1>
<a href="http://www.alexcohaniuc.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/alexcohaniuc.jpg" alt="alexcohaniuc" title="alexcohaniuc" width="508" height="264" /></a><br /><h1>2. Burger King Studio</h1>
<a href="https://www.burgerkingstudio.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/burgerkingstudio.jpg" alt="burgerkingstudio 3d menu" title="burgerkingstudio 3d menu" width="508" height="264" /></a><br /><h1>3. Change in Command</h1>
<a href="http://changeincommand.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/changeincommand.jpg" alt="changeincommand" title="changeincommand" width="508" height="264"  /></a><br /><h1>4. Cognigen Corp</h1>
<a href="http://www.cognigencorp.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/cognigencorp.jpg" alt="cognigencorp 3d menu" title="cognigencorp 3d menu" width="508" height="264"  /></a><br /><h1>5. From the Couch</h1>
<a href="http://www.from-the-couch.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/from-the-couch.jpg" alt="from-the-couch 3d titles" title="from-the-couch 3d titles" width="508" height="264" class="alignnone size-full wp-image-911" /></a><br /><h1>6. Sarah Longnecker</h1>
<a href="http://sarahlongnecker.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/sarahlongnecker.jpg" alt="sarahlongnecker 3d navigation" title="sarahlongnecker 3d navigation" width="508" height="264" class="alignnone size-full wp-image-912" /></a><br /><h1>7. The Society of Publication Designers</h1>
<a href="http://www.spd.org/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/spd.jpg" alt="spd" title="spd" width="508" height="264" class="alignnone size-full wp-image-913" /></a><br /><h1>8. The Autumn Film</h1>
<a href="http://theautumnfilm.com/red-white-sale/us.html"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/theautumnfilm.jpg" alt="theautumnfilm" title="theautumnfilm" width="508" height="264" class="alignnone size-full wp-image-915" /></a><br /><h1>9. Tmynus</h1>
<a href="http://www.tmynus.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/tmynus.jpg" alt="tmynus" title="tmynus" width="508" height="264" class="alignnone size-full wp-image-916" /></a><br /><h1>10. Blue Dots Design</h1>
<a href="http://www.bluedotsdesign.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/02/bluedotsdesign.jpg" alt="bluedotsdesign" title="bluedotsdesign" width="508" height="264" class="alignnone size-full wp-image-917" /></a><br /></div><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/web20-rockets-and-gliders/" title="Web2.0 Rockets and Gliders!">Web2.0 Rockets and Gliders!</a></li><li><a href="http://www.productivedreams.com/tweet-display/" title="Best ways to display twitter updates">Best ways to display twitter updates</a></li><li><a href="http://www.productivedreams.com/coffeecups/" title="Trend Review: Coffee Cups in webdesign">Trend Review: Coffee Cups in webdesign</a></li><li><a href="http://www.productivedreams.com/parachutes-an-emerging-trend-in-webdesign/" title="Parachutes/Hot Air Balloons - An Emerging Trend in Webdesign">Parachutes/Hot Air Balloons - An Emerging Trend in Webdesign</a></li><li><a href="http://www.productivedreams.com/trend-review-clip-n-paper/" title="Trend Review: Clip &#8216;n&#8217; Paper">Trend Review: Clip &#8216;n&#8217; Paper</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/productivedreams?a=GWoDNUSf"><img src="http://feeds.feedburner.com/~f/productivedreams?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/productivedreams?a=Yav9FvRQ"><img src="http://feeds.feedburner.com/~f/productivedreams?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/productivedreams?a=720mmBAR"><img src="http://feeds.feedburner.com/~f/productivedreams?i=720mmBAR" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/productivedreams?a=XFK77AF6"><img src="http://feeds.feedburner.com/~f/productivedreams?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/productivedreams?a=xRh2kLsW"><img src="http://feeds.feedburner.com/~f/productivedreams?d=129" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/productivedreams?a=Ds8J0vR9"><img src="http://feeds.feedburner.com/~f/productivedreams?i=Ds8J0vR9" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/productivedreams?a=ajvpi36b"><img src="http://feeds.feedburner.com/~f/productivedreams?d=54" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/productivedreams?a=TO3yz4aq"><img src="http://feeds.feedburner.com/~f/productivedreams?i=TO3yz4aq" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/productivedreams?a=0lhsVhyb"><img src="http://feeds.feedburner.com/~f/productivedreams?i=0lhsVhyb" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/productivedreams?a=M0gUb45f"><img src="http://feeds.feedburner.com/~f/productivedreams?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/productivedreams?a=Z0NREmx9"><img src="http://feeds.feedburner.com/~f/productivedreams?i=Z0NREmx9" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/uY_ySemXXAY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/third-dimension-in-web-design/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.productivedreams.com/third-dimension-in-web-design/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 1.367 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-07-11 21:26:31 --><!-- Compression = gzip -->
