<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Productivedreams.com</title>
	
	<link>http://www.productivedreams.com</link>
	<description>A blog to keep you updated on the latest design trends.</description>
	<lastBuildDate>Sat, 27 Mar 2010 04:09:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</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" type="application/rss+xml" href="http://feeds.feedburner.com/productivedreams" /><feedburner:info uri="productivedreams" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>productivedreams</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>A simple CSS based usability tip for search buttons</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/0LbVBYcNG0M/</link>
		<comments>http://www.productivedreams.com/simple-css-based-usability-tip-for-search-buttons/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 11:59:09 +0000</pubDate>
		<dc:creator>Gopal Raju</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=1840</guid>
		<description><![CDATA[This is a small tip to improve the usability of search fields. I realized the need of this while working on a recent project and thought it was good enough to share with my readers   Do you have the habit of hitting the search button multiple times even before it loads the search [...]]]></description>
			<content:encoded><![CDATA[<p>This is a small tip to improve the usability of search fields. I realized the need of this while working on a recent project and thought it was good enough to share with my readers <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p><p>Do you have the habit of hitting the search button multiple times even before it loads the search results? Well&#8230; I used to do that and so do many other users. Clicking the search button multiple times results in additional server requests and slows down the page&#8217;s loading time. </p>
<h1>Why do users click again? </h1><p>Because they are users! They aren&#8217;t developers who understand what happens in the back end.</p><p>Its our job as developers/designers to let the user know that the results are being loaded and to ask them to wait until it loads.</p>
<h1>How do I do it with just CSS?</h1><p>Its pretty simple. Click and hold the search button below and see.</p><span id="more-1840"></span><br /><iframe src="http://www.productivedreams.com/wp-content/themes/pd/workshop/usable-search/" height="40px" scrolling="no" style="overflow:hidden;"><br /></iframe>
<p>I am sure, I don&#8217;t have to explain how it works for the experts, but if you are novice continue reading&#8230;</p><p>The trick is to use CSS sprites and show the animated loader image while the user clicks the button(on focus), indicating that the page is being loaded. You can download the sprite <a href="http://www.productivedreams.com/wp-content/themes/pd/workshop/usable-search/search-sprite.gif" target="_blank">here</a>. </p>
<h1>Now, how do I avoid multiple clicks?</h1><p>Its impossible to disable a button just with CSS, but we can ask the user to wait by replacing the hand/pointer with a &#8220;wait&#8221; cursor. So this is how the final CSS code looks like.</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%">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.submit{
</pre></td></tr><tr><td class="devcodelines" width="1%">03</td><td class="devcodelinesarea"><pre class="devcode devcodeline">width:16px;
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">04</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">height:16x;
</pre></td></tr><tr><td class="devcodelines" width="1%">05</td><td class="devcodelinesarea"><pre class="devcode devcodeline">display:block;
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">06</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">overflow:hidden;
</pre></td></tr><tr><td class="devcodelines" width="1%">07</td><td class="devcodelinesarea"><pre class="devcode devcodeline">text-indent:-999px; /* To remove any default text on the button*/
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">08</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">line-height:16px; /* required for safari */
</pre></td></tr><tr><td class="devcodelines" width="1%">09</td><td class="devcodelinesarea"><pre class="devcode devcodeline">background:url(search-sprite.gif) no-repeat 0 0; /* This will display the search icon by default */
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">10</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">cursor:pointer; /* Hand cursor for the normal state */
</pre></td></tr><tr><td class="devcodelines" width="1%">11</td><td class="devcodelinesarea"><pre class="devcode devcodeline">border:none;
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">12</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">padding:0;
</pre></td></tr><tr><td class="devcodelines" width="1%">13</td><td class="devcodelinesarea"><pre class="devcode devcodeline">}
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">14</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&nbsp;</pre></td></tr><tr><td class="devcodelines" width="1%">15</td><td class="devcodelinesarea"><pre class="devcode devcodeline">input.submit:hover{
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">16</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">background-position: 0 -16px; /* This will display the dark search icon on hover */
</pre></td></tr><tr><td class="devcodelines" width="1%">17</td><td class="devcodelinesarea"><pre class="devcode devcodeline">}
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">18</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&nbsp;</pre></td></tr><tr><td class="devcodelines" width="1%">19</td><td class="devcodelinesarea"><pre class="devcode devcodeline">input.submit:active{
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">20</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">background-position: 0 -32px; /* And finally, this is the one that shows the loader */
</pre></td></tr><tr><td class="devcodelines" width="1%">21</td><td class="devcodelinesarea"><pre class="devcode devcodeline">cursor:wait; /* Shows the wait cursor on click */
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">22</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">}
</pre></td></tr><tr><td class="devcodelines" width="1%">23</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre><div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=usable-search.zip" title="Version 1.0 downloaded 337 times" ><img src="" alt="Download CSS Based Usability Tip for Search Buttons Version 1.0" /></a> <br /></div><p>If you really want to disable the button, check out this <a href="http://jquery-howto.blogspot.com/2009/05/disable-submit-button-on-form-submit.html">JQuery solution</a>. And, don't forget to put in your thoughts and ideas.</p>

<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/properties-that-were-impossible-to-implement-in-ie6/" title="10 CSS properties that &#8216;were&#8217; impossible to implement in IE6">10 CSS properties that &#8216;were&#8217; impossible to implement in IE6</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/common-requirements-for-website-design-and-corresponding-jquery-solutions/" title="3 common requirements/issues and the corresponding Jquery solutions for your next web project">3 common requirements/issues and the corresponding Jquery solutions for your next web project</a></li><li><a href="http://www.productivedreams.com/making-gallery-submissions-easy-for-designers/" title="Making gallery submissions easy for designers">Making gallery submissions easy for designers</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=0LbVBYcNG0M:4nfEXC1b79Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=0LbVBYcNG0M:4nfEXC1b79Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=0LbVBYcNG0M:4nfEXC1b79Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=0LbVBYcNG0M:4nfEXC1b79Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=0LbVBYcNG0M:4nfEXC1b79Q:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=0LbVBYcNG0M:4nfEXC1b79Q:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=0LbVBYcNG0M:4nfEXC1b79Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=0LbVBYcNG0M:4nfEXC1b79Q:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=0LbVBYcNG0M:4nfEXC1b79Q:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=0LbVBYcNG0M:4nfEXC1b79Q:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=0LbVBYcNG0M:4nfEXC1b79Q:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=0LbVBYcNG0M:4nfEXC1b79Q:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=0LbVBYcNG0M:4nfEXC1b79Q:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=0LbVBYcNG0M:4nfEXC1b79Q:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=0LbVBYcNG0M:4nfEXC1b79Q:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=0LbVBYcNG0M:4nfEXC1b79Q:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/0LbVBYcNG0M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/simple-css-based-usability-tip-for-search-buttons/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		<feedburner:origLink>http://www.productivedreams.com/simple-css-based-usability-tip-for-search-buttons/</feedburner:origLink></item>
		<item>
		<title>3 common requirements/issues and the corresponding Jquery solutions for your next web project</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/TbErpxm9NgU/</link>
		<comments>http://www.productivedreams.com/common-requirements-for-website-design-and-corresponding-jquery-solutions/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 11:30:10 +0000</pubDate>
		<dc:creator>Gopal Raju</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1756</guid>
		<description><![CDATA[Hi friends&#8230; Another post to boost your productivity   Recently, while working on some client projects, I noticed a few requirements(I know there are many) that were common. I strongly feel, this will be useful for your next web project.<br />1. Empty form field value on focus/click<br />The requirement/issue:
This is a very common requirement. You would [...]]]></description>
			<content:encoded><![CDATA[Hi friends&#8230; Another post to boost your productivity <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span><p>Recently, while working on some client projects, I noticed a few requirements(I know there are many) that were common. I strongly feel, this will be useful for your next web project.</p>
<br /><h1>1. Empty form field value on focus/click</h1>
<img src="http://www.productivedreams.com/wp-content/uploads/2010/03/form-focus.jpg" alt="form-focus" title="form-focus" width="508" height="209" class="alignnone size-full wp-image-1808" /><span id="more-1756"></span><br /><strong>The requirement/issue:</strong>
<p>This is a very common requirement. You would have noticed form fields that have a value by default which disappears when you click/focus on them. When you click outside, the value appears again.</p>
<strong>Solution:</strong><br /><a href="http://www.madewithlove.be/talk/the-jquery-emptyonclick-plugin">The jQuery emptyonclick Plugin</a> works like a charm. All you need to do is download this plugin to your project directory and include the following code within the head tags.<br /><br /><pre class="devcodeblock" title="Javascript"><table class="devcodetools"><tbody><tr><td>Javascript</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">&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot; type=&quot;text/javascript&quot;&gt;
</pre></td></tr><tr><td class="devcodelines" width="1%">03</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;/script&gt;
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">04</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&nbsp;</pre></td></tr><tr><td class="devcodelines" width="1%">05</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;script charset=&quot;utf-8&quot; type=&quot;text/javascript&quot; src=&quot;jquery.emptyonclick.js&quot;&gt;&lt;/script&gt;
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">06</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&nbsp;</pre></td></tr><tr><td class="devcodelines" width="1%">07</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;script type=&quot;text/javascript&quot;&gt;
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">08</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">$(document).ready(function(){
</pre></td></tr><tr><td class="devcodelines" width="1%">09</td><td class="devcodelinesarea"><pre class="devcode devcodeline">    $('.emptyonclick').emptyonclick();
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">10</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">});
</pre></td></tr><tr><td class="devcodelines" width="1%">11</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;/script&gt;
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">12</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre>
<br />Now add the class "emptyonclick" to all form fields that you would like to empty onclick.<br /><br />You can find more about the usage <a href="http://www.madewithlove.be/talk/the-jquery-emptyonclick-plugin">here</a><br /><br /><h1>2. Truncate lengthy text with either a "more" button or 3 dots at the end</h1>
<img src="http://www.productivedreams.com/wp-content/uploads/2010/03/truncate-with-dots.jpg" alt="truncate-with-dots" title="truncate-with-dots" width="508" height="209" class="alignnone size-full wp-image-1809" /><br /><strong>The requirement/issue:</strong>
<p>I am sure that most of you would already have faced this issue, especially with lengthy breadcrumbs. You don't have to run behind and bother a programmer anymore for a solution.</p>
<strong>Solution:</strong>
<p><a href="http://www.reindel.com/truncate">Truncate</a> is an awesome jQuery plugin that helps you achieve this in seconds. Download the plugin and include the following code within the head tags</p>
<br /><pre class="devcodeblock" title="Javascript"><table class="devcodetools"><tbody><tr><td>Javascript</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">&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot; type=&quot;text/javascript&quot;&gt;
</pre></td></tr><tr><td class="devcodelines" width="1%">03</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;/script&gt;
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">04</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&nbsp;</pre></td></tr><tr><td class="devcodelines" width="1%">05</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;script charset=&quot;utf-8&quot; type=&quot;text/javascript&quot; src=&quot;jquery.truncate-2.3.js&quot;&gt;&lt;/script&gt;
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">06</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&nbsp;</pre></td></tr><tr><td class="devcodelines" width="1%">07</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot;&gt;
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">08</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">$(function() {
</pre></td></tr><tr><td class="devcodelines" width="1%">09</td><td class="devcodelinesarea"><pre class="devcode devcodeline">    $(&quot;.classname&quot;).truncate( 60 );
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">10</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">});
</pre></td></tr><tr><td class="devcodelines" width="1%">11</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;/script&gt;
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">12</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&nbsp;</pre></td></tr><tr><td class="devcodelines" width="1%">13</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre><p>Replace the .classname with the class name of your HTML element that contains the text. Also, the number 60 in the code above is the maximum number of characters you would like to allow before truncating. Replace that with your value.</p><p>Adding a "more" link at the end of the text is another cool usage. You can find more about the usage <a href="http://www.reindel.com/truncate/">here</a>.</p>
<h1>3. Adding classes to the first and last list items</h1>
<img src="http://www.productivedreams.com/wp-content/uploads/2010/03/first-last-class-li.jpg" alt="first-last-class-li" title="first-last-class-li" width="508" height="209" class="alignnone size-full wp-image-1810" /><br /><strong>The requirement/issue:</strong>
<p>I don't think there will be a HTML/CSS developer who haven't abused wordpress for not adding first and last classes for their lists</p><p>Just imagine a menu that needs a different background for the first and last list item. You'll find this handy when creating themes for a CMS like wordpress where you have no control over the HTML code.</p>
<strong>Solution:</strong>
<p>After spending a few minutes on google, I found <a href="http://snipplr.com/view/26333/jquery--add-first-and-last-class-to-li/">this snippet</a></p>
<pre class="devcodeblock" title="Javascript"><table class="devcodetools"><tbody><tr><td>Javascript</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">&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot; type=&quot;text/javascript&quot;&gt;
</pre></td></tr><tr><td class="devcodelines" width="1%">03</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;/script&gt;
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">04</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&lt;script type=&quot;text/javascript&quot;&gt;
</pre></td></tr><tr><td class="devcodelines" width="1%">05</td><td class="devcodelinesarea"><pre class="devcode devcodeline">$(function(){
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">06</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">  $(&quot;li:first-child&quot;).addClass(&quot;first_item&quot;);
</pre></td></tr><tr><td class="devcodelines" width="1%">07</td><td class="devcodelinesarea"><pre class="devcode devcodeline">  $(&quot;li:last-child&quot;).addClass(&quot;last_item&quot;);
</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">08</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">});
</pre></td></tr><tr><td class="devcodelines" width="1%">09</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;/script&gt;
</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><p>This can also be achieved using the :first-child and :last-child CSS pseudo-classes.</p><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/simple-css-based-usability-tip-for-search-buttons/" title="A simple CSS based usability tip for search buttons">A simple CSS based usability tip for search buttons</a></li><li><a href="http://www.productivedreams.com/making-gallery-submissions-easy-for-designers/" title="Making gallery submissions easy for designers">Making gallery submissions easy for designers</a></li><li><a href="http://www.productivedreams.com/everything-you-need-to-know-about-parallax/" title="Everything you need to know about Parallax">Everything you need to know about Parallax</a></li><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></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=TbErpxm9NgU:HRfa7O_nlCM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=TbErpxm9NgU:HRfa7O_nlCM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=TbErpxm9NgU:HRfa7O_nlCM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=TbErpxm9NgU:HRfa7O_nlCM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=TbErpxm9NgU:HRfa7O_nlCM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=TbErpxm9NgU:HRfa7O_nlCM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=TbErpxm9NgU:HRfa7O_nlCM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=TbErpxm9NgU:HRfa7O_nlCM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=TbErpxm9NgU:HRfa7O_nlCM:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=TbErpxm9NgU:HRfa7O_nlCM:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=TbErpxm9NgU:HRfa7O_nlCM:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=TbErpxm9NgU:HRfa7O_nlCM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=TbErpxm9NgU:HRfa7O_nlCM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=TbErpxm9NgU:HRfa7O_nlCM:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=TbErpxm9NgU:HRfa7O_nlCM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=TbErpxm9NgU:HRfa7O_nlCM:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/TbErpxm9NgU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/common-requirements-for-website-design-and-corresponding-jquery-solutions/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		<feedburner:origLink>http://www.productivedreams.com/common-requirements-for-website-design-and-corresponding-jquery-solutions/</feedburner:origLink></item>
		<item>
		<title>Making gallery submissions easy for designers</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/c4rbeS4xG74/</link>
		<comments>http://www.productivedreams.com/making-gallery-submissions-easy-for-designers/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 09:56:44 +0000</pubDate>
		<dc:creator>Gopal Raju</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[logos]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1696</guid>
		<description><![CDATA[Submitting designs to galleries has always been a hectic task for designers. Do you agree with me? This post is to give you an overview on the procedure I follow to make this easy. If you have better ideas please do contribute via the comment form below.Requirements1. Firefox Sorry IE users!2. InFormEnter AddOn for firefox3. [...]]]></description>
			<content:encoded><![CDATA[Submitting designs to galleries has always been a hectic task for designers. Do you agree with me? This post is to give you an overview on the procedure I follow to make this easy. If you have better ideas please do contribute via the comment form below.<br /><br /><strong>Requirements</strong><br />1. <a href="http://www.mozilla.com/en-US/">Firefox</a> Sorry IE users!<br />2. <a href="https://addons.mozilla.org/en-US/firefox/addon/673">InFormEnter</a> AddOn for firefox<br />3. Details about your logo/website (will explain this below)<br />4. Image of your logo in various dimensions (will explain this as well)<br /><br /><img src="http://www.productivedreams.com/wp-content/uploads/2010/03/gallery-submission-firefox.jpg" alt="gallery-submission-firefox" title="gallery-submission-firefox" width="508" height="249" class="alignnone size-full wp-image-1750" /><br /><br />I assume that you&#8217;ve already read my post &#8211; <a href="http://www.productivedreams.com/20-sites-to-submit-your-logos/">22 Sites &#038; Galleries to submit your logos</a>. In this post I&#8217;ll walk you through my logo design submission process, which can be made use for CSS gallery submissions as well. <br /><br /><h1>Step 1: Bookmarking the gallery forms</h1>
<span id="more-1696"></span><br />The first step is to bookmark all the submission forms of famous galleries. I know it&#8217;s not that easy, but trust me it will make things easy. Open a blank firefox window and then open all the logo gallery submission forms mentioned <a href="http://www.productivedreams.com/20-sites-to-submit-your-logos/">here</a> in separate tabs. Once you&#8217;ve opened all, go to Bookmarks Menu &gt;  Bookmark All Tabs (or Shift + Cmd/Ctrl + D)<br /><br /><img src="http://www.productivedreams.com/wp-content/uploads/2010/03/bookmarking-using-firefox.jpg" alt="Bookmarking-using-firefox" title="Bookmarking-using-firefox" width="508" height="224" class="alignnone size-full wp-image-1710" /><br /><br />This would open a pop-up, wherein you can add a name for the bookmark folder. Choose &#8216;Bookmarks Toolbar&#8217; from the dropdown and click the &#8220;Add Bookmarks button&#8221;. <br /><img src="http://www.productivedreams.com/wp-content/uploads/2010/03/bookmark-popup3.jpg" alt="bookmark-popup" title="bookmark-popup" width="508" height="183" class="alignnone size-full wp-image-1720" /><br />Awesome! You&#8217;ve created a &#8216;Bookmark folder&#8217; for your logo submission which you can now access from your Bookmarks toolbar.<br /><img src="http://www.productivedreams.com/wp-content/uploads/2010/03/bookmarks-toolbar.jpg" alt="bookmarks-toolbar" title="bookmarks-toolbar" width="508" height="511" class="alignnone size-full wp-image-1717" /><br />Whenever you come across a new submission form you can add them to this folder.<br /><h1>Step 2: Prepare a list of all possible form fields</h1>
The next task is to make a list of all possible submission form fields. I&#8217;ve created one for logo design submission. If you&#8217;re the creator of the logo, the first 8 items remain same for all your logo submissions. We&#8217;ll see how to make use of this list in the next step.<br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />First Name<br />Last Name<br />Full Name<br />Email Id<br />Twitter Id<br />Designer Website Title<br />Designer Website URL<br />Designer Bio<br /><br />Title/Name of the logo<br />Logo Punchline/tagline<br />Logo URL (if your logo is already online)<br />Description of logo<br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br /><h1>Step 3: Using InFormEnter to fill the forms</h1>
I hope you&#8217;ve already installed this addon. If not do it right now, it&#8217;s really worth! Now you should see a blue arrow icon on the bottom right of your Firefox status bar. Click the icon and select &#8220;InFormEnter Options&#8221;.<br /><img src="http://www.productivedreams.com/wp-content/uploads/2010/03/informenter-addon.jpg" alt="informenter-addon" title="informenter-addon" width="508" height="135" class="alignnone size-full wp-image-1727" /><br />So you have the pop-up ready to enter the list of form fields mentioned above. See the image below to know how I created the list for the &#8220;Beetle Nut&#8221; logo<br /><img src="http://www.productivedreams.com/wp-content/uploads/2010/03/informenter-popup.jpg" alt="informenter-popup" title="informenter-popup" width="508" height="445" class="alignnone size-full wp-image-1729" /><br /><br /><h1>Step 4: Prepare your images for submission</h1>
This is critical since the image dimensions accepted by each gallery varies. Here goes a list of sizes accepted by most logo galleries.<br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />284&#215;130<br />300&#215;180<br />320&#215;260<br />325&#215;260<br />394&#215;197<br />400&#215;400<br />500&#215;247<br />500&#215;300<br />550&#215;338<br />620&#215;340<br />640&#215;360<br />880&#215;440<br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />I usually create a folder for each logo, re-size the logos and name them based on these dimensions. But make sure the file size is low. See the images below.<br /><img src="http://www.productivedreams.com/wp-content/uploads/2010/03/logo-dimensions.jpg" alt="logo-dimensions" title="logo-dimensions" width="508" height="405" class="alignnone size-full wp-image-1732" /><br />This makes the form submission process easy!<br /><img src="http://www.productivedreams.com/wp-content/uploads/2010/03/logo-select.jpg" alt="logo-select" title="logo-select" width="508" height="259" class="alignnone size-full wp-image-1734" /><br /><br /><h1>Step 5: Start Submitting&#8230; Enjoy!</h1>
Once InFormEnter is activated you would notice a blue icon near each form field. Now all you need to do is click the icon and select the entry! As simple as that!<br /><img src="http://www.productivedreams.com/wp-content/uploads/2010/03/start-submission.jpg" alt="start-submission" title="start-submission" width="508" height="245" class="alignnone size-full wp-image-1738" /><br /><br />Do you already follow a better procedure? If so please share it here.<div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/simple-css-based-usability-tip-for-search-buttons/" title="A simple CSS based usability tip for search buttons">A simple CSS based usability tip for search buttons</a></li><li><a href="http://www.productivedreams.com/common-requirements-for-website-design-and-corresponding-jquery-solutions/" title="3 common requirements/issues and the corresponding Jquery solutions for your next web project">3 common requirements/issues and the corresponding Jquery solutions for your next web project</a></li><li><a href="http://www.productivedreams.com/20-sites-to-submit-your-logos/" title="22 Sites &#038; Galleries to submit your logos">22 Sites &#038; Galleries to submit your logos</a></li><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></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=c4rbeS4xG74:wH68B-lUF7M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=c4rbeS4xG74:wH68B-lUF7M:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=c4rbeS4xG74:wH68B-lUF7M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=c4rbeS4xG74:wH68B-lUF7M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=c4rbeS4xG74:wH68B-lUF7M:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=c4rbeS4xG74:wH68B-lUF7M:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=c4rbeS4xG74:wH68B-lUF7M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=c4rbeS4xG74:wH68B-lUF7M:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=c4rbeS4xG74:wH68B-lUF7M:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=c4rbeS4xG74:wH68B-lUF7M:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=c4rbeS4xG74:wH68B-lUF7M:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=c4rbeS4xG74:wH68B-lUF7M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=c4rbeS4xG74:wH68B-lUF7M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=c4rbeS4xG74:wH68B-lUF7M:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=c4rbeS4xG74:wH68B-lUF7M:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=c4rbeS4xG74:wH68B-lUF7M:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/c4rbeS4xG74" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/making-gallery-submissions-easy-for-designers/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://www.productivedreams.com/making-gallery-submissions-easy-for-designers/</feedburner:origLink></item>
		<item>
		<title>Welcome 2010 – A Free Wallpaper For Your Desktop &amp; Iphone</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/ha3YXTRhUnI/</link>
		<comments>http://www.productivedreams.com/welcome-2010-free-wallpaper-for-your-desktop-and-iphone/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 22:27:20 +0000</pubDate>
		<dc:creator>Gopal Raju</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Inspirations]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Illustrations]]></category>
		<category><![CDATA[wallpapers]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1658</guid>
		<description><![CDATA[I know its late for a New Year gift, but better late than never. This wallpaper is for all my readers who have always been supporting, motivating and encouraging me throughout the years. This was created digitally using Fireworks and Photoshop and is something along the lines of the design of IndoFolio. I hope it [...]]]></description>
			<content:encoded><![CDATA[<p>I know its late for a <strong>New Year gift</strong>, but better late than never. This wallpaper is for all my readers who have always been supporting, motivating and encouraging me throughout the years. </p><p>This was created digitally using Fireworks and Photoshop and is something along the lines of the design of <a href="http://www.indofolio.com">IndoFolio</a>. I hope it will <strong>enrich your desktop</strong>. Its available for 1024×768 (standard) and 1280×800 (wide) resolutions. An Iphone version has been included as well.</p>
<p>The wallpaper is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/2.5/in/">Creative Commons Attribution-Noncommercial-No Derivative Works 2.5 India License</a> and mainly should not be used for print.<br/><a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/2.5/in/"><img alt="Creative Commons License" style="border-width:0" src="http://creativecommons.org/images/public/somerights20.png" /></a></p><a href="http://www.productivedreams.com/wp-content/uploads/2010/01/welcome2010-wallpaper.jpg" title="Welcome 2010 Wallpaper - by Gopal Raju" ><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/welcome-2010-free-wallpaper.jpg" alt="Welcome 2010 Free Wallpaper" title="Welcome 2010 Free Wallpaper" width="508" height="531" class="alignnone size-full wp-image-1673" /></a><span id="more-1658"></span>
<div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=pd-welcome-2010.zip" title=" downloaded 268 times" ><img src="" alt="Download Welcome 2010 Wallpaper " /></a> <br /><a href="http://www.productivedreams.com/wp-content/uploads/2010/01/welcome2010-wallpaper.jpg" title="Welcome 2010 Wallpaper - by Gopal Raju" class="demo">Preview</a><br /></div><p>Wishing you all a prosperous and productive year ahead!</p><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/productivedreams-wallpaper-halloween-special/" title="ProductiveDreams Wallpaper v2">ProductiveDreams Wallpaper v2</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/productivedreams-desktop-wallpaper-v1/" title="ProductiveDreams Desktop Wallpaper v1">ProductiveDreams Desktop Wallpaper v1</a></li><li><a href="http://www.productivedreams.com/a-post-with-everything-in-it/" title="ProductiveDreams- Wallpaper for Mobile &#038; iPhone">ProductiveDreams- Wallpaper for Mobile &#038; iPhone</a></li><li><a href="http://www.productivedreams.com/twibies-com-the-ultimate-twitter-resource-for-designers/" title="Twibies.com &#8211; The ultimate twitter resource for designers">Twibies.com &#8211; The ultimate twitter resource for designers</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=ha3YXTRhUnI:nhgLbLgdq-k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=ha3YXTRhUnI:nhgLbLgdq-k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=ha3YXTRhUnI:nhgLbLgdq-k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=ha3YXTRhUnI:nhgLbLgdq-k:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=ha3YXTRhUnI:nhgLbLgdq-k:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=ha3YXTRhUnI:nhgLbLgdq-k:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=ha3YXTRhUnI:nhgLbLgdq-k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=ha3YXTRhUnI:nhgLbLgdq-k:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=ha3YXTRhUnI:nhgLbLgdq-k:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=ha3YXTRhUnI:nhgLbLgdq-k:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=ha3YXTRhUnI:nhgLbLgdq-k:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=ha3YXTRhUnI:nhgLbLgdq-k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=ha3YXTRhUnI:nhgLbLgdq-k:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=ha3YXTRhUnI:nhgLbLgdq-k:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=ha3YXTRhUnI:nhgLbLgdq-k:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=ha3YXTRhUnI:nhgLbLgdq-k:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/ha3YXTRhUnI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/welcome-2010-free-wallpaper-for-your-desktop-and-iphone/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		<feedburner:origLink>http://www.productivedreams.com/welcome-2010-free-wallpaper-for-your-desktop-and-iphone/</feedburner:origLink></item>
		<item>
		<title>22 Sites &amp; Galleries to submit your logos</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/rKyHJjHZVJw/</link>
		<comments>http://www.productivedreams.com/20-sites-to-submit-your-logos/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 12:36:34 +0000</pubDate>
		<dc:creator>Gopal Raju</dc:creator>
				<category><![CDATA[Inspirations]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[logos]]></category>
		<category><![CDATA[page rank]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1587</guid>
		<description><![CDATA[So you have done a few nice logos, what&#8217;s next? Go ahead, submit them on the best logo galleries. I&#8217;ve compiled a list of websites that accept logo submissions, along with the link to their submission forms. The ranking and other details of each site has been included as well, for your ease.PS: The ranking [...]]]></description>
			<content:encoded><![CDATA[<p>So you have done a few <strong>nice logos</strong>, what&#8217;s next? Go ahead, submit them on the best logo galleries. </p><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/post-image1.jpg" alt="post-image" title="post-image" width="508" height="136" class="alignnone size-full wp-image-1650" /><p>I&#8217;ve compiled a list of websites that accept logo submissions, along with the link to their submission forms. The ranking and other details of each site has been included as well, for your ease.</p><span id="more-1587"></span><p>PS: The ranking details are provided just to give you an idea on how popular each website is. The information may vary from day to day.</p><p>Only three in the list requires registration to <strong>submit your logos</strong></p>
<a href="http://www.logofromdreams.com/submit-your-logo/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-from-dreams.jpg" alt="Logo from dreams" title="Logo from dreams" width="508" height="162" class="alignnone size-full wp-image-1600" /></a>
<p><strong>Logo From Dreams</strong><br />Alexa Rank: 147286<br />Page Rank: 5<br />Famous in Countries: China, India, USA and Spain</p>
<a href="http://www.graphicdesignblog.org/logo-design-gallery/submit-a-logo/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/graphic-design-blog.jpg" alt="graphic design blog" title="graphic design blog" width="508" height="162" class="alignnone size-full wp-image-1693" /></a>
<p><strong>Graphic Design Blog</strong><br />Alexa Rank: 36183<br />Page Rank: 5<br />Famous in Countries: Pakistan, USA, India and Germany</p>
<a href="http://thedesigninspiration.com/submission/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/the-design-inspiration.jpg" alt="the-design-inspiration" title="The Design Inspiration" width="508" height="162" class="alignnone size-full wp-image-1602" /></a>
<p><strong>The Design Inspiration</strong><br />Alexa Rank: 17800<br />Page Rank: 5<br />Famous in Countries: USA, China and India</p>
<a href="http://www.logomoose.com/submit/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-moose.jpg" alt="logo-moose" title="Logo Moose" width="508" height="162" class="alignnone size-full wp-image-1607" /></a>
<p><strong>Logo Moose</strong><br />Alexa Rank: 61436<br />Page Rank: 4<br />Famous in Countries: Pakistan, India, Indonesia, USA and UK</p>
<a href="http://logofaves.com/suggest/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-faves.jpg" alt="logo-faves" title="Logo Faves" width="508" height="162" class="alignnone size-full wp-image-1609" /></a>
<p><strong>Logo Faves</strong><br />Alexa Rank: 58238<br />Page Rank: 4<br />Famous in Countries: USA, India and Germany</p>
<a href="http://www.logocritiques.com/submit_a_logo_for_critique"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-critiques.jpg" alt="Logo Critiques" title="Logo Critiques" width="508" height="162" class="alignnone size-full wp-image-1610" /></a>
<p><strong>Logo Critiques</strong> If you are actively looking for critiques, submit your logo here.<br />Alexa Rank: 312761<br />Page Rank: 4<br />Famous in Countries: USA and India</p>
<a href="http://www.typebased.com/submit-a-logo/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/type-based.jpg" alt="Typography Based" title="Typography Based" width="508" height="162" class="alignnone size-full wp-image-1612" /></a>
<p><strong>Type Based</strong> Exclusively for typographic logos.<br />Alexa Rank: 1526872<br />Page Rank: 4</p>
<a href="http://logofi.com/submit/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logofi.jpg" alt="Logofi" title="Logofi" width="508" height="162" class="alignnone size-full wp-image-1614" /></a>
<p><strong>Logofi</strong><br />Alexa Rank:  240770<br />Page Rank: 4<br />Famous in Countries: Pakistan, Germany, Turkey, USA and India<br /></p>
<a href="http://logofury.com/submit"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-fury.jpg" alt="Logo Fury" title="Logo Fury" width="508" height="162" class="alignnone size-full wp-image-1619" /></a>
<p><strong>Logo Fury</strong><br />Alexa Rank:  166771<br />Page Rank: 3<br />Famous in Countries: USA, India, UK, Italy and Australia<br /></p>
<a href="http://www.logogalleria.com/submit/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-galleria.jpg" alt="Logo Galleria" title="Logo Galleria" width="508" height="162" class="alignnone size-full wp-image-1621" /></a>
<p><strong>Logo Galleria</strong><br />Alexa Rank:  403497<br />Page Rank: 3<br />Famous in Countries: India, Indonesia and USA<br /></p>
<a href="http://www.logogallery.net/?page_id=121"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-gallery.jpg" alt="Logo Gallery" title="Logo Gallery" width="508" height="162" class="alignnone size-full wp-image-1622" /></a>
<p><strong>Logo Gallery</strong><br />Alexa Rank:  594609<br />Page Rank: 3<br />Famous in Countries: India, Malaysia and Indonesia<br /></p>
<a href="http://www.logogallerydesign.com/submit-logo-design-gallery.php"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-gallery-design.jpg" alt="logo-gallery-design" title="Logo Gallery Design" width="508" height="162" class="alignnone size-full wp-image-1624" /></a>
<p><strong>Logo Gallery Design</strong><br />Alexa Rank:  1929224<br />Page Rank: 3<br />Famous in Countries: India<br /></p>
<a href="http://www.logogala.com/submit"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-gala.jpg" alt="logo-gala" title="Logo Gala" width="508" height="162" class="alignnone size-full wp-image-1625" /></a>
<p><strong>Logo Gala</strong><br />Alexa Rank:  222652<br />Page Rank: 3<br />Famous in Countries: India, USA, Israel, Pakistan and Croatia<br /></p>
<a href="http://www.logotalkz.com/submit-logo/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-talkz.jpg" alt="Logo Talkz" title="Logo Talkz" width="508" height="162" class="alignnone size-full wp-image-1626" /></a>
<p><strong>Logo Talkz</strong><br />Alexa Rank:  754413<br />Page Rank: 3<br />Famous in Countries: Romania, USA and India<br /></p>
<a href="http://czechlogos.com/submit.html"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/czech-logos.png" alt="czech logos" title="czech logos" width="508" height="162" class="alignnone size-full wp-image-1690" /></a>
<p><strong>Czech Logos</strong><br />Alexa Rank: 4,669,960<br />Page Rank: 3<br /></p>
<a href="http://www.logoed.co.uk/submit.html"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logoed.jpg" alt="Logoed" title="Logoed" width="508" height="162" class="alignnone size-full wp-image-1629" /></a>
<p><strong>Logoed</strong> All you need to do is submit an email to the admin<br />Alexa Rank:  1049291<br />Page Rank: 2<br /></p>
<a href="http://www.thelogomix.com/add-your-logo"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/the-logo-mix.jpg" alt="The Logo Mix" title="The Logo Mix" width="508" height="162" class="alignnone size-full wp-image-1630" /></a>
<p><strong>The Logo Mix</strong><br />Alexa Rank: 1325361<br />Page Rank: 1<br />Famous in Countries: Germany<br /></p>
<a href="http://www.logonest.com/submit-your-logo/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-nest.jpg" alt="Logo Nest" title="Logo Nest" width="508" height="162" class="alignnone size-full wp-image-1631" /></a>
<p><strong>Logo Nest</strong><br />Alexa Rank: 840171<br />Page Rank: 0<br />Famous in Countries: Canada, India, USA and UK<br /></p>
<h1> Registration required for the following sites</h1>
<a href="http://www.creattica.com"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/creattica.jpg" alt="Creattica" title="Creattica" width="508" height="162" class="alignnone size-full wp-image-1634" /></a>
<p><strong>Creaticca</strong><br />Alexa Rank: 11958<br />Page Rank: 6<br />Famous in Countries: USA, India, Germany and Pakistan<br /></p>
<a href="http://www.logospire.com"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-spire.jpg" alt="Logospire" title="Logospire" width="508" height="162" class="alignnone size-full wp-image-1635" /></a>
<p><strong>Logospire</strong><br />Alexa Rank: 125330<br />Page Rank: 5<br />Famous in Countries: Turkey, USA, Belgium, Germany and India<br /></p>
<a href="http://www.logopond.com"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/logo-pond.jpg" alt="Logo Pond" title="Logo Pond" width="508" height="162" class="alignnone size-full wp-image-1618" /></a>
<p><strong>Logo Pond</strong><br />Alexa Rank: 11244<br />Page Rank: 3<br />Famous in Countries: USA, China, Germany and India<br /></p><p>Before submitting to these websites just make sure that your logo is perfect!</p><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/making-gallery-submissions-easy-for-designers/" title="Making gallery submissions easy for designers">Making gallery submissions easy for designers</a></li><li><a href="http://www.productivedreams.com/how-to-improve-the-page-rank-of-your-twitter-profile-page/" title="How to improve the page rank of your twitter profile page">How to improve the page rank of your twitter profile page</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=rKyHJjHZVJw:bWz94r2OMBk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=rKyHJjHZVJw:bWz94r2OMBk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=rKyHJjHZVJw:bWz94r2OMBk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=rKyHJjHZVJw:bWz94r2OMBk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=rKyHJjHZVJw:bWz94r2OMBk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=rKyHJjHZVJw:bWz94r2OMBk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=rKyHJjHZVJw:bWz94r2OMBk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=rKyHJjHZVJw:bWz94r2OMBk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=rKyHJjHZVJw:bWz94r2OMBk:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=rKyHJjHZVJw:bWz94r2OMBk:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=rKyHJjHZVJw:bWz94r2OMBk:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=rKyHJjHZVJw:bWz94r2OMBk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=rKyHJjHZVJw:bWz94r2OMBk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=rKyHJjHZVJw:bWz94r2OMBk:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=rKyHJjHZVJw:bWz94r2OMBk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=rKyHJjHZVJw:bWz94r2OMBk:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/rKyHJjHZVJw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/20-sites-to-submit-your-logos/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		<feedburner:origLink>http://www.productivedreams.com/20-sites-to-submit-your-logos/</feedburner:origLink></item>
		<item>
		<title>How to improve the page rank of your twitter profile page</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/vzsAjAfjOf8/</link>
		<comments>http://www.productivedreams.com/how-to-improve-the-page-rank-of-your-twitter-profile-page/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 20:09:18 +0000</pubDate>
		<dc:creator>Gopal Raju</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[page rank]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1529</guid>
		<description><![CDATA[As I mentioned in my previous post, a good page rank for your twitter profile means you are someone worth following.<br />
Before reading further, I would suggest you to check the PR of your twitter profile page. Also try checking the PR&#8217;s of the giants. I&#8217;m glad to see Google Page Rank impacting the public social [...]]]></description>
			<content:encoded><![CDATA[<p>As I mentioned in <a href="http://www.productivedreams.com/twibies-com-the-ultimate-twitter-resource-for-designers/">my previous post</a>, a good page rank for your twitter profile means you are someone worth following.</p>
<img src="http://www.productivedreams.com/wp-content/uploads/2010/01/twitter-page-rank.jpg" alt="Twitter Page Rank" title="Twitter Page Rank" width="508" height="200" class="alignnone size-full wp-image-1561" />
<p>Before reading further, I would suggest you to<a href="http://www.prchecker.info/check_page_rank.php"> check the PR</a> of your twitter profile page. Also try checking the PR&#8217;s of the giants. I&#8217;m glad to see Google Page Rank impacting the public social media profiles of services like twitter.</p><p>So what is Google looking for? Check out this quote from <a href="http://www.marketingprofessor.com/search-engine/google-pagerank-impacts-your-twitter-profile/">Marketing Professor.</a></p>
<blockquote>
<strong>What is Google Looking For?</strong><br /><br />    * Credible inbound links from sources with credible inbound links<br />    * Quality thematic content in their Twitter stream (jumping from dog training to affiliate marketing, to dieting in your twitter stream may get different results than sticking to one theme or topic of discussion… key phrases).<br />    * Outbound links to credible sources.<br /><br />It wouldn’t surprise me if they are also looking at social measures (retweets, locations, and @ replies).<br /></blockquote><p>The tips mentioned below are based on my experience, I would love to hear your suggestions (especially from SEO experts).</p><span id="more-1529"></span><br /><h1>1. Quality of your tweets</h1><p>Sharing quality links is of course the first and foremost thing. If you don&#8217;t share your followers wont care!  If you want to gain the attention of bloggers, try your best to tweet things that are relevant to your area of expertise. If someone is following a designer on twitter, that obviously means they are expecting him/her to share design related stuff. <a href="http://www.twittergrader.com">TwitterGrader</a> is a nice tool to evaluate your performance in the twittersphere.</p><p>Bloggers often post round ups about the best Tweeters in a certain niche and following are a few examples of such posts. </p>
<a href="http://www.dailyseoblog.com/2009/01/25-seo-gurus-you-should-follow-on-twitter/">25 SEO Gurus you should follow on Twitter</a><br /><br /><a href="http://carsonified.com/blog/dev/40-web-developers-to-follow-on-twitter/">40 Web Developers to Follow on Twitter </a><br /><br /><a href="http://imjustcreative.com/10-epic-wordpress-plugin-developers-to-follow-on-twitter/">11 Epic WordPress Plugin Developers to Follow on Twitter</a><br /><br />I would also recommend you to use <a href="http://www.searchenginejournal.com/twitter-hashtags/9419/">hash tags</a> as widely as possible.<br /><h1>2. Adding a Follow Me button in your website</h1><p>I am sure, most of you would have already done this. But if you haven&#8217;t, include a follow me button in your blog/website and also show your recent twitter updates. So that makes one profile link, for google spiders to crawl through <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </span></p>
<h1>3. Create an attractive twitter theme</h1>
Though it sounds less useful, it matters a lot. Your twitter has to be unique as to stand out from the crowd. Try to make your twitter theme as creative as possible. This lets  bloggers include you in their round ups on the best twitter themes. Don&#8217;t forget to choose an attractive display image for your profile as well.<br /><br />There are a few twitter background galleries out there and I am sure there will be more. I have included the links to their submission pages below.<br /><br /><strong>Twitter Backgrounds Gallery</strong>
<p>All you need to do here is follow them on twitter and post a tweet.</p>
<a href="http://twitterbackgroundsgallery.com/suggest-a-background/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/twitter_backgrounds_gallery.jpg" alt="Twitter Backgrounds Gallery" title="Twitter Backgrounds Gallery" width="508" height="183" class="alignnone size-full wp-image-1539" /></a><br /><strong>Tweet Backs</strong>
<p>Follow the same process here.</p>
<a href="http://www.tweetbacks.com/twitter-background-gallery/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/tweetbacks.jpg" alt="tweetbacks" title="tweetbacks" width="508" height="183" class="alignnone size-full wp-image-1540" /></a>
<p>And the one below can be considered as a milliondollarwall for tweeters.</p>
<strong>The Tweet Wall</strong>
<p>Know what? I&#8217;ve worked on this project<span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </span>Posting your profile is absolutely free.</p>
<a href="http://www.thetweetwall.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/thetweetwall.jpg" alt="thetweetwall" title="thetweetwall" width="508" height="183" class="alignnone size-full wp-image-1544" /></a><br /><h1>4. Post your profile on other Social Networking sites</h1>
Add your twitter updates and profile links on social networking sites like <strong>facebook, linkedin, myspace, friendfeed</strong>  etc. You may go through the following posts for more details on how to display your twitter status.<br /><a href="http://personalweb.about.com/od/facebookapps/ht/addtwittertofacebook.htm"><br />How To Add Twitter to Facebook</a><br /><br /><a href="http://www.getmoreclientsonlineblog.com/2009/11/how-to-add-twitter-to-linkedin.html">How to Add Twitter to LinkedIn</a><br /><br /><a href="http://www.ehow.com/how_4557704_add-twitter-myspace-page.html">How to Add Twitter to a MySpace Page</a><br /><h1>5. Submit your profile on Twitter Directories</h1>
Here goes a comprehensive list of twitter directories, which includes the Page Rank and Alexa Rank of each directory.<br /><br /><a href="http://www.jasonbartholme.com/21-twitter-directories-and-follower-finders-to-expand-your-twittersphere/">21 Twitter Directories and Follower Finders to Expand Your Twittersphere</a><br /><br />A few other suggestions(thought it doesn&#8217;t affect your PR directly) would be to <strong>add your twitter profile url in your email signature</strong> and to <strong>attend TweetUps</strong> on a regular basis (a kind of offline promotion). For those who don&#8217;t know what a TweetUp is &#8211; Its just a gathering of people who use Twitter.<br /><br />So what is your twitter profile PR? Do you have a suggestion? Please make use of the comment form <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/20-sites-to-submit-your-logos/" title="22 Sites &#038; Galleries to submit your logos">22 Sites &#038; Galleries to submit your logos</a></li><li><a href="http://www.productivedreams.com/twibies-com-the-ultimate-twitter-resource-for-designers/" title="Twibies.com &#8211; The ultimate twitter resource for designers">Twibies.com &#8211; The ultimate twitter resource for designers</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/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/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=vzsAjAfjOf8:TbFrWAxXZSQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vzsAjAfjOf8:TbFrWAxXZSQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vzsAjAfjOf8:TbFrWAxXZSQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=vzsAjAfjOf8:TbFrWAxXZSQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vzsAjAfjOf8:TbFrWAxXZSQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vzsAjAfjOf8:TbFrWAxXZSQ:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vzsAjAfjOf8:TbFrWAxXZSQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=vzsAjAfjOf8:TbFrWAxXZSQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vzsAjAfjOf8:TbFrWAxXZSQ:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vzsAjAfjOf8:TbFrWAxXZSQ:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=vzsAjAfjOf8:TbFrWAxXZSQ:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vzsAjAfjOf8:TbFrWAxXZSQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=vzsAjAfjOf8:TbFrWAxXZSQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vzsAjAfjOf8:TbFrWAxXZSQ:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vzsAjAfjOf8:TbFrWAxXZSQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=vzsAjAfjOf8:TbFrWAxXZSQ:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/vzsAjAfjOf8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/how-to-improve-the-page-rank-of-your-twitter-profile-page/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
		<feedburner:origLink>http://www.productivedreams.com/how-to-improve-the-page-rank-of-your-twitter-profile-page/</feedburner:origLink></item>
		<item>
		<title>Twibies.com – The ultimate twitter resource for designers</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/KiMhY9MIwhc/</link>
		<comments>http://www.productivedreams.com/twibies-com-the-ultimate-twitter-resource-for-designers/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 17:50:24 +0000</pubDate>
		<dc:creator>Gopal Raju</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Launch]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1487</guid>
		<description><![CDATA[Happy New Year friends! Being a freelancer gives me time to come up with more posts   Before we dive into more details about Twibies, let me ask you something. Have you ever checked the page rank of your twitter profile? Well… I did recently and it turned out to be 5/10. I was [...]]]></description>
			<content:encoded><![CDATA[<strong>Happy New Year friends!</strong> Being a freelancer gives me time to come up with more posts <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </span><br /><br />Before we dive into more details about Twibies, let me ask you something. <strong>Have you ever checked the page rank of your twitter profile?</strong> Well… I did recently and it turned out to be 5/10. I was really surprised to see this initially, but upon further research I figured out that my twitter background/theme was featured on many sites.<br /><h1>What does that mean?</h1>
Simple… Design matters! And here&#8217;s something useful for designers!<br /><br /><strong><a href="http://www.twibies.com">Twibies.com </a></strong>- The ultimate collection of twitter bird illustrations, icons, themes and other freebies. <br /><br /><a href="http://www.twibies.com"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/twibies.jpg" alt="twibies" title="twibies" width="508" height="1114" class="alignnone size-full wp-image-1494" /></a><br /><span id="more-1487"></span><br />Most of you would be already familiar with this site I assume. At least, for those who have visited <a href="http://www.indofolio.com" rel="IndoFolio">IndoFolio</a>.  This is my second initiative to help out designers by bringing all twitter freebies (useful for designers) under one roof.<br /><h1>What makes Twibies unique?</h1>
<strong>Twibies </strong>is exclusively for designers who are looking out for twitter freebies and it leaves no reason to search for or bookmark twitter icon roundups anymore! Twibies is the one stop solution for you. I&#8217;ve tried my best to make the interface as simple as possible.<br /><br />Another interesting thing is that Twibies lets you choose the file format of icons. So if you are looking for a psd icon, all you need to do is choose Photoshop(PSD) from the dropdown. Its as simple as that!<br /><a href="http://www.twibies.com"><br /><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/select-file-format.jpg" alt="Select File Format (PSD, Fireworks, Transparent PNG, Illustrator)" title="Select File Format (PSD, Fireworks, Transparent PNG, Illustrator)" width="508" height="426" class="alignnone size-full wp-image-1500" /></a><br /><br /><h1>Question for designers:  Did you create a free twitter icon set recently?</h1>
Dont&#8217;t forget to post it on <a href="http://twibies.com/submit-twitterbie/">Twibies</a> <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span> It has a page to submit your freebie (whether its a theme, an icon set or any design based on twitter).<br /><br />The form is really simple and wouldn&#8217;t ask for your neighbours date of birth and all that crap<span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </span><br /><br /><a href="http://twibies.com/submit-twitterbie/"><img src="http://www.productivedreams.com/wp-content/uploads/2010/01/submit-twibie.jpg" alt="submit-twibie" title="submit-twibie" width="508" height="426" class="alignnone size-full wp-image-1505" /></a><br /><h1>Wanna receive an update whenever a twibie is posted?</h1>
You can either <a href="http://feeds2.feedburner.com/twibies">subscribe the RSS </a>or just <a href="http://www.twitter.com/gopalraju">follow me on twitter</a>. I would love to hear suggestions and feedbacks from YOU &#8211; the real users!<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/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/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/page-peel-social-icons-version/" title="Page Peel Social Icons &#8211; Version 2">Page Peel Social Icons &#8211; Version 2</a></li><li><a href="http://www.productivedreams.com/page-peel-free-social-iconset/" title="Page Peel &#8211; A Free Social Media Iconset">Page Peel &#8211; A Free Social Media Iconset</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=KiMhY9MIwhc:FP1zKdm633Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=KiMhY9MIwhc:FP1zKdm633Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=KiMhY9MIwhc:FP1zKdm633Y:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=KiMhY9MIwhc:FP1zKdm633Y:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=KiMhY9MIwhc:FP1zKdm633Y:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=KiMhY9MIwhc:FP1zKdm633Y:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=KiMhY9MIwhc:FP1zKdm633Y:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=KiMhY9MIwhc:FP1zKdm633Y:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=KiMhY9MIwhc:FP1zKdm633Y:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=KiMhY9MIwhc:FP1zKdm633Y:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=KiMhY9MIwhc:FP1zKdm633Y:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=KiMhY9MIwhc:FP1zKdm633Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=KiMhY9MIwhc:FP1zKdm633Y:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=KiMhY9MIwhc:FP1zKdm633Y:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=KiMhY9MIwhc:FP1zKdm633Y:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=KiMhY9MIwhc:FP1zKdm633Y:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/KiMhY9MIwhc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/twibies-com-the-ultimate-twitter-resource-for-designers/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://www.productivedreams.com/twibies-com-the-ultimate-twitter-resource-for-designers/</feedburner:origLink></item>
		<item>
		<title>Announcing the launch of IndoFolio</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/vYNwvCLjJ1k/</link>
		<comments>http://www.productivedreams.com/announcing-the-launch-of-indofolio/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:33:47 +0000</pubDate>
		<dc:creator>Gopal Raju</dc:creator>
				<category><![CDATA[Launch]]></category>
		<category><![CDATA[Freelance]]></category>
		<category><![CDATA[Illustrations]]></category>
		<category><![CDATA[parallax]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1465</guid>
		<description><![CDATA[Good News! I&#8217;ve quit my day job to get to do the things I enjoy doing very much on the internet! Yes, that means I&#8217;ll be spending more time on ProductiveDreams and taking up freelance projects at the same time. As a first step, I am launching my portfolio &#8211; Indofolio.comIn this post I would [...]]]></description>
			<content:encoded><![CDATA[Good News! I&#8217;ve quit my day job to get to do the things I enjoy doing very much on the internet! Yes, that means I&#8217;ll be spending more time on <strong>ProductiveDreams</strong> and taking up freelance projects at the same time. As a first step, I am launching my portfolio &#8211; <a href="http://www.indofolio.com">Indofolio.com</a><br /><br />In this post I would like to give you a brief overview on IndoFolio and its design.<br /><a href="http://www.indofolio.com"><br /><img src="http://www.productivedreams.com/wp-content/uploads/2009/12/indofolio.jpg" alt="Indofolio - Portfolio of Gopal Raju" width="508" height="357" class="alignnone size-full wp-image-1467" /><br /></a><br /><span id="more-1465"></span><br /><h1>Why IndoFolio?</h1><p>I wanted to use a domain name that makes it clear that I am from <strong>India</strong> and Indo is the most popular prefix used to indicate India. My second requirement was to include &#8220;folio&#8221; which makes it obvious that this is my <strong>portfolio</strong>.</p>
<h1>Concept behind the design</h1><p>My name &#8220;Gopal&#8221; is another manifestation of Krishna who was one of the incarnations/avatars of Lord Vishnu according to Hindu mythology. This inspired me to include other avatars of Lord Vishnu as well. Nothing religious! This was just an attempt to come up with a unique design concept.</p><p>Just to let you know, I am a great fan of Russian Art! and was very concerned about achieving an Indo-Russian effect. Though it took me some time playing with Fireworks and Photoshop, I&#8217;m happy with the final output.</p>
<br /><h1>Softwares Used</h1><p>The initial draft of IndoFolio was created using Fireworks and was purely vector.  Then I took it to photoshop, to burn and dodge a few areas which helped me achieve the &#8220;painting&#8221; effect.  I believe Photoshop gives more control when it comes to burning and dodging.</p><p>In the following images, you can compare the Fireworks and Photoshop version of the avatars. I&#8217;ve given a one line description about each avatar, for those who are curious</p>
<br /><strong>Matsya</strong> &#8211; The Fish Incarnation is the first one among all. <br /><img src="http://www.productivedreams.com/wp-content/uploads/2009/12/matsya.jpg" alt="Matsya avatar - Fish" title="Matsya avatar - Fish" width="508" height="1000" class="alignnone size-full wp-image-1467" /><br /><strong>Kurma</strong>- Lord Vishu assumed the form of a tortoise for this avatar.<br /><img src="http://www.productivedreams.com/wp-content/uploads/2009/12/kurma.jpg" alt="Kurma Avatar - Tortoise" title="Kurma Avatar - Tortoise" width="508" height="1000" class="alignnone size-full wp-image-1470" /><br /><strong>Krishna (aka Gopal)</strong> is considered to be the 8th avatar.<br /><img src="http://www.productivedreams.com/wp-content/uploads/2009/12/krishna.jpg" alt="Krishna Avatar - Gopal" title="Krishna Avatar - Gopal" width="508" height="1000" class="alignnone size-full wp-image-1471" /><br /><strong>Varaha</strong>- The Boar, is one of the interesting incarnations which appeared in order to defeat a demon.<br /><img src="http://www.productivedreams.com/wp-content/uploads/2009/12/varaha.jpg" alt="Varaha - Boar" title="Varaha - Boar" width="508" height="1000" class="alignnone size-full wp-image-1473" /><br />and finally<strong>Vamana</strong>, the dwarf brahmin.<br /><img src="http://www.productivedreams.com/wp-content/uploads/2009/12/vamana.jpg" alt="Vamana Avatar - Dwarf" title="Vamana Avatar - Dwarf" width="508" height="1000" class="alignnone size-full wp-image-1472" /><br /><br />These are just 5 of the 10 incarnations of Lord Vishnu.<br /><br /><h1>Image Optimization</h1><p>Optimizing the images was a challenge as I had to maintain the image quality.  Transparency being a major thing to consider, I had to convert most of the images to 24bit PNGs.  I used some online image optimizers like <a href="http://www.gracepointafterfive.com/punypng/">PNGCrush</a> to reduce the file size. </p>
<br /><h1>HTML/CSS Development</h1><p>This was really challenging as my goal was to create a single page website using these avatars.  I planned to use JQuery to make the site more lively, different and user friendly.  Using JQuery intensely for a single page website is no sin <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </span></p>

<p>After doing some research, I decided go ahead with horizontal parallax.  For more details about Parallax check out my <a href="http://www.productivedreams.com/everything-you-need-to-know-about-parallax/">previous blog post</a> (I created this post while working on IndoFolio).</p>

<p>So that&#8217;s it! I would be glad to hear your comments (good or bad) on <a href="http://www.indofolio.com">IndoFolio</a>.</p><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><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/trend-review-clip-n-paper/" title="Trend Review: Clip &#8216;n&#8217; Paper">Trend Review: Clip &#8216;n&#8217; Paper</a></li><li><a href="http://www.productivedreams.com/price-tags-another-trend-in-web-design/" title="Trend Review: Price Tags (Part 1)">Trend Review: Price Tags (Part 1)</a></li><li><a href="http://www.productivedreams.com/welcome-2010-free-wallpaper-for-your-desktop-and-iphone/" title="Welcome 2010 &#8211; A Free Wallpaper For Your Desktop &#038; Iphone">Welcome 2010 &#8211; A Free Wallpaper For Your Desktop &#038; Iphone</a></li><li><a href="http://www.productivedreams.com/web-design-trend-paper-planes/" title="Trend Review: Paper Planes">Trend Review: Paper Planes</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=vYNwvCLjJ1k:7Hd7R10enkE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vYNwvCLjJ1k:7Hd7R10enkE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vYNwvCLjJ1k:7Hd7R10enkE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=vYNwvCLjJ1k:7Hd7R10enkE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vYNwvCLjJ1k:7Hd7R10enkE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vYNwvCLjJ1k:7Hd7R10enkE:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vYNwvCLjJ1k:7Hd7R10enkE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=vYNwvCLjJ1k:7Hd7R10enkE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vYNwvCLjJ1k:7Hd7R10enkE:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vYNwvCLjJ1k:7Hd7R10enkE:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=vYNwvCLjJ1k:7Hd7R10enkE:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vYNwvCLjJ1k:7Hd7R10enkE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=vYNwvCLjJ1k:7Hd7R10enkE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vYNwvCLjJ1k:7Hd7R10enkE:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=vYNwvCLjJ1k:7Hd7R10enkE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=vYNwvCLjJ1k:7Hd7R10enkE:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/vYNwvCLjJ1k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/announcing-the-launch-of-indofolio/feed/</wfw:commentRss>
		<slash:comments>59</slash:comments>
		<feedburner:origLink>http://www.productivedreams.com/announcing-the-launch-of-indofolio/</feedburner:origLink></item>
		<item>
		<title>ProductiveDreams Wallpaper v2</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/6ra4SnM30W4/</link>
		<comments>http://www.productivedreams.com/productivedreams-wallpaper-halloween-special/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 18:13:24 +0000</pubDate>
		<dc:creator>Gopal Raju</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[grungy]]></category>
		<category><![CDATA[wallpapers]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1451</guid>
		<description><![CDATA[Hello Friends, Happy Halloween!As you would be aware, I redesigned the PD logo recently and updated my twitter theme based on the new logo. The next thing that sprang in my mind was to design a wallpaper for my readers and here it goes. This one was created from scratch using Photoshop.Both Standard (1024×768 and [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends, <strong>Happy Halloween!</strong></p><p>As you would be aware, I redesigned the PD logo recently and updated my <a href="http://www.twitter.com/gopalraju">twitter</a> theme based on the new logo. The next thing that sprang in my mind was to design a wallpaper for my readers and here it goes. This one was created from scratch using Photoshop.</p><p>Both Standard (1024×768 and 1600×1200) and Wide versions (1280×800 and 1920×1200) has been included in the zip file.</p><div class="downloadinfo"><br /><a class="downloadlink dlimg" href="http://www.productivedreams.com/wp-content/plugins/download-monitor/download.php?id=pd-wallpaper-v2.zip" title="Version v2 downloaded 1109 times" ><img src="" alt="Download ProductiveDreams Wallpaper V2 Version v2" /></a> <br /><a href="http://www.productivedreams.com/wp-content/uploads/2009/10/wallpaper-preview-image.jpg" title="Page Peel social Iconset" class="demo">Preview</a><br /></div>
<img src="http://www.productivedreams.com/wp-content/uploads/2009/10/post_image.jpg" alt="ProductiveDreams Halloween wallpaper" title="ProductiveDreams Halloween wallpaper" width="508" height="318" class="alignnone size-full wp-image-1452" />
<p>Please do let me know (via the comments section) if you need this wallpaper in a different resolution</p><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/productivedreams-desktop-wallpaper-v1/" title="ProductiveDreams Desktop Wallpaper v1">ProductiveDreams Desktop Wallpaper v1</a></li><li><a href="http://www.productivedreams.com/welcome-2010-free-wallpaper-for-your-desktop-and-iphone/" title="Welcome 2010 &#8211; A Free Wallpaper For Your Desktop &#038; Iphone">Welcome 2010 &#8211; A Free Wallpaper For Your Desktop &#038; Iphone</a></li><li><a href="http://www.productivedreams.com/a-post-with-everything-in-it/" title="ProductiveDreams- Wallpaper for Mobile &#038; iPhone">ProductiveDreams- Wallpaper for Mobile &#038; iPhone</a></li><li><a href="http://www.productivedreams.com/twibies-com-the-ultimate-twitter-resource-for-designers/" title="Twibies.com &#8211; The ultimate twitter resource for designers">Twibies.com &#8211; The ultimate twitter resource for designers</a></li><li><a href="http://www.productivedreams.com/page-peel-social-icons-version/" title="Page Peel Social Icons &#8211; Version 2">Page Peel Social Icons &#8211; Version 2</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=6ra4SnM30W4:2hp5Brk44A8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=6ra4SnM30W4:2hp5Brk44A8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=6ra4SnM30W4:2hp5Brk44A8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=6ra4SnM30W4:2hp5Brk44A8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=6ra4SnM30W4:2hp5Brk44A8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=6ra4SnM30W4:2hp5Brk44A8:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=6ra4SnM30W4:2hp5Brk44A8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=6ra4SnM30W4:2hp5Brk44A8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=6ra4SnM30W4:2hp5Brk44A8:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=6ra4SnM30W4:2hp5Brk44A8:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=6ra4SnM30W4:2hp5Brk44A8:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=6ra4SnM30W4:2hp5Brk44A8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=6ra4SnM30W4:2hp5Brk44A8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=6ra4SnM30W4:2hp5Brk44A8:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=6ra4SnM30W4:2hp5Brk44A8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=6ra4SnM30W4:2hp5Brk44A8:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/6ra4SnM30W4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/productivedreams-wallpaper-halloween-special/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		<feedburner:origLink>http://www.productivedreams.com/productivedreams-wallpaper-halloween-special/</feedburner:origLink></item>
		<item>
		<title>Everything you need to know about Parallax</title>
		<link>http://feedproxy.google.com/~r/productivedreams/~3/2azHKci8ms4/</link>
		<comments>http://www.productivedreams.com/everything-you-need-to-know-about-parallax/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 18:50:04 +0000</pubDate>
		<dc:creator>Gopal Raju</dc:creator>
				<category><![CDATA[Inspirations]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Trends]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1374</guid>
		<description><![CDATA[1. What is parallax?If you are looking for a definition of parallax, here it goes. As far as the web (especially design) industry is concerned, parallax is the arrangement/animation of images in a way that lets you feel the distance between them. For example, imagine that you are looking through the window of a moving [...]]]></description>
			<content:encoded><![CDATA[<h1>1. What is parallax?</h1><p>If you are looking for a definition of parallax, <a href="http://en.wikipedia.org/wiki/Parallax">here it goes</a>. As far as the web (especially design) industry is concerned, <strong>parallax is the arrangement/animation of images in a way that lets you feel the distance between them</strong>. </p><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/parallax_post.jpg" alt="Everything about parallax" title="Everything about parallax" width="508" height="201" class="alignnone size-full wp-image-1446" /><p>For example, imagine that you are looking through the window of a moving vehicle. You will see the objects closer to you moving faster compared to the distant ones. The sun stays still while the trees, buildings and other objects move.</p><p>In this post I would like to walk you through different posts, examples and tutorials that would help you achieve this effect. </p><p>This technique was initially used in 2d video games and now mostly seen in single page portfolio websites and website headers.</p><span id="more-1374"></span><br /><h1>2. Parallax in use</h1><p>I would like to show you a few hand-picked websites that uses parallax before I proceed.</p><p><strong>Eric J</strong> &#8211; This is one of my favorite websites using Parallax in the way it should be. The motion of the wheel and the smoke that comes out of the silencer as the scooter moves  adds up to the parallax feel.</p>
<a href="http://ericj.se/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/ericj.jpg" alt="ericj" title="Ericj - javascript parallax" width="508" height="264" class="alignnone size-full wp-image-1386" /></a>
<p><strong>Markus Neidel</strong> &#8211; This is an awesome 3d vertical parallax (flash).</p>
<a href="http://www.markus-neidel.de/wayofthesheep.htm"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/markus-neidel.jpg" alt="Markus Neidel - Flash" title="markus-neidel" width="508" height="264" class="alignnone size-full wp-image-1388" /></a>
<p><strong>Silverback</strong> &#8211; To see the effect in this site, you would have to resize your browser window and notice the header region.</p>
<a href="http://www.silverbackapp.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/silverback.jpg" alt="Silverback - CSS Background parallax" title="silverback" width="508" height="264" class="alignnone size-full wp-image-1389" /></a>
<p><strong>Umaghet Zeggen</strong> &#8211; All you need to do is move your mouse (towards any direction).</p>
<a href="http://www.umaghetzeggen.nl"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/umaghetzeggen.jpg" alt="http://www.umaghetzeggen.nl/" title="umaghetzeggen" width="508" height="264" class="size-full wp-image-1391" /></a>
<p><strong>Squaredeye</strong> &#8211; Resize your browser window and notice the movement of clouds in the header. A css based parallax.</p>
<a href="http://squaredeye.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/squaredeye.jpg" alt="Squaredeye Header" title="Squaredeye Header" width="508" height="264" class="alignnone size-full wp-image-1394" /></a>
<p><strong>Dezignus</strong> &#8211; Move your mouse over the header region (towards any direction).</p>
<a href="http://dezignus.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/designus.jpg" alt="designus" title="designus" width="508" height="264" class="alignnone size-full wp-image-1397" /></a><br /><h1>3. Now, how do I create Parallax?</h1><p>Let&#8217;s see how to create this effect using javascript, flash and other frameworks.</p>
<h1>Using JQuery</h1><p>You&#8217;d probably be aware, I am  a JQuery fan and for that reason I would like to first list down the methods using JQuery to achieve the Parallax effect.</p><p>These tutorials use <strong>jparallax</strong> &#8211; a jQuery plugin to create parallax</p>
<a href="http://webdev.stephband.info/parallax.html"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/jparallax.jpg" alt="jParallax - A jQuery Parallax Plugin" title="jParallax - A jQuery Parallax Plugin" width="508" height="264" class="alignnone size-full wp-image-1402" /></a>
<p>Create a Parallax Website Header</p><a href="http://progtuts.info/186/create-a-parallax-website-header/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/progtuts.jpg" alt="progtuts - jParallax header" title="progtuts - jParallax header" width="508" height="264" class="alignnone size-full wp-image-1411" /></a><br /><h1>Using Mootools</h1><p>Not familiar with JQuery huh? Here goes a tutorial that uses mParallax a mootools adaptation similar to jParallax.</p><a href="http://www.piksite.com/mParallax/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/piksite.jpg" alt="piksite mParallax" title="piksite" width="508" height="264" class="alignnone size-full wp-image-1415" /></a>
<p>Another demo using Mootools</p>
<a href="http://www.csslab.cl/ejemplos/parallax_mootools/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/csslab.jpg" alt="csslab - Mootools" title="csslab - Mootools" width="508" height="264" class="alignnone size-full wp-image-1417" /></a><br /><h1>Using Scriptaculous</h1><p>This one uses scriptaculous another popular javascript framework.</p>
<a href="http://offtheline.net/2008/2/28/parallax-animation-with-css-js"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/offtheline.jpg" alt="offtheline - Scriptaculous" title="offtheline - Scriptaculous" width="508" height="264" class="alignnone size-full wp-image-1419" /></a><br /><h1>Using Javascript &#8211; A Vertical Parallax</h1>
A vertical parallax based on javascript.<br /><a href="http://inner.geek.nz/javascript/parallax/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/innergeek.jpg" alt="innergeek" title="innergeek" width="508" height="264" class="alignnone size-full wp-image-1424" /></a><br /><h1>Using pure CSS</h1><p>Unlike the ones above, this would work only when the user re-sizes the browser window. This is achieved using css positioning. </p><p>A tutorial on how to create the <a href="http://www.silverbackapp.com/">Silverback Parallax</a> (shown above) using CSS.</p>
<a href="http://carsonified.com/blog/design/how-to-recreate-silverbacks-parallax-effect/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/carsonified.jpg" alt="carsonified" title="carsonified" width="508" height="264" class="alignnone size-full wp-image-1426" /></a>
<p>Examples of and How to Create the CSS Parallax Effect</p>
<a href="http://forthelose.org/examples-of-and-how-to-do-the-css-parallax-effect"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/forthelose.jpg" alt="forthelose" title="forthelose" width="508" height="264" class="alignnone size-full wp-image-1429" /></a>
<p>This is a really interesting one! A parallax illusion with CSS</p><a href="http://www.marcofolio.net/css/a_parallax_illusion_with_css_the_horse_in_motion.html"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/marcofolio.jpg" alt="marcofolio - Parallax Illusion" title="marcofolio - Parallax Illusion" width="508" height="264" class="alignnone size-full wp-image-1431" /></a><br /><h1>Parallax using Flash</h1><p>A step by step tutorial by webdesignerwall.</p><a href="http://www.webdesignerwall.com/tutorials/parallax-gallery/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/webdesignerwall.jpg" alt="webdesignerwall" title="webdesignerwall" width="508" height="264" class="alignnone size-full wp-image-1434" /></a>
<p> Creating parallax with flash cs4</p>
<a href="http://www.webdesign.org/web/flash-&#038;-swish/flash-tutorials/create-a-classic-3d-effect--parallax--with-flash-cs4.17899.html"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/webdesignorg.jpg" alt="webdesignorg" title="webdesignorg" width="508" height="264" class="alignnone size-full wp-image-1436" /></a><br /><h1>Are you an AfterEffects freak?</h1><p>If so, this tutorial is for you. Create a Realistic Camera Move with Parallax.</p>
<a href="http://ae.tutsplus.com/tutorials/vfx/create-a-realistic-camera-move-with-parallax/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/tutplus.jpg" alt="tutplus - Aftereffects Parallax" title="tutplus - Aftereffects Parallax" width="508" height="264" class="alignnone size-full wp-image-1439" /></a>
<p>So, that&#8217;s all about Parallax. I hope this post was informative</p><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/common-requirements-for-website-design-and-corresponding-jquery-solutions/" title="3 common requirements/issues and the corresponding Jquery solutions for your next web project">3 common requirements/issues and the corresponding Jquery solutions for your next web project</a></li><li><a href="http://www.productivedreams.com/web-design-trend-paper-planes/" title="Trend Review: Paper Planes">Trend Review: Paper Planes</a></li><li><a href="http://www.productivedreams.com/trend-review-coffee-stains-webdesign/" title="Trend Review: Coffee Stains in Web Design">Trend Review: Coffee Stains in Web Design</a></li><li><a href="http://www.productivedreams.com/web20-rockets-and-gliders/" title="Trend Review: Web2.0 Rockets and Gliders in Webdesign!">Trend Review: Web2.0 Rockets and Gliders in Webdesign!</a></li><li><a href="http://www.productivedreams.com/parachutes-an-emerging-trend-in-webdesign/" title="Parachutes/Hot Air Balloons &#8211; An Emerging Trend in Webdesign">Parachutes/Hot Air Balloons &#8211; An Emerging Trend in Webdesign</a></li></ul></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/productivedreams?a=2azHKci8ms4:jgNlEqhhBUY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=2azHKci8ms4:jgNlEqhhBUY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=2azHKci8ms4:jgNlEqhhBUY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=2azHKci8ms4:jgNlEqhhBUY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=2azHKci8ms4:jgNlEqhhBUY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=2azHKci8ms4:jgNlEqhhBUY:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=2azHKci8ms4:jgNlEqhhBUY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=2azHKci8ms4:jgNlEqhhBUY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=2azHKci8ms4:jgNlEqhhBUY:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=2azHKci8ms4:jgNlEqhhBUY:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=2azHKci8ms4:jgNlEqhhBUY:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=2azHKci8ms4:jgNlEqhhBUY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=2azHKci8ms4:jgNlEqhhBUY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=2azHKci8ms4:jgNlEqhhBUY:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/productivedreams?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/productivedreams?a=2azHKci8ms4:jgNlEqhhBUY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/productivedreams?i=2azHKci8ms4:jgNlEqhhBUY:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/productivedreams/~4/2azHKci8ms4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/everything-you-need-to-know-about-parallax/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		<feedburner:origLink>http://www.productivedreams.com/everything-you-need-to-know-about-parallax/</feedburner:origLink></item>
	</channel>
</rss>
