<?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>ilovecolors</title>
	
	<link>http://www.ilovecolors.com.ar</link>
	<description />
	<lastBuildDate>Thu, 03 May 2012 12:43:39 +0000</lastBuildDate>
	<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/ilovecolors" /><feedburner:info uri="ilovecolors" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>ilovecolors</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Preserving radio button checked state during drag and drop with jQuery</title>
		<link>http://feedproxy.google.com/~r/ilovecolors/~3/O8XxYdSJtVs/</link>
		<comments>http://www.ilovecolors.com.ar/preserving-radio-button-checked-state-during-drag-and-drop-jquery/#comments</comments>
		<pubDate>Thu, 03 May 2012 11:00:25 +0000</pubDate>
		<dc:creator>Elio</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[user interface]]></category>

		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=4957</guid>
		<description><![CDATA[Have you ever stumbled upon the issue of radio buttons losing their &#8220;checked&#8221; state while dragging and dropping a div containing them using the Sortable module of jQuery UI? It is not a pleasant experience and is a known issue even in jQuery 1.7.x bundled in WordPress 3.3 &#8211; 3.4. Read on to learn how [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/rWDXdloSFMpXcKK2Y8S3R6cOJPI/0/da"><img src="http://feedads.g.doubleclick.net/~a/rWDXdloSFMpXcKK2Y8S3R6cOJPI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/rWDXdloSFMpXcKK2Y8S3R6cOJPI/1/da"><img src="http://feedads.g.doubleclick.net/~a/rWDXdloSFMpXcKK2Y8S3R6cOJPI/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.ilovecolors.com.ar/preserving-radio-button-checked-state-during-drag-and-drop-jquery/"><img class="alignnone size-full wp-image-4961" title="Preserve radio checked state dragging and dropping with jQuery sortable" src="http://www.ilovecolors.com.ar/wp-content/uploads/2012/05/preserve-radio-checked-dragging-jquery-sortable.jpg" alt="" width="520" height="200" /></a></p>
<p>Have you ever stumbled upon the issue of radio buttons losing their &#8220;checked&#8221; state while dragging and dropping a div containing them using the Sortable module of jQuery UI? It is not a pleasant experience and is a known issue even in jQuery 1.7.x bundled in WordPress 3.3 &#8211; 3.4. Read on to learn how to fix this.</p>
<p><span id="more-4957"></span></p>
<h2>The issue</h2>
<p>If you have stumbled upon this, you surely know your way on jQuery so let&#8217;s go straight to the point: while using Sortable from jQuery UI, if you drag and drop an element containing radio buttons already checked, they will lose their state (their &#8220;checkedness&#8221;).</p>
<p>There are a bunch of solutions around, to detect the moment when you start dragging and then dropping, but a bit complicated. I found a <a href="http://core.trac.wordpress.org/ticket/16972" target="_blank">solution on WordPress Trac</a> but it was complicated since it requires to register a listener for mouse events and then trigger a click on the radio button that was previously checked.<br />
We don&#8217;t need any that: the <a href="http://jqueryui.com/demos/sortable/" target="_blank">Sortable module</a> has <em>a callback that is triggered when you start dragging</em> the element so we will use it and we will simply set the checked property on those radio inputs that were checked.<br />
However, this solution was useful in their approach of storing a pointer of only those radio buttons that have been checked.</p>
<h2>Fixing it</h2>
<p>So let&#8217;s consider this code:</p>
<pre class="brush: jscript; title: ; notranslate">
jQuery(document).ready(function ($) {

$('#tr-blocks').sortable({
        opacity: 0.5,
        helper: 'clone',
        placeholder: 'ui-state-highlight',
        start: function (e, ui) {
//The code you need begins here
            var radio_checked= {};
            $('input[type=&quot;radio&quot;]', this).each(function(){
            	if($(this).is(':checked'))
            		radio_checked[$(this).attr('name')] = $(this).val();
            	$(document).data('radio_checked', radio_checked);
            });
        }
    }).bind('sortstop', function (event, ui) {
    	var radio_restore = jQuery(document).data('radio_checked');
    	for(radio in radio_restore){
    		$('input[id=&quot;'+ radio + radio_restore[radio]+'&quot;]').prop('checked', true);
	}
//and ends here
    });

});
</pre>
<p>This will save only the names and value of checked radio buttons when user starts dragging using <a href="http://api.jquery.com/jQuery.data/" target="_blank">jQuery&#8217;s data</a>. When the dragged element is dropped, the data is retrieved and each radio button that was checked before has its checkedness restored using <a href="http://api.jquery.com/prop/" target="_blank">prop</a>.</p>
<p>Now, if you have a keen eye for details, you might have noticed this</p>
<pre class="brush: jscript; title: ; notranslate">
$('input[id=&quot;'+ radio + radio_restore[radio]+'&quot;]')
</pre>
<p>why not using the plain ID? like</p>
<pre class="brush: jscript; title: ; notranslate">
$('#'+ radio + radio_restore[radio])
</pre>
<p>it was simply because my fields had this notation</p>
<pre class="brush: xml; title: ; notranslate">
#optionsSetName[subset]value
</pre>
<p>and for some reason using the traditional selector throw an empty array []. Didn&#8217;t paid too much attention as it was correctly fixed using the ID attribute, but I just want to clarify that maybe you won&#8217;t have to use this selector format.</p>
<h2>Another option</h2>
<p>Not exactly a fix but an alternative would be to use &lt;select elements. You won&#8217;t experience this issue as its checked option is correctly preserved during drag and drop, at least with jQuery 1.7.x.</p>
<div class="related-posts-msg">You might want to check these related posts:</div><ul class="related-posts">
	<li><a title="jQuery plugin for better select boxes" href="http://www.ilovecolors.com.ar/chosen-jquery-plugin-for-better-select-boxes/">jQuery plugin for better select boxes</a></li>

	<li><a title="Slide upwards in jQuery using slideDown()" href="http://www.ilovecolors.com.ar/jquery-slide-upwards-using-slidedown/">Slide upwards in jQuery using slideDown()</a></li>

	<li><a title="Web Design Resources &#8211; November 2011" href="http://www.ilovecolors.com.ar/web-design-resources-november-2011/">Web Design Resources &#8211; November 2011</a></li>

	<li><a title="Best web design resources of August 2011" href="http://www.ilovecolors.com.ar/web-design-resources-august-2011/">Best web design resources of August 2011</a></li>

	<li><a title="Saving custom fields in quick or bulk edit mode in WordPress" href="http://www.ilovecolors.com.ar/saving-custom-fields-quick-bulk-edit-wordpress/">Saving custom fields in quick or bulk edit mode in WordPress</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ilovecolors?a=O8XxYdSJtVs:mL-LZq2bkdE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=O8XxYdSJtVs:mL-LZq2bkdE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=O8XxYdSJtVs:mL-LZq2bkdE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=O8XxYdSJtVs:mL-LZq2bkdE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=O8XxYdSJtVs:mL-LZq2bkdE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=O8XxYdSJtVs:mL-LZq2bkdE:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ilovecolors/~4/O8XxYdSJtVs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ilovecolors.com.ar/preserving-radio-button-checked-state-during-drag-and-drop-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ilovecolors.com.ar/preserving-radio-button-checked-state-during-drag-and-drop-jquery/</feedburner:origLink></item>
		<item>
		<title>Sticker Mule US$100 Giveaway: The Winner!</title>
		<link>http://feedproxy.google.com/~r/ilovecolors/~3/zkRH-IlAsRo/</link>
		<comments>http://www.ilovecolors.com.ar/sticker-mule-giveaway-custom-stickers/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 15:07:55 +0000</pubDate>
		<dc:creator>Elio</dc:creator>
				<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[contest]]></category>

		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=4934</guid>
		<description><![CDATA[Some of you might be familiar with Sticker Mule, the online service for custom stickers printing. Today we’ve got a great giveaway from Sticker Mule, as they will award $100 in free custom stickers to one lucky winner! Sticker Mule is a really awesome custom sticker printer with a lot of love for us graphic designers. They&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/MitUB6rqt3YH97VSIjRZ4Zc-1NY/0/da"><img src="http://feedads.g.doubleclick.net/~a/MitUB6rqt3YH97VSIjRZ4Zc-1NY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/MitUB6rqt3YH97VSIjRZ4Zc-1NY/1/da"><img src="http://feedads.g.doubleclick.net/~a/MitUB6rqt3YH97VSIjRZ4Zc-1NY/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.ilovecolors.com.ar/wp-content/uploads/2012/03/sticker-mule-0.jpg" class="thickbox" rel="grupo4934" ><img class="alignnone size-full wp-image-4935" title="sticker-mule-0" src="http://www.ilovecolors.com.ar/wp-content/uploads/2012/03/sticker-mule-0.jpg" alt="" width="520" height="200" /></a></p>
<p>Some of you might be familiar with Sticker Mule, the online service for custom stickers printing. Today we’ve got a great giveaway from Sticker Mule, as they will award $100 in free custom stickers to one lucky winner!</p>
<p><span id="more-4934"></span></p>
<p><a title="Sticker Mule - Custom Stickers Printing" href="http://www.stickermule.com/">Sticker Mule</a> is a really awesome custom sticker printer with a lot of love for us graphic designers. They&#8217;ll make your artwork print ready for free, and provide a free online proof with every order.</p>
<p><a href="http://www.ilovecolors.com.ar/wp-content/uploads/2012/03/sticker-mule-1.jpg" class="thickbox" rel="grupo4934" ><img class="alignnone size-full wp-image-4936" title="sticker-mule-1" src="http://www.ilovecolors.com.ar/wp-content/uploads/2012/03/sticker-mule-1.jpg" alt="" width="520" height="200" /></a></p>
<p>They have a wide variety of stickers, from simple rectangular bumpers, to die cut and even custom ones for your mobile device or laptop. The quality of the printing and stickers is excellent, and ordering is really easy, as you can do it through their site.</p>
<p><a href="http://www.ilovecolors.com.ar/wp-content/uploads/2012/03/sticker-mule-2.jpg" class="thickbox" rel="grupo4934" ><img class="alignnone size-full wp-image-4937" title="sticker-mule-2" src="http://www.ilovecolors.com.ar/wp-content/uploads/2012/03/sticker-mule-2.jpg" alt="" width="520" height="200" /></a></p>
<h2>The Winner!</h2>
<p>Thank you very much to all of you who entered the contest! and the Sticker Mule prize goes to&#8230;</p>
<p><strong>Heather Bee</strong>! a freelance designer running <a href="http://hiveidesign.com" target="_blank">hiveidesign.com</a>, congratulations Heather!</p>
<div class="related-posts-msg">You might want to check these related posts:</div><ul class="related-posts">
	<li><a title="Winners Next Day Flyers giveaway: win 2 sets of 500 full color business cards" href="http://www.ilovecolors.com.ar/next-day-flyers-giveaway-business-cards/">Winners Next Day Flyers giveaway: win 2 sets of 500 full color business cards</a></li>

	<li><a title="Winners of Pixmac stock photo accounts loaded with US$ 99!" href="http://www.ilovecolors.com.ar/pixmac-giveaway-stock-photo-accounts/">Winners of Pixmac stock photo accounts loaded with US$ 99!</a></li>

	<li><a title="Enter to win 50GB Dropbox Pro for life" href="http://www.ilovecolors.com.ar/win-50gb-dropbox-pro-for-life/">Enter to win 50GB Dropbox Pro for life</a></li>

	<li><a title="Win a $50 iTunes gift voucher!" href="http://www.ilovecolors.com.ar/win-a-50-itunes-gift-voucher/">Win a $50 iTunes gift voucher!</a></li>

	<li><a title="Dribbble Invitation" href="http://www.ilovecolors.com.ar/dribbble-invitation/">Dribbble Invitation</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ilovecolors?a=zkRH-IlAsRo:X3DiJI9Ne_k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=zkRH-IlAsRo:X3DiJI9Ne_k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=zkRH-IlAsRo:X3DiJI9Ne_k:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=zkRH-IlAsRo:X3DiJI9Ne_k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=zkRH-IlAsRo:X3DiJI9Ne_k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=zkRH-IlAsRo:X3DiJI9Ne_k:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ilovecolors/~4/zkRH-IlAsRo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ilovecolors.com.ar/sticker-mule-giveaway-custom-stickers/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		<feedburner:origLink>http://www.ilovecolors.com.ar/sticker-mule-giveaway-custom-stickers/</feedburner:origLink></item>
		<item>
		<title>HTML/CSS Reset De-Compactor</title>
		<link>http://feedproxy.google.com/~r/ilovecolors/~3/MqmaMENWwOY/</link>
		<comments>http://www.ilovecolors.com.ar/htmlcss-reset-de-compactor/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 11:48:16 +0000</pubDate>
		<dc:creator>Elio</dc:creator>
				<category><![CDATA[minipost]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=4922</guid>
		<description><![CDATA[Tired of seeing those tons of CSS declarations when using Firebug or Webkit inspector? Then try the Reset De-Compactor. This works by expanding your grouped declarations into single rules. This is only meant for development work.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/uwEjGPUG2B_on_id5lLR_9YX8lk/0/da"><img src="http://feedads.g.doubleclick.net/~a/uwEjGPUG2B_on_id5lLR_9YX8lk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/uwEjGPUG2B_on_id5lLR_9YX8lk/1/da"><img src="http://feedads.g.doubleclick.net/~a/uwEjGPUG2B_on_id5lLR_9YX8lk/1/di" border="0" ismap="true"></img></a></p><p>Tired of seeing those tons of CSS declarations when using Firebug or Webkit inspector? Then try the <a href="http://johndyer.name/lab/cssdecompactor/" target="_blank">Reset De-Compactor</a>.</p>
<p><span id="more-4922"></span></p>
<p>This works by expanding your grouped declarations into single rules. This is only meant for development work.</p>
<div class="related-posts-msg">You might want to check these related posts:</div><ul class="related-posts">
	<li><a title=" Firefox Aurora introduces native developer tools" href="http://www.ilovecolors.com.ar/firefox-aurora-native-developer-tools/"> Firefox Aurora introduces native developer tools</a></li>

	<li><a title="Enter to win 50GB Dropbox Pro for life" href="http://www.ilovecolors.com.ar/win-50gb-dropbox-pro-for-life/">Enter to win 50GB Dropbox Pro for life</a></li>

	<li><a title="Automatic browser refresh for Chrome &#038; Safari" href="http://www.ilovecolors.com.ar/automatic-browser-refresh-for-chrome-safari/">Automatic browser refresh for Chrome &#038; Safari</a></li>

	<li><a title="Free PHP IDE with WordPress support" href="http://www.ilovecolors.com.ar/free-php-ide-with-wordpress-support/">Free PHP IDE with WordPress support</a></li>

	<li><a title="WordPress code templates for Aptana" href="http://www.ilovecolors.com.ar/wordpress-code-templates-for-aptana/">WordPress code templates for Aptana</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ilovecolors?a=MqmaMENWwOY:s6Wa7xPU9pg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=MqmaMENWwOY:s6Wa7xPU9pg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=MqmaMENWwOY:s6Wa7xPU9pg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=MqmaMENWwOY:s6Wa7xPU9pg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=MqmaMENWwOY:s6Wa7xPU9pg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=MqmaMENWwOY:s6Wa7xPU9pg:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ilovecolors/~4/MqmaMENWwOY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ilovecolors.com.ar/htmlcss-reset-de-compactor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ilovecolors.com.ar/htmlcss-reset-de-compactor/</feedburner:origLink></item>
		<item>
		<title>Winners Next Day Flyers giveaway: win 2 sets of 500 full color business cards</title>
		<link>http://feedproxy.google.com/~r/ilovecolors/~3/J6_ki3D7cNk/</link>
		<comments>http://www.ilovecolors.com.ar/next-day-flyers-giveaway-business-cards/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 16:29:37 +0000</pubDate>
		<dc:creator>Elio</dc:creator>
				<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=4899</guid>
		<description><![CDATA[Next Day Flyers is a leading online printing company offering customized printing services of all things related to marketing including business cards, brochures, booklets, flyers and more. Design today, get your printed design tomorrow The main strength of Next Day Flyers is their fast next day printing service delivering quality custom printed materials. They can even print in [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/-BoPv976BvU32kjaMQv3SpSQQ8o/0/da"><img src="http://feedads.g.doubleclick.net/~a/-BoPv976BvU32kjaMQv3SpSQQ8o/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-BoPv976BvU32kjaMQv3SpSQQ8o/1/da"><img src="http://feedads.g.doubleclick.net/~a/-BoPv976BvU32kjaMQv3SpSQQ8o/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.ilovecolors.com.ar/wp-content/uploads/2012/01/next-day-flyers.jpg" class="thickbox" rel="grupo4899" ><img title="Next Day Flyers" src="http://www.ilovecolors.com.ar/wp-content/uploads/2012/01/next-day-flyers.jpg" alt="" width="520" height="200" /></a></p>
<p>Next Day Flyers is a leading online printing company offering customized printing services of all things related to marketing including business cards, brochures, booklets, flyers and more.</p>
<p><span id="more-4899"></span></p>
<h2>Design today, get your printed design tomorrow</h2>
<p>The main strength of <a href="http://www.nextdayflyers.com/" target="_blank">Next Day Flyers</a> is their fast next day printing service delivering quality custom printed materials. They can even print in the same day which is great when you’re really in a hurry, trying to meet that important deadline.</p>
<p>Based out of Los Angeles for the past 13 years, they just opened a <a href="http://blog.nextdayflyers.com/new-jersey-printing-facility/" target="_blank">second printing facility in New Jersey</a>. This new location greatly reduces shipping times and expense for those customers based in the Eastern portion of the United States.</p>
<p><img class="alignnone size-full wp-image-4900" title="Next Day Flyers Printing Locations" src="http://www.ilovecolors.com.ar/wp-content/uploads/2012/01/map.jpg" alt="" width="520" height="200" /></p>
<p>The new printing facility is equipped with state of the art high speed printing presses to ensure the same high quality you’ve come to expect from Next Day Flyers.</p>
<p>Next Day Flyers also runs a <a href="http://blog.nextdayflyers.com/" target="_blank">blog</a>, where you can find interesting articles on printing, typography and photography so you should definitely pay a visit.</p>
<h2>Green printing</h2>
<p>Two awesome things that I like from Next Day Flyers are the facts that they care about the environment, printing on PEFC certified recycled  paper, and that their new facility is solar powered!  That&#8217;s simply great, good for your business and good for the environment.</p>
<h2>The giveaway</h2>
<p><a href="http://www.ilovecolors.com.ar/wp-content/uploads/2012/01/next-day-flyers-giveaway-business-cards.jpg" class="thickbox" rel="grupo4899" ><img title="Next Day Flyers Giveaway: Business Cards" src="http://www.ilovecolors.com.ar/wp-content/uploads/2012/01/next-day-flyers-giveaway-business-cards.jpg" alt="" width="520" height="200" /></a></p>
<p>Now onto the contest! As part of their grand opening celebration, Next Day Flyers will be giving away 2 sets of 500 full color business cards.  The business cards will be printed on 14 PT card stock and have the option of a free UV or Matte coating.  Shipping within the U.S. will be included.</p>
<h2>The Winners!</h2>
<ol>
<li>Daniel</li>
<li>Chanel</li>
</ol>
<p>Winners will be contacted by Next Day Flyer soon. Thanks for entering the contest!</p>
<div class="related-posts-msg">You might want to check these related posts:</div><ul class="related-posts">
	<li><a title="Sticker Mule US$100 Giveaway: The Winner!" href="http://www.ilovecolors.com.ar/sticker-mule-giveaway-custom-stickers/">Sticker Mule US$100 Giveaway: The Winner!</a></li>

	<li><a title="Winners of Pixmac stock photo accounts loaded with US$ 99!" href="http://www.ilovecolors.com.ar/pixmac-giveaway-stock-photo-accounts/">Winners of Pixmac stock photo accounts loaded with US$ 99!</a></li>

	<li><a title="Create your background patterns" href="http://www.ilovecolors.com.ar/web-app-to-create-background-patterns/">Create your background patterns</a></li>

	<li><a title="Web Design Resources &#8211; November 2011" href="http://www.ilovecolors.com.ar/web-design-resources-november-2011/">Web Design Resources &#8211; November 2011</a></li>

	<li><a title="Color theme for Aptana 3" href="http://www.ilovecolors.com.ar/color-theme-aptana-3/">Color theme for Aptana 3</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ilovecolors?a=J6_ki3D7cNk:xTxVYxZj-30:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=J6_ki3D7cNk:xTxVYxZj-30:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=J6_ki3D7cNk:xTxVYxZj-30:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=J6_ki3D7cNk:xTxVYxZj-30:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=J6_ki3D7cNk:xTxVYxZj-30:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=J6_ki3D7cNk:xTxVYxZj-30:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ilovecolors/~4/J6_ki3D7cNk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ilovecolors.com.ar/next-day-flyers-giveaway-business-cards/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.ilovecolors.com.ar/next-day-flyers-giveaway-business-cards/</feedburner:origLink></item>
		<item>
		<title>jQuery plugin for better select boxes</title>
		<link>http://feedproxy.google.com/~r/ilovecolors/~3/We3AxYnYU2w/</link>
		<comments>http://www.ilovecolors.com.ar/chosen-jquery-plugin-for-better-select-boxes/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 03:56:22 +0000</pubDate>
		<dc:creator>Elio</dc:creator>
				<category><![CDATA[minipost]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[user interface]]></category>

		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=4892</guid>
		<description><![CDATA[Chosen allows you to enhance HTML &#60;select&#62; elements using JavaScript to add multiple select, autocomplete and more. Chosen is available as a plugin for jQuery, Prototype and there&#8217;s a fork for MooTools.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/kGFRluvGUcl93Upc1Q145GkoYFA/0/da"><img src="http://feedads.g.doubleclick.net/~a/kGFRluvGUcl93Upc1Q145GkoYFA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/kGFRluvGUcl93Upc1Q145GkoYFA/1/da"><img src="http://feedads.g.doubleclick.net/~a/kGFRluvGUcl93Upc1Q145GkoYFA/1/di" border="0" ismap="true"></img></a></p><p><a href="http://harvesthq.github.com/chosen/" target="_blank">Chosen</a> allows you to enhance HTML &lt;select&gt; elements using JavaScript to add multiple select, autocomplete and more.</p>
<p><span id="more-4892"></span></p>
<p>Chosen is available as a plugin for <a href="http://ilovecolors.com.ar/category/jquery" target="_blank">jQuery</a>, Prototype and there&#8217;s a fork for MooTools.</p>
<div class="related-posts-msg">You might want to check these related posts:</div><ul class="related-posts">
	<li><a title="Preserving radio button checked state during drag and drop with jQuery" href="http://www.ilovecolors.com.ar/preserving-radio-button-checked-state-during-drag-and-drop-jquery/">Preserving radio button checked state during drag and drop with jQuery</a></li>

	<li><a title="Slide upwards in jQuery using slideDown()" href="http://www.ilovecolors.com.ar/jquery-slide-upwards-using-slidedown/">Slide upwards in jQuery using slideDown()</a></li>

	<li><a title="Web Design Resources &#8211; November 2011" href="http://www.ilovecolors.com.ar/web-design-resources-november-2011/">Web Design Resources &#8211; November 2011</a></li>

	<li><a title="Best web design resources of August 2011" href="http://www.ilovecolors.com.ar/web-design-resources-august-2011/">Best web design resources of August 2011</a></li>

	<li><a title="Saving custom fields in quick or bulk edit mode in WordPress" href="http://www.ilovecolors.com.ar/saving-custom-fields-quick-bulk-edit-wordpress/">Saving custom fields in quick or bulk edit mode in WordPress</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ilovecolors?a=We3AxYnYU2w:TgLAnfBMJWo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=We3AxYnYU2w:TgLAnfBMJWo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=We3AxYnYU2w:TgLAnfBMJWo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=We3AxYnYU2w:TgLAnfBMJWo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=We3AxYnYU2w:TgLAnfBMJWo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=We3AxYnYU2w:TgLAnfBMJWo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ilovecolors/~4/We3AxYnYU2w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ilovecolors.com.ar/chosen-jquery-plugin-for-better-select-boxes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.ilovecolors.com.ar/chosen-jquery-plugin-for-better-select-boxes/</feedburner:origLink></item>
		<item>
		<title>Winners of Pixmac stock photo accounts loaded with US$ 99!</title>
		<link>http://feedproxy.google.com/~r/ilovecolors/~3/ivFUalfSUvs/</link>
		<comments>http://www.ilovecolors.com.ar/pixmac-giveaway-stock-photo-accounts/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 14:12:22 +0000</pubDate>
		<dc:creator>Elio</dc:creator>
				<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[showcase]]></category>

		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=4878</guid>
		<description><![CDATA[We&#8217;re kicking off the year with a sweet giveaway brought to you by Pixmac, one of the leading contenders in the stock photo arena, who is giving you the opportunity to win one of three accounts loaded with US$99 in credits! Pixmac Stock Photos Pixmac is one of the fastest, most usable and reliable microstock [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/iRBQw_yoOWD3t4KCRO3HRf4Btkg/0/da"><img src="http://feedads.g.doubleclick.net/~a/iRBQw_yoOWD3t4KCRO3HRf4Btkg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/iRBQw_yoOWD3t4KCRO3HRf4Btkg/1/da"><img src="http://feedads.g.doubleclick.net/~a/iRBQw_yoOWD3t4KCRO3HRf4Btkg/1/di" border="0" ismap="true"></img></a></p><p>We&#8217;re kicking off the year with a sweet giveaway brought to you by Pixmac, one of the leading contenders in the stock photo arena, who is giving you the opportunity to win one of three accounts loaded with US$99 in credits!</p>
<p><span id="more-4878"></span></p>
<h2>Pixmac Stock Photos</h2>
<p><img class="alignnone size-full wp-image-4882" title="pixmac-giveaway-3" src="http://www.ilovecolors.com.ar/wp-content/uploads/2012/01/pixmac-giveaway-3.jpg" alt="" width="520" height="270" /></p>
<p><a title="Pixmac - Stock Photography" href="http://www.pixmac.com/" target="_blank">Pixmac</a> is one of the fastest, most usable and reliable microstock agency out there offering millions of images at budget prices. They offer photos from $1 with the ability to source, download and buy an image in less than 3 minutes, with no registration process.</p>
<p>Pixmac offers a fast, time-saving site with great customer service – they care about your deadlines empowering you with useful tools like the power search, and displaying images similar to the one you picked or even related images by tags.</p>
<p>Pixmac also has a free images section with more than 60,000 images for you to download.</p>
<h2>Enter the Pixmac Contest</h2>
<p><img title="pixmac giveaway" src="http://www.ilovecolors.com.ar/wp-content/uploads/2012/01/pixmac-giveaway-1.jpg" alt="" width="520" height="270" /></p>
<p>You can do one of the following to enter the contest:</p>
<ol>
<li>Leave a comment below stating where you think you could use the Pixmac images</li>
<li>Tweet this post using <a href="https://twitter.com/intent/tweet?text=Pixmac giveaway: stock photo accounts loaded with US$ 99 (via @eliorivero)&amp;url=http://ilovecolors.com.ar/pixmac-giveaway-stock-photo-accounts/" target="_blank">this link</a> mentioning me (just to alert me of your tweet)</li>
</ol>
<p>Contest will run until next Monday 23. Good luck everyone!</p>
<h2>UPDATE: The Winners!</h2>
<p>The winners of the giveaway are</p>
<p>Commenters:</p>
<ul>
<li>sminkkel</li>
<li>Ido Schacham</li>
</ul>
<p>On Twitter:</p>
<ul>
<li>rappelsnut</li>
</ul>
<p>They will be contacted later by a Pixmac representative.</p>
<p>Thanks everyone for entering the giveaway!</p>
<div class="related-posts-msg">You might want to check these related posts:</div><ul class="related-posts">
	<li><a title="Sticker Mule US$100 Giveaway: The Winner!" href="http://www.ilovecolors.com.ar/sticker-mule-giveaway-custom-stickers/">Sticker Mule US$100 Giveaway: The Winner!</a></li>

	<li><a title="Winners Next Day Flyers giveaway: win 2 sets of 500 full color business cards" href="http://www.ilovecolors.com.ar/next-day-flyers-giveaway-business-cards/">Winners Next Day Flyers giveaway: win 2 sets of 500 full color business cards</a></li>

	<li><a title="Web Design Resources &#8211; November 2011" href="http://www.ilovecolors.com.ar/web-design-resources-november-2011/">Web Design Resources &#8211; November 2011</a></li>

	<li><a title="Enter to win 50GB Dropbox Pro for life" href="http://www.ilovecolors.com.ar/win-50gb-dropbox-pro-for-life/">Enter to win 50GB Dropbox Pro for life</a></li>

	<li><a title="Design &#038; illustration by Bonnie Clas " href="http://www.ilovecolors.com.ar/bonnie-clas-design-illustration/">Design &#038; illustration by Bonnie Clas </a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ilovecolors?a=ivFUalfSUvs:KzYUckM60_c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=ivFUalfSUvs:KzYUckM60_c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=ivFUalfSUvs:KzYUckM60_c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=ivFUalfSUvs:KzYUckM60_c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=ivFUalfSUvs:KzYUckM60_c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=ivFUalfSUvs:KzYUckM60_c:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ilovecolors/~4/ivFUalfSUvs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ilovecolors.com.ar/pixmac-giveaway-stock-photo-accounts/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		<feedburner:origLink>http://www.ilovecolors.com.ar/pixmac-giveaway-stock-photo-accounts/</feedburner:origLink></item>
		<item>
		<title>Create your background patterns</title>
		<link>http://feedproxy.google.com/~r/ilovecolors/~3/pmqVkuh186U/</link>
		<comments>http://www.ilovecolors.com.ar/web-app-to-create-background-patterns/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 00:34:12 +0000</pubDate>
		<dc:creator>Elio</dc:creator>
				<category><![CDATA[minipost]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[web application]]></category>

		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=4875</guid>
		<description><![CDATA[BgPatterns is a background pattern creator with tools to set color, base pattern, rotation of motif and more.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/nv0NHha-OyaM1aA0q6qF51Z-jCc/0/da"><img src="http://feedads.g.doubleclick.net/~a/nv0NHha-OyaM1aA0q6qF51Z-jCc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/nv0NHha-OyaM1aA0q6qF51Z-jCc/1/da"><img src="http://feedads.g.doubleclick.net/~a/nv0NHha-OyaM1aA0q6qF51Z-jCc/1/di" border="0" ismap="true"></img></a></p><p><a href="http://bgpatterns.com/">BgPatterns</a> is a background pattern creator with tools to set color, base pattern, rotation of motif and more.</p>
<p><span id="more-4875"></span></p>
<div class="related-posts-msg">You might want to check these related posts:</div><ul class="related-posts">
	<li><a title="Best web design resources of July 2011" href="http://www.ilovecolors.com.ar/best-web-design-resources-of-july-2011/">Best web design resources of July 2011</a></li>

	<li><a title="10 resources for a better interface design " href="http://www.ilovecolors.com.ar/resources-interface-design/">10 resources for a better interface design </a></li>

	<li><a title="16 solutions for designers to sell digital goods" href="http://www.ilovecolors.com.ar/selling-digital-goods/">16 solutions for designers to sell digital goods</a></li>

	<li><a title="Domai.nr" href="http://www.ilovecolors.com.ar/domai-nr/">Domai.nr</a></li>

	<li><a title="Seven online color tools for design" href="http://www.ilovecolors.com.ar/online-color-schemer-tools-design/">Seven online color tools for design</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ilovecolors?a=pmqVkuh186U:K_ZW-HZFB8g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=pmqVkuh186U:K_ZW-HZFB8g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=pmqVkuh186U:K_ZW-HZFB8g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=pmqVkuh186U:K_ZW-HZFB8g:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=pmqVkuh186U:K_ZW-HZFB8g:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=pmqVkuh186U:K_ZW-HZFB8g:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ilovecolors/~4/pmqVkuh186U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ilovecolors.com.ar/web-app-to-create-background-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ilovecolors.com.ar/web-app-to-create-background-patterns/</feedburner:origLink></item>
		<item>
		<title>Firefox Aurora introduces native developer tools</title>
		<link>http://feedproxy.google.com/~r/ilovecolors/~3/8oHqENyhvo4/</link>
		<comments>http://www.ilovecolors.com.ar/firefox-aurora-native-developer-tools/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 14:04:22 +0000</pubDate>
		<dc:creator>Elio</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=4850</guid>
		<description><![CDATA[Firefox Aurora, the Firefox releases channel with the newest innovations now includes the new development tools so developers can inspect and tweak a web page&#8217;s HTML and CSS, accessing console, logs and even a nice feature called Scratchpad, to write JavaScript on the fly and execute it. For a long time most developers relied on [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/g_jid_sca4CxO52q5TdHY1D-2BA/0/da"><img src="http://feedads.g.doubleclick.net/~a/g_jid_sca4CxO52q5TdHY1D-2BA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/g_jid_sca4CxO52q5TdHY1D-2BA/1/da"><img src="http://feedads.g.doubleclick.net/~a/g_jid_sca4CxO52q5TdHY1D-2BA/1/di" border="0" ismap="true"></img></a></p><p><a title="Firefox Aurora introduces native developer tools" href="http://www.ilovecolors.com.ar/firefox-aurora-native-developer-tools/"><img title="firefox-aurora-developer-tools" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/12/firefox-aurora-developer-tools.jpg" alt="" width="520" height="200" /></a></p>
<p>Firefox Aurora, the Firefox releases channel with the newest innovations now includes the new development tools so developers can inspect and tweak a web page&#8217;s HTML and CSS, accessing console, logs and even a nice feature called Scratchpad, to write JavaScript on the fly and execute it.</p>
<p><span id="more-4850"></span></p>
<p>For a long time most developers relied on Firebug as their main development tool to edit web pages on Firefox. But the reality is that Firebug, understandably, is not being as actively developed as Chrome&#8217;s developer tools and they are starting to fall behind.</p>
<p>While I&#8217;ve moved from Firefox to Chrome as soon as it was released, I still used Firefox for a long time as my main development tool primarily due to Firebug. Since June this year, Chrome developer tools were dramatically improved, mainly in the user interaction of HTML and CSS editing. On top of that, it has (it always had) a much better design of the log of network transactions and resources than Firebug&#8217;s so it was a natural choice to completely shift to Chrome for all development.</p>
<p>Firefox will now try to regain web developers with the new built in tools, that look very interesting, specially the breadcrumb at the bottom with the ability to quickly select sibling elements.</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/5TnGE3yl8dI?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>You can <a href="http://www.mozilla.org/en-US/firefox/aurora/" target="_blank">install Firefox Aurora</a>, the Firefox channel with the newest additions, enhancements and overall innovations, and try them today.</p>
<div class="related-posts-msg">You might want to check these related posts:</div><ul class="related-posts">
	<li><a title="Automatic browser refresh for Chrome &#038; Safari" href="http://www.ilovecolors.com.ar/automatic-browser-refresh-for-chrome-safari/">Automatic browser refresh for Chrome &#038; Safari</a></li>

	<li><a title="HTML/CSS Reset De-Compactor" href="http://www.ilovecolors.com.ar/htmlcss-reset-de-compactor/">HTML/CSS Reset De-Compactor</a></li>

	<li><a title="Enter to win 50GB Dropbox Pro for life" href="http://www.ilovecolors.com.ar/win-50gb-dropbox-pro-for-life/">Enter to win 50GB Dropbox Pro for life</a></li>

	<li><a title="Free PHP IDE with WordPress support" href="http://www.ilovecolors.com.ar/free-php-ide-with-wordpress-support/">Free PHP IDE with WordPress support</a></li>

	<li><a title="WordPress code templates for Aptana" href="http://www.ilovecolors.com.ar/wordpress-code-templates-for-aptana/">WordPress code templates for Aptana</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ilovecolors?a=8oHqENyhvo4:rz3DYZY_WO4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=8oHqENyhvo4:rz3DYZY_WO4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=8oHqENyhvo4:rz3DYZY_WO4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=8oHqENyhvo4:rz3DYZY_WO4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=8oHqENyhvo4:rz3DYZY_WO4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=8oHqENyhvo4:rz3DYZY_WO4:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ilovecolors/~4/8oHqENyhvo4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ilovecolors.com.ar/firefox-aurora-native-developer-tools/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.ilovecolors.com.ar/firefox-aurora-native-developer-tools/</feedburner:origLink></item>
		<item>
		<title>Web Design Resources – November 2011</title>
		<link>http://feedproxy.google.com/~r/ilovecolors/~3/2J6xD2GhDag/</link>
		<comments>http://www.ilovecolors.com.ar/web-design-resources-november-2011/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 20:57:09 +0000</pubDate>
		<dc:creator>Elio</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[free font]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[showcase]]></category>
		<category><![CDATA[typeface]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=4752</guid>
		<description><![CDATA[It&#8217;s been a little quiet here lately, but here&#8217;s our monthly digest of web design tools, resources, articles and inspiration for November 2011. Kern Type http://type.method.ac/ Learn the basics of kerning with this simple online game. Free font from FontShop for iOS http://www.fontshop.com/freefonts FontShop started offering fonts that are specifically hinted and optimized for iOS [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/wCxO7NJ-u2Wf9joHoK3zEM_pq7c/0/da"><img src="http://feedads.g.doubleclick.net/~a/wCxO7NJ-u2Wf9joHoK3zEM_pq7c/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/wCxO7NJ-u2Wf9joHoK3zEM_pq7c/1/da"><img src="http://feedads.g.doubleclick.net/~a/wCxO7NJ-u2Wf9joHoK3zEM_pq7c/1/di" border="0" ismap="true"></img></a></p><p>It&#8217;s been a little quiet here lately, but here&#8217;s our monthly digest of web design tools, resources, articles and inspiration for November 2011.</p>
<p><span id="more-4752"></span></p>
<h2>Kern Type</h2>
<p><a href="http://type.method.ac/" target="_blank">http://type.method.ac/</a></p>
<h3><img title="kerning-game" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/kerning-game.jpg" alt="" width="520" height="350" /></h3>
<p>Learn the basics of kerning with this simple online game.</p>
<h2>Free font from FontShop for iOS</h2>
<p><a href="http://www.fontshop.com/freefonts" target="_blank">http://www.fontshop.com/freefonts</a></p>
<h3><img title="fontshop-free-ios-font" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/fontshop-free-ios-font.jpg" alt="" width="520" height="350" /></h3>
<p>FontShop started offering fonts that are specifically hinted and optimized for iOS devices. They&#8217;re offering one weight of Basic Gothic Mobile typeface for free.</p>
<h2>iOS 5 on iPhone 4S GUI PSD</h2>
<p><a href="http://www.teehanlax.com/blog/ios-5-gui-psd-iphone-4s/">http://www.teehanlax.com/blog/ios-5-gui-psd-iphone-4s/</a></p>
<h3><img title="ios5-gui" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/ios5-gui.jpg" alt="" width="520" height="350" /></h3>
<p>Teehan+Lax have updated their popular iPhone GUI PSD to match the new iOS5 running in the iPhone 4S.</p>
<h2>Solo: project management</h2>
<p><a href="http://thrivesolo.com/">http://thrivesolo.com/</a></p>
<h3><img title="solo-project-management" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/solo-project-management.jpg" alt="" width="520" height="350" /></h3>
<p>Solo is an online project management suite. The design has been carefully crafted, is very clean, comfortable and includes cool tricks like SVG rollovers.</p>
<h2>Docpool: share documentation</h2>
<p><a href="http://www.docpool.co/">http://www.docpool.co/</a></p>
<h3><img title="docpool-document-repository" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/docpool-document-repository.jpg" alt="" width="520" height="350" /></h3>
<p>An online repository of documents related to web design and development with items such as contract templates, invoices, project quoting and others.</p>
<h2>HTML 5 for web designers</h2>
<p><a href="http://html5forwebdesigners.com/">http://html5forwebdesigners.com/</a></p>
<h3><img title="html5-book" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/html5-book.jpg" alt="" width="520" height="350" /></h3>
<p>The popular book about HTML 5 published by A List Apart and written by Jeremy Keith, now has an online counterpart where you can read it all for free.</p>
<h2>HTML 5 Audio Player</h2>
<p><a href="http://codecanyon.net/item/simple-html5-audio-player-v1/495024?ref=Elliot">http://codecanyon.net/item/simple-html5-audio-player-v1/495024</a></p>
<p><a href="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/html5-audio-player.jpg" class="thickbox" rel="grupo4752" ><img class="alignnone size-full wp-image-4846" title="HTML 5 Audio Player" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/html5-audio-player.jpg" alt="" width="520" height="350" /></a></p>
<p>This is a sleek and lightweight audio player built in HTML 5 that supports OGG and MP3 audio formats. It provides a fallback for older browsers and you can include multiple instances of the player in your page.</p>
<h2>CSS Animation</h2>
<p><a href="http://daneden.me/animate/">http://daneden.me/animate/</a></p>
<h3><img title="css-animation" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/css-animation.jpg" alt="" width="520" height="350" /></h3>
<p>Animate is a CSS library with several cross-browser animations to use in your projects. The animations are supported by Chrome, Safari and Firefox. Animate is distributed under the MIT license so you can use it in your commercial projects.</p>
<h2>Dart: structured web apps</h2>
<p><a href="http://www.dartlang.org/">http://www.dartlang.org/</a></p>
<h3><img title="dart-language" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/dart-language.jpg" alt="" width="520" height="350" /></h3>
<p>The new language to build structured web applications created by Google, Dart, was finally released and although it&#8217;s an early release, it looks really promising.</p>
<h2>Responsive carousel for jQuery</h2>
<p><a href="http://tympanus.net/Development/Elastislide/">http://tympanus.net/Development/Elastislide/</a></p>
<h3><img title="elastislide-responsive-carousel" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/elastislide-responsive-carousel.jpg" alt="" width="520" height="350" /></h3>
<p>Elastislide is a lightweight and easy to implement responsive slider built as a plugin for jQuery. It implements the Touchwipe Plugin that allows to swipe the images in the slider whenever you&#8217;re visiting the site in an iOS or Android device.</p>
<h2>WordPress</h2>
<h3>Balita: free E-Commerce theme</h3>
<p><a href="http://www.smashingmagazine.com/2011/10/19/free-e-commerce-wordpress-theme-balita/">http://www.smashingmagazine.com/2011/10/19/free-e-commerce-wordpress-theme-balita/</a></p>
<h3><img title="balita-wordpress-ecommerce-theme" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/balita-wordpress-ecommerce-theme.jpg" alt="" width="520" height="350" /></h3>
<p>Smashing Magazine released a neat e-commerce theme for WordPress packed with features such as</p>
<ul>
<li><span style="direction: ltr;">jQuery Product Slider</span></li>
<li><span style="direction: ltr;">Custom Shopping Cart</span></li>
<li><span style="direction: ltr;">Ads Banner</span></li>
<li><span style="direction: ltr;">Search Products</span></li>
<li><span style="direction: ltr;">Blog Integration</span></li>
<li><span style="direction: ltr;">Related Products</span></li>
</ul>
<p>and much more. E-commerce done well is probably the next step for WordPress community. Jane Wells <a href="http://jane.wordpress.com/2011/09/01/forking-woo-free-agency-automattic-and-me-or-a-simple-comment-that-became-a-really-long-post/" target="_blank">pointed some time ago</a> that none of the currently options were genuinely &#8220;great&#8221;.</p>
<h3>How to create tabs in the settings page of your WordPress theme</h3>
<p><a href="http://wp.smashingmagazine.com/2011/10/20/create-tabs-wordpress-settings-pages/">http://wp.smashingmagazine.com/2011/10/20/create-tabs-wordpress-settings-pages/</a></p>
<h3><img title="create-wordpress-settings-tabs" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/create-wordpress-settings-tabs.jpg" alt="" width="520" height="300" /></h3>
<p>My first article for Smashing Magazine was published and it goes through the basics of implementing tabs in the settings page of your WordPress theme.</p>
<h2>Inspiration</h2>
<h3>Boris Pelcer: lettering, illustration and design</h3>
<p><a href="http://www.borispelcer.com/index.php">http://www.borispelcer.com/index.php</a></p>
<h3><img title="artwork-boris-pelcer" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/artwork-boris-pelcer.jpg" alt="" width="520" height="672" /></h3>
<h3>Jordan Metcalf: design and art</h3>
<p><a href="http://www.jordan-metcalf.com/">http://www.jordan-metcalf.com/</a></p>
<h3><img title="jordan-metcalf-lettering-illustration" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/11/jordan-metcalf-lettering-illustration.jpg" alt="" width="520" height="350" /></h3>
<h2>Articles</h2>
<h3>Responsive Web Design Demystified</h3>
<p><a href="http://www.elated.com/articles/responsive-web-design-demystified/">http://www.elated.com/articles/responsive-web-design-demystified/</a><br />
Matt Doyle goes through all the aspects involved in creating responsive sites, from beginning to end.</p>
<h3>Centering in the Unknown</h3>
<p>Chris Coyier explains how to center an element when you don&#8217;t know any dimension of the surrounding elements.<br />
<a href="http://css-tricks.com/14745-centering-in-the-unknown/">http://css-tricks.com/14745-centering-in-the-unknown/</a></p>
<div class="related-posts-msg">You might want to check these related posts:</div><ul class="related-posts">
	<li><a title="Best web design resources of August 2011" href="http://www.ilovecolors.com.ar/web-design-resources-august-2011/">Best web design resources of August 2011</a></li>

	<li><a title="10 Free fonts for web and graphic design" href="http://www.ilovecolors.com.ar/2011-free-fonts-design/">10 Free fonts for web and graphic design</a></li>

	<li><a title="33 free typefaces for graphic and web design" href="http://www.ilovecolors.com.ar/free-typefaces-graphic-web-design/">33 free typefaces for graphic and web design</a></li>

	<li><a title="Free fonts for design" href="http://www.ilovecolors.com.ar/free-fonts-design-district-growing/">Free fonts for design</a></li>

	<li><a title="Free fonts for graphic design: Kilogram &#038; Alt Matey" href="http://www.ilovecolors.com.ar/free-fonts-kilogram-alt-matey/">Free fonts for graphic design: Kilogram &#038; Alt Matey</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ilovecolors?a=2J6xD2GhDag:QIvpx7Z0bzo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=2J6xD2GhDag:QIvpx7Z0bzo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=2J6xD2GhDag:QIvpx7Z0bzo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=2J6xD2GhDag:QIvpx7Z0bzo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=2J6xD2GhDag:QIvpx7Z0bzo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=2J6xD2GhDag:QIvpx7Z0bzo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ilovecolors/~4/2J6xD2GhDag" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ilovecolors.com.ar/web-design-resources-november-2011/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.ilovecolors.com.ar/web-design-resources-november-2011/</feedburner:origLink></item>
		<item>
		<title>The author of the Lobster typeface seeks funding in Kickstarter</title>
		<link>http://feedproxy.google.com/~r/ilovecolors/~3/5n97PI90Mcs/</link>
		<comments>http://www.ilovecolors.com.ar/author-lobster-typeface-seeks-funding-kickstarter/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 17:49:59 +0000</pubDate>
		<dc:creator>Elio</dc:creator>
				<category><![CDATA[Typography]]></category>
		<category><![CDATA[free font]]></category>
		<category><![CDATA[typeface]]></category>

		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=4819</guid>
		<description><![CDATA[Pablo Impallari is best known for his Lobster font, one of the first typefaces freely available when Google Web Fonts launched. He is now seeking funds in Kickstarter for a new typeface project. Pablo submitted a project to Kickstarter to design and implement Fast Brush Script as a full web font that will be available [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/7vrK0luDHEEVy7C570h84TBHaJQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/7vrK0luDHEEVy7C570h84TBHaJQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7vrK0luDHEEVy7C570h84TBHaJQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/7vrK0luDHEEVy7C570h84TBHaJQ/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.ilovecolors.com.ar/author-lobster-typeface-seeks-funding-kickstarter/"><img class="alignnone size-full wp-image-4820" title="Fast Brush Script" src="http://www.ilovecolors.com.ar/wp-content/uploads/2011/10/fast-brush-script.png" alt="" width="520" height="200" /></a></p>
<p>Pablo Impallari is best known for his Lobster font, one of the first typefaces freely available when Google Web Fonts launched. He is now seeking funds in Kickstarter for a new typeface project.</p>
<p><span id="more-4819"></span></p>
<p>Pablo submitted a project to Kickstarter to design and implement <a href="http://www.kickstarter.com/projects/impallari/fast-brush-script" target="_blank">Fast Brush Script</a> as a full web font that will be available to use on your websites using the Google Web Fonts service.</p>
<p>Here&#8217;s what Pablo has to say about the font:</p>
<blockquote><div class="fcita"><p>By avoiding typographical perfection, it stays more natural. The angles of the vertical strokes vary a little, and the positioning along the baseline jumps around, giving it a more rustic and natural feeling.</p>
<p>Most script fonts have long ascenders and descenders, and this means they look too small when used at normal sizes on the web. I will optimize this font in the technical details to be very readable as a web font, even when used as small as at 16 pixels.</p></div></blockquote>
<p>The font will be hand-hinted by Google type experts so expect a high quality and beautiful script font to use on your sites.</p>
<p>Pablo Impallari can be reached at <a href="http://www.impallari.com/" target="_blank">http://www.impallari.com</a> or by following <a href="http://twitter.com/#!/pabloimpallari" target="_blank">@pabloimpallari</a> on Twitter.</p>
<div class="related-posts-msg">You might want to check these related posts:</div><ul class="related-posts">
	<li><a title="Web Design Resources &#8211; November 2011" href="http://www.ilovecolors.com.ar/web-design-resources-november-2011/">Web Design Resources &#8211; November 2011</a></li>

	<li><a title="Google Web Fonts out of Beta" href="http://www.ilovecolors.com.ar/google-web-fonts-out-of-beta/">Google Web Fonts out of Beta</a></li>

	<li><a title="10 Free fonts for web and graphic design" href="http://www.ilovecolors.com.ar/2011-free-fonts-design/">10 Free fonts for web and graphic design</a></li>

	<li><a title="33 free typefaces for graphic and web design" href="http://www.ilovecolors.com.ar/free-typefaces-graphic-web-design/">33 free typefaces for graphic and web design</a></li>

	<li><a title="Free fonts for design" href="http://www.ilovecolors.com.ar/free-fonts-for-design/">Free fonts for design</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ilovecolors?a=5n97PI90Mcs:l_LiMluURq4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=5n97PI90Mcs:l_LiMluURq4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=5n97PI90Mcs:l_LiMluURq4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=5n97PI90Mcs:l_LiMluURq4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ilovecolors?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ilovecolors?a=5n97PI90Mcs:l_LiMluURq4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ilovecolors?i=5n97PI90Mcs:l_LiMluURq4:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ilovecolors/~4/5n97PI90Mcs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ilovecolors.com.ar/author-lobster-typeface-seeks-funding-kickstarter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ilovecolors.com.ar/author-lobster-typeface-seeks-funding-kickstarter/</feedburner:origLink></item>
	</channel>
</rss>

