<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>qeqnes &#124; Designing. jQuery, Ajax, PHP, MySQL and Templates</title>
	<atom:link href="http://qeqnes.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://qeqnes.wordpress.com</link>
	<description>Qeqnes is a graphical blog maintained by Foad Yousefi. Topics focus on web Programming and Designing, Graphic Designing, jQuery, Ajax, PHP, Demos, Templates Javascript and MySQL</description>
	<lastBuildDate>Mon, 09 May 2011 09:01:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='qeqnes.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>qeqnes &#124; Designing. jQuery, Ajax, PHP, MySQL and Templates</title>
		<link>http://qeqnes.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://qeqnes.wordpress.com/osd.xml" title="qeqnes &#124; Designing. jQuery, Ajax, PHP, MySQL and Templates" />
	<atom:link rel='hub' href='http://qeqnes.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Jquery cool background animation</title>
		<link>http://qeqnes.wordpress.com/2011/05/06/jquery-cool-background-animation/</link>
		<comments>http://qeqnes.wordpress.com/2011/05/06/jquery-cool-background-animation/#comments</comments>
		<pubDate>Fri, 06 May 2011 21:25:24 +0000</pubDate>
		<dc:creator>qeqnes</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[ajax]]></category>

		<guid isPermaLink="false">http://qeqnes.wordpress.com/?p=727</guid>
		<description><![CDATA[Hi everyone, in this article I will show you how to make cool background animation with jquery. With this script you can make fresh new look to your web site or just experiment. You can see how it`s work her: demo Hear is all jquery code: (function($) { $.fn.animatedBG = function(options){ var height = $(this).height(); [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=727&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi everyone, in this article I will show you how to make cool background animation with jquery. With this script you can make fresh new look to your web site or just experiment.</p>
<p><span id="more-727"></span></p>
<p>You can see how it`s work her:</p>
<p><strong><a title="demo" href="http://www.css3forum.com/demo/animatedBG.html">demo</a></strong></p>
<p><strong><br />
</strong></p>
<p>Hear is all jquery code:</p>
<pre><code> (function($) { $.fn.animatedBG = function(options){ var height = $(this).height(); var width = $(this).width(); var parts = options.parts; var parts_width = width/parts; var bg_image = $(this).css("background-image"); var animationWidth = options.animationWidth; if (animationWidth == 'auto' || animationWidth == undefined) { animationWidth = parts_width; } for (i=1;i&lt;=options.parts;i++) { $(this).append(" "); $(this).find(".bg_part_"+i).css("float", "left"); $(this).find(".bg_part_"+i).css("background-image", bg_image); $(this).find(".bg_part_"+i).css("background-position", "-"+parts_width*(i-1) + "px 0"); $(this).find(".bg_part_"+i).css("width", parts_width); $(this).find(".bg_part_"+i).css("height", height); $(this).find(".bg_part_"+i).hover(function() { $(this).animate({backgroundPosition: "-"+parts_width*($(this).attr("rel")-1)-animationWidth + "px 0"}); } , function() { $(this).animate({backgroundPosition: "-"+parts_width*($(this).attr("rel")-1) + "px 0"}); }); } }; })(jQuery); </code></pre>
<p>And now I will explain you how it`s works. First you need to copy all code to new file, for example animatedBG.js and add to your page header . Now you can call this script like this:</p>
<pre><code> jQuery(document).ready(function() { var options = { parts: 10, animationWidth: 146 } $('#bg').animatedBG(options); }); </code></pre>
<p>Option “parts” means in how many parts your background will be split and option “animationWidth” means how far background will go to left during the animation. In “animationWidth” you can also set to “auto” then “animationWidth” will be the same as background split white. You need to use this script on page element who have some background.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qeqnes.wordpress.com/727/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qeqnes.wordpress.com/727/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qeqnes.wordpress.com/727/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qeqnes.wordpress.com/727/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/qeqnes.wordpress.com/727/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/qeqnes.wordpress.com/727/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/qeqnes.wordpress.com/727/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/qeqnes.wordpress.com/727/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qeqnes.wordpress.com/727/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qeqnes.wordpress.com/727/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qeqnes.wordpress.com/727/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qeqnes.wordpress.com/727/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qeqnes.wordpress.com/727/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qeqnes.wordpress.com/727/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=727&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://qeqnes.wordpress.com/2011/05/06/jquery-cool-background-animation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec8823c54b0918bd8d7cef3014fbf74?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qeqnes</media:title>
		</media:content>
	</item>
		<item>
		<title>MooTools History Plugin</title>
		<link>http://qeqnes.wordpress.com/2011/05/06/mootools-history-plugin/</link>
		<comments>http://qeqnes.wordpress.com/2011/05/06/mootools-history-plugin/#comments</comments>
		<pubDate>Fri, 06 May 2011 21:22:58 +0000</pubDate>
		<dc:creator>qeqnes</dc:creator>
				<category><![CDATA[MooTools]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://qeqnes.wordpress.com/?p=725</guid>
		<description><![CDATA[One of the reasons I love AJAX technology so much is because it allows us to avoid unnecessary page loads.  Why download the header, footer, and other static data multiple times if that specific data never changes?  It&#8217;s a waste of time, processing, and bandwidth.  Unfortunately, at this point in the web, constant refreshes are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=725&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the reasons I love AJAX technology so much is because it allows us to avoid unnecessary page loads.  Why download the header, footer, and other static data multiple times if that specific data never changes?  It&#8217;s a waste of time, processing, and bandwidth.  Unfortunately, at this point in the web, constant refreshes are the norm &#8212; but they don&#8217;t have to be.  Christoph Pojer, a MooTools Core Developer, has added History to his <del>PojerTools</del> PowerTools library.  History replaces traditional same-site URL loading by providing a method to catch link clicks, load page content via AJAX (Mootools&#8217; <code>Request.HTML</code> class), modify the document&#8217;s location object to keep &#8220;history&#8221; records, and re-evaluate content links to allow developers to create a fast, efficient one-page website.<span id="more-725"></span></p>
<div><a href="http://davidwalsh.name/dw-content/mootools-history.php">View Demo</a></p>
<div></div>
</div>
<p>The tradition method of dynamic history/&#8221;back button&#8221; management has always been hash-based JavaScript technology.  Newer technology, including <a href="https://developer.mozilla.org/en/DOM/Manipulating_the_browser_history" rel="nofollow">HTML5&#8242;s <code>window.onpopstate</code> and <code>history.pushState</code></a> methods, allow for more reliable methods for managing history.  MooTools&#8217; History plugin supports modern and legacy methods for history management.  Let me show you how to quickly implement the MooTools History plugin.</p>
<h2>HTML Structure</h2>
<p>The History plugin doesn&#8217;t require any HTML structure adjustments but at least one designated content should be identified; you can, of course, have as many content areas as you like, but you&#8217;ll most likely need multiple AJAX requests to retrieve their content, unless you use a <code>Request.JSON</code> request to retrieve content for multiple areas of the page. For this simple demo, we&#8217;ll define a header, footer, and menu, and content area:</p>
<pre>&lt;div id="body"&gt;

	&lt;!-- header --&gt;
	&lt;header&gt;
		&lt;a href="/" data-noxhr&gt;David Walsh Blog&lt;/a&gt;
		&lt;div&gt;MooTools History Plugin Demo&lt;/div&gt;
		&lt;div&gt;This is a simple example of the MooTools History plugin created by Christoph Pojer&lt;/div&gt;

	&lt;/header&gt;

	&lt;!-- menu --&gt;
	&lt;ul id="demoMenu"&gt;
		&lt;li&gt;&lt;a href="mootools-history.php"&gt;Home&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="mootools-history-david.php"&gt;About David Walsh&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="mootools-history-mootools.php"&gt;About MooTools&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="mootools-history-christoph"&gt;About Christoph Pojer&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;

	&lt;!-- content area --&gt;
	&lt;article id="contentHolder"&gt;

		&lt;!-- initial page content goes here --&gt;

	&lt;/article&gt;

	&lt;!-- footer --&gt;
	&lt;footer&gt;

	&lt;/footer&gt;
&lt;/div&gt;</pre>
<p>The content area is the only area which will have its content change. The page should load as usual</p>
<h2>The MooTools JavaScript</h2>
<p>Assuming that the <a href="https://github.com/cpojer/mootools-history" rel="nofollow">MooTools History plugin</a> has been included in the page, there are a few functions that should be created upon <code>domready</code>.  The first is a method which will perform the request for content when a link is clicked:</p>
<pre>// Content holder (all content placed within this element)
var contentHolder = document.id("contentHolder");

// Create a Request object which will be reused when links are clicked
var request = new Request.HTML({
	onSuccess: function(nodeTree,elements,html) {
		// Set the content into the content holder
		contentHolder.set("html",html);
		// Execute directions that should be executed whenever a page changes
		onPageUpdate();
	}
});

// Create a function that loads the page content
var loadPage = function(url) {
	// Make a HTML request to get the content for this page
	request.send({ url: url });
};</pre>
<p>The next step is creating a method <em>(which is theoretically option, but you&#8217;ll usually want to do something once content has loaded)</em> which will execute every time content is received:</p>
<pre>// Function that will execute whenever a page gets changed
var onPageUpdate = function() {

	// Do whatever you'd like here!  

	// Possibly manually record a Google Analytics page view?

};</pre>
<p>History doesn&#8217;t request that you do anything when content is received, but you&#8217;ll likely want to do something. Why manually <a href="http://davidwalsh.name/ajax-analytics">record a page view within Google Analytics</a>?</p>
<p>This next piece is important in turning links to static pages into AJAX-ified History triggers. Just one big <a href="http://mootools.net/docs/more/Element/Element.Delegation" rel="nofollow">Element.Delegation</a> event delegation call will do the work for not just the initial page load, but every History AJAX load after that:</p>
<pre>// The listener that manages all clicks
var listener = function(evt){
	evt.preventDefault(); // Prevent following the URL
	History.push(this.get('href')); // Push the new URL into History
};

// Add event delegation to add clicks.  Both of these work:
//document.body.addEvent("click:relay(a:not([href=#]):not([href^=http://]):not([data-noxhr]))",listener);
document.body.addEvent("click:relay(a:not([href=#],[href^=http://],[data-noxhr]))",listener);</pre>
<p>When any same-site, non-hashed link is clicked, the listener method stops the event and pushes the new URL into History, changing the address bar and managing back/forward button click.</p>
<p>A <code>back</code> function is also created so that we can provide a &#8220;back&#8221; link and a &#8220;forward&#8221; link to travel back and forward in page history, if we choose to use it:</p>
<pre>// Listener for the "Back" link
var back = function(evt){
	evt.preventDefault();
	History.back(); // Go back
};

// Listener for the "Forward" link
var forward = function(evt){
	evt.preventDefault();
	History.forward(); // Go back
};

// Add to links
document.id("backLink").addEvent("click",back);
document.id("forwardLink").addEvent("click",forward);</pre>
<p>The next step is adding a <code>change</code> event to History itself to run our <code>loadPage</code> function when the page URL changes:</p>
<pre>// When the history changes, update the content
History.addEvent('change',loadPage);</pre>
<p>If the client doesn&#8217;t support the <code>history.pushState</code> method, the History plugin evaluates the hash and loads the page as necessary:</p>
<pre>// Handle the initial load of the page if the browser does not support pushState, check if the hash is set
if(!History.hasPushState()) {
	// Check if there is a hash
	var hash = document.location.hash.substr(1);
	if (!hash) return;

	// If the hash equals the current page, don't do anything
	var path = document.location.pathname.split('/');
	path = path[path.length - 1];
	if (hash == path) return;

	// Load the page specified in the hash
	loadPage(hash);
}</pre>
<p>Lastly, running the <code>onPageUpdate</code> upon <code>domready</code> load doesn&#8217;t hurt since events are only added once within <code>onPageUpdate</code>:</p>
<pre>// Update the page
onPageUpdate();</pre>
<p>Now the page is ready to support History-based, AJAX-driven content swapping.  Thanks to the <code>onPageUpdate</code> function, links are added to events as they come in so that even AJAX-retrieved content can be managed with History.</p>
<h2>Tips and Strategies for Hash/History-Managed Websites</h2>
<p>Plugins like Christoph&#8217;s History masterpiece are very helpful in enriching the user experience but do require a bit of developer logic:</p>
<ul>
<li><strong>Use Event Delegation</strong> &#8211; Remember that with a History-style system, assigning events to elements directly may not be the best solution because those elements may be gone with the next link click. Using event delegation instead of traditional event assignments may save you a lot of trouble. Read my <a href="http://davidwalsh.name/event-delegation">MooTools Element.Delegation</a> post if you aren&#8217;t familiar with event delegation.</li>
<li><strong>Don&#8217;t Assume JavaScript Support</strong> &#8211; Keep in mind that the client may not support JavaScript.  Search engines have added JavaScript support but it&#8217;s important to use URLs that will work with both on a History-managed site and a JavaScript-less website.</li>
<li><strong>Use AJAX Detection </strong>- MooTools provides an AJAX-specific header within the Request class called <code>HTTP_X_REQUESTED_WITH</code>.  <a href="http://davidwalsh.name/detect-ajax">Click here</a> to learn how to use it to detect AJAX requests.  You will want to be able to detect AJAX so that those requests simply return the content and not the header and footer (etc.) with it. You could write a client-side script/regex to parse out the content but that&#8217;s largely inefficient. My demo uses PHP to store the page content in variables as follows:
<pre>// Load pages based on querystring
$qstring = $_SERVER['QUERY_STRING'];
if($qstring == 'home' || $qstring == '') {
	$content.= '&lt;h1&gt;Welcome Home!&lt;/h1&gt;';
	$content.= '&lt;p&gt;History Management via popstate or hashchange. Replaces the URL of the page without a reload and falls back to Hashchange on older browsers.&lt;/p&gt;&lt;p&gt;This demo page aims to teach you how you can use Christoph Pojer\'s outstanding History widget to load only the content you need, dynamically and reliably.&lt;/p&gt;';
}
elseif($qstring == 'about-david') {
	$content.= '&lt;h1&gt;About David Walsh&lt;/h1&gt;';
	$content.= '&lt;p&gt;My name is David Walsh. I\'m a 27 year old Web Developer from Madison, Wisconsin. In the web world, I am:&lt;/p&gt;
	&lt;ul&gt;
	&lt;li&gt;Founder and Lead Developer for Wynq Web Labs.&lt;/li&gt;
	&lt;li&gt;Software Engineer for SitePen.&lt;/li&gt;
	&lt;li&gt;Core Developer for the MooTools JavaScript framework.&lt;/li&gt;
	&lt;li&gt;Co-Founder of Script &amp; Style, a website aimed at making web developers and designers better.&lt;/li&gt;
	&lt;/ul&gt;
	&lt;p&gt;I don\'t design the websites - I make them work.&lt;/p&gt;
	&lt;p&gt;I am also an admirer of the great &lt;a href="?about-christoph"&gt;Christoph Pojer!&lt;/a&gt;.&lt;/p&gt;';
}
// and more....
// Page not found
else {
	$content.= '&lt;h1&gt;Page Not Found&lt;/h1&gt;';
	$content.= '&lt;p&gt;The page you were attempting to find could not be found.&lt;/p&gt;';
}

// If request was via AJAX, push it out.
if(!empty($_SERVER['HTTP_X_REQUESTED_WITH']) &amp;&amp; strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
	echo $content;
	exit();
}</pre>
<p>Obviously your content management system would be pulling content from a database or other static files, but you get the point &#8212; load content before any page output, sniff for AJAX, and push content out accordingly. If it&#8217;s not an AJAX request, push that content into the content area&#8217;s HTML via traditional methods.</li>
</ul>
<p>These tips should set you up well to use a History-based system.  Remember that JavaScript is meant to enhance &#8212; keep in mind that your user (or search engine bot) may not support JavaScript, so be sure to test your website thoroughly!</p>
<p><em>Give the example hell.  Click from page to page, use the back button, refresh the page, etc.  History is rock solid!</em></p>
<div><a href="http://davidwalsh.name/dw-content/mootools-history.php">View Demo</a></p>
<div></div>
</div>
<p>Thanks to Christoph Pojer for his outstanding MooTools History plugin.  Many History-style plugins have existed but the browsers haven&#8217;t been as feature-rich as they are now.  If you have any suggestions, tips, or experiences to share about creating hash-based websites, please share them.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qeqnes.wordpress.com/725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qeqnes.wordpress.com/725/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qeqnes.wordpress.com/725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qeqnes.wordpress.com/725/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/qeqnes.wordpress.com/725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/qeqnes.wordpress.com/725/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/qeqnes.wordpress.com/725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/qeqnes.wordpress.com/725/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qeqnes.wordpress.com/725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qeqnes.wordpress.com/725/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qeqnes.wordpress.com/725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qeqnes.wordpress.com/725/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qeqnes.wordpress.com/725/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qeqnes.wordpress.com/725/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=725&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://qeqnes.wordpress.com/2011/05/06/mootools-history-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec8823c54b0918bd8d7cef3014fbf74?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qeqnes</media:title>
		</media:content>
	</item>
		<item>
		<title>Font sizing with rem</title>
		<link>http://qeqnes.wordpress.com/2011/05/06/font-sizing-with-rem/</link>
		<comments>http://qeqnes.wordpress.com/2011/05/06/font-sizing-with-rem/#comments</comments>
		<pubDate>Fri, 06 May 2011 21:15:23 +0000</pubDate>
		<dc:creator>qeqnes</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[Font]]></category>

		<guid isPermaLink="false">http://qeqnes.wordpress.com/?p=723</guid>
		<description><![CDATA[Determining a unit of measurement to size our text can be a topic of heated debate, even in this day and age. Unfortunately, there are still various pros and cons that make the various techniques less desirable. It&#8217;s just a matter of which less-desirable is most desirable. There are two main techniques that are extolled: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=723&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<h1><span class="Apple-style-span" style="font-weight:normal;font-size:13px;">Determining a unit of measurement to size our text can be a topic of heated debate, even in this day and age. Unfortunately, there are still various pros and cons that make the various techniques less desirable. It&#8217;s just a matter of which less-desirable is most desirable.<span id="more-723"></span></span></h1>
<p>There are two main techniques that are extolled:</p>
<ol>
<li>Size with px</li>
<li>Size with em</li>
</ol>
<p>Let&#8217;s review these two approaches before I reveal the magical third.</p>
<h2>Sizing with px</h2>
<p>In the early days of the web, we used pixels to size our text. It&#8217;s reliable and consistent. Unfortunately, users of Internet Explorer—even in IE9—do not have the ability to change the size of the text using the browser function of increasing or decreasing font size. For those concerned about the usability of their site, this may be a big deal. Recent versions of IE include zooming, which increases the size of <em>everything</em> on the page—a feature that is also available in most other mainstream browsers, too. This has helped mitigate the issue to a degree.</p>
<p>I, personally, have been of the camp that px-based layouts provide the consistency I prefer and users have enough tools available to adjust their view that accessibility is less of a concern. But I digress. What else can we do?</p>
<h2>Sizing with em</h2>
<p>That whole inability to resize text in IE has been a continuing frustration. To get around that, we can use em units. Richard Rutter&#8217;s article, <a href="http://clagnut.com/blog/348/"><em>How to size text using ems</em></a>, was probably the first I read of this approach, way back in 2004. (Wow, it has been almost seven years.)</p>
<p>The technique modifies the base font-size on the body using a percentage. This adjusts things so that 1em equals 10px, instead of the default 16px. To set the font-size to the equivalent of 14px, set it to 1.4em.</p>
<pre><code>body { font-size:62.5%; } h1 { font-size: 2.4em; } /* =24px */ p { font-size: 1.4em; } /* =14px */ li { font-size: 1.4em; } /* =14px? */ </code></pre>
<p>The problem with em-based font sizing is that the font size compounds. A list within a list isn&#8217;t 14px, it&#8217;s 20px. Go another level deeper and it&#8217;s 27px! These issues can be worked around by declaring any child elements to use 1em, avoiding the compounding effect.</p>
<pre><code>body { font-size:62.5%; } h1 { font-size: 2.4em; } /* =24px */ p { font-size: 1.4em; } /* =14px */ li { font-size: 1.4em; } /* =14px? */ li li, li p /* etc */ { font-size: 1em; } </code></pre>
<p>The compounding nature of em-based font-sizing can be frustrating so what else can we do?</p>
<h2>Sizing with rem</h2>
<p>CSS3 introduces a few new units, including the rem unit, which stands for &#8220;root em&#8221;. If this hasn&#8217;t put you to sleep yet, then let&#8217;s look at how rem works.</p>
<p>The em unit is relative to the font-size of the parent, which causes the compounding issue. The rem unit is relative to the root—or the <code>html</code>—element. That means that we can define a single font size on the <code>html</code> element and define all rem units to be a percentage of that.</p>
<pre><code>html { font-size: 62.5%; } body { font-size: 1.4rem; } /* =14px */ h1 { font-size: 2.4rem; } /* =24px */ </code></pre>
<p>I&#8217;m defining a base font-size of 62.5% to have the convenience of sizing rems in a way that is similar to using px.</p>
<p>But what pitiful browser support do we have to worry about?</p>
<p>You might be surprised to find that browser support is surprisingly decent: Safari 5, Chrome, Firefox 3.6+, and even Internet Explorer 9 have support for this. The nice part is that IE9 supports resizing text when defined using rems. (Alas, poor Opera (up to 11.10, at least) hasn&#8217;t implemented rem units yet.)</p>
<p>What do we do for browsers that don&#8217;t support rem units? We can specify the fall-back using px, if you don&#8217;t mind users of older versions of Internet Explorer still being unable to resize the text (well, there&#8217;s still page zoom in IE7 and IE8). To do so, we specify the font-size using px units first and then define it again using rem units.</p>
<pre><code>html { font-size: 62.5%; } body { font-size: 14px; font-size: 1.4rem; } /* =14px */ h1 { font-size: 24px; font-size: 2.4rem; } /* =24px */ </code></pre>
<p>And voila, we now have consistent and predictable sizing in all browsers, and resizable text in the current versions of all major browsers.</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qeqnes.wordpress.com/723/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qeqnes.wordpress.com/723/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qeqnes.wordpress.com/723/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qeqnes.wordpress.com/723/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/qeqnes.wordpress.com/723/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/qeqnes.wordpress.com/723/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/qeqnes.wordpress.com/723/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/qeqnes.wordpress.com/723/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qeqnes.wordpress.com/723/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qeqnes.wordpress.com/723/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qeqnes.wordpress.com/723/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qeqnes.wordpress.com/723/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qeqnes.wordpress.com/723/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qeqnes.wordpress.com/723/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=723&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://qeqnes.wordpress.com/2011/05/06/font-sizing-with-rem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec8823c54b0918bd8d7cef3014fbf74?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qeqnes</media:title>
		</media:content>
	</item>
		<item>
		<title>Powerful New CSS Techniques and Tools</title>
		<link>http://qeqnes.wordpress.com/2011/04/27/powerful-new-css-techniques-and-tools/</link>
		<comments>http://qeqnes.wordpress.com/2011/04/27/powerful-new-css-techniques-and-tools/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 19:33:58 +0000</pubDate>
		<dc:creator>qeqnes</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://qeqnes.wordpress.com/?p=717</guid>
		<description><![CDATA[The hard work of front-end designers never ceases to amaze us. Over the last months, we’ve seen Web designers creating and presenting a plethora of truly remarkable CSS techniques and tools. We have collected, analyzed, curated and feature latest useful resources for your convenience, so you can use them right away or save them for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=717&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The hard work of front-end designers never ceases to amaze us. Over the last months, we’ve seen Web designers creating and presenting a plethora of truly remarkable CSS techniques and tools. We have collected, analyzed, curated and feature latest useful resources for your convenience, so you can use them right away or save them for future reference.</p>
<p>Please don’t hesitate to comment on this post and let us know how exactly you are using them in your workflow. However, please avoid link dropping, but share your insights and your experience instead. Also, notice that some techniques are not only CSS-based, but use HTML5, JavaScript, or JavaScript-libraries as well. Thanks to all featured designers and developers for inspiring, hard work.<span id="more-717"></span></p>
<h3>CSS Techniques</h3>
<p><a href="http://meyerweb.com/eric/css/tests/css3-trans-an/transform-sliders.html">Rotational Sliders</a><br />
Eric Meyer shares six of his animated transforms that are capable of sliding around to a particular extent with non-centered transform origins.</p>
<p><a href="http://meyerweb.com/eric/css/tests/css3-trans-an/transform-sliders.html"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-102.jpg" alt="Css-techniques-april-102 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://designfestival.com/the-cicada-principle-and-why-it-matters-to-web-designers/">Generating Organic Randomness with Prime Numbers and CSS</a><br />
At first, you may be wondering why the heck is Alex Walker talking about cicada’s and Web design. Once taking a closer look, a sort of connection between the two evolves and a ‘cicada principle’ is born.</p>
<p><a href="http://designfestival.com/the-cicada-principle-and-why-it-matters-to-web-designers/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-101.jpg" alt="New-css-101 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://hakim.se/experiments/css3-hologram">CSS3 3D Hologram</a><br />
Being inspired by holographic effects that can be achieved with HTML/CSS, Hakim El Hattab has developed his own 3D box which alters perspective depending on device orientation. Note that this requires a webkit browser and has only been tested on iPhone. Also make sure to visit more of <a href="http://hakim.se/experiments">Hakim’s CSS/HTML5 experiments</a>.</p>
<p><a href="http://hakim.se/experiments/css3-hologram"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-102.jpg" alt="New-css-102 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://leaverou.me/2010/12/checkered-stripes-other-background-patterns-with-css3-gradients/">Checkerboard, striped &amp; other background patterns with CSS3 gradients</a><br />
You’re probably familiar with CSS3 gradients by now, including the closer to the standard Mozilla syntax and the verbose Webkit one. I assume you know how to add multiple color stops, make your gradients angled or create radial gradients. What you might not be aware of, is that CSS3 gradients can be used to create many kinds of commonly needed patterns, including checkered patterns, stripes and more. Also, check out Lea’s <a href="http://leaverou.me/css3patterns/">CSS3 Patterns Gallery</a></p>
<p><a href="http://leaverou.me/2010/12/checkered-stripes-other-background-patterns-with-css3-gradients/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css3-pattern.gif" alt="Css3-pattern in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://dl.dropbox.com/u/921159/Keyboard/page.html#">CSS3 Keyboard</a><br />
Click in the box and start typing on your computer’s keyboard. Cleverly developed by Dustin Cartwright and Dustin Hoffman. You’ve got to respect the amount of time and effort which went into producing this demo.</p>
<p><a href="http://dl.dropbox.com/u/921159/Keyboard/page.html#"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-133.jpg" alt="Css-techniques-april-133 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://css-tricks.com/css3-progress-bars/">CSS3 Progress Bars</a><br />
A couple of nice progress bars created by Chris Coyier that use no images — just CSS3 fancies. In browsers that do not support CSS3, these progress bars will look more simplified.</p>
<p><a href="http://css-tricks.com/css3-progress-bars/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-102.jpg" alt="Cssn-102 in Powerful New CSS Techniques and Tools" width="500" height="233" /></a></p>
<p><a href="http://css-tricks.com/hover-on-everything-but/">Hover on “Everything But”</a><br />
A tutorial by Chris Coyier which shows us how easy adding a hover state to an element can be. In this case, the hover state is applied to <em>everything </em>but the element actually being hovered over.</p>
<p><a href="http://css-tricks.com/hover-on-everything-but/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-103.jpg" alt="Cssn-103 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.paulrhayes.com/2011-02/creating-a-sphere-with-3d-css/">Creating a Sphere With 3D CSS</a><br />
With CSS3’s 3D trans­forms it’s possible to cre­ate a sphere-like object, albeit with many elements. Paul Hayes shares his version of a 3D CSS sphere (works in the latest Safari and iOS) and provides us with the coding needed.</p>
<p><a href="http://www.paulrhayes.com/2011-02/creating-a-sphere-with-3d-css/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-104.jpg" alt="Cssn-104 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://hacks.mozilla.org/2011/03/css3-planetarium/">CSS3 Planetarium</a><br />
This demo highlights leading edge CSS3 and HTML5 features that Mozilla Firefox and the open web community push into modern Web browsers.</p>
<p><a href="http://hacks.mozilla.org/2011/03/css3-planetarium/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-105.jpg" alt="Cssn-105 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.eleqtriq.com/2010/11/natural-object-rotation-with-css3-3d/">Natural Object-Rotation with CSS3 3D</a><br />
A tutorial by Dirk Weber that teaches us how to build a 3D packshot in HTML and CSS by applying some CSS 3D-transforms. By adding some Javascript, we can make the object freely rotatable in 3D space. And as we will enhance our Javascript with some touch-interactivity, the packshot will also work nicely in Safari for iOS-platforms like iPhone or iPad.</p>
<p><a href="http://www.eleqtriq.com/2010/11/natural-object-rotation-with-css3-3d/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-106.jpg" alt="Cssn-106 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://nicolasgallagher.com/css-drop-shadows-without-images/demo/">CSS Drop-Shadows Without Images</a><br />
Nicolas Gallagher shares presents his CSS drop-shadows without any images.</p>
<p><a href="http://nicolasgallagher.com/css-drop-shadows-without-images/demo/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-129.jpg" alt="Cssn-129 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://leaverou.me/2011/02/incrementable-length-values-in-text-fields/">Incrementable Length Values in Text Fields</a><br />
Lea Verou explains how to implement a feature that allows you to increment or decrement a &lt;length&gt; value by pressing the up and down keyboard arrows when the caret is over it.</p>
<p><a href="http://leaverou.me/2011/02/incrementable-length-values-in-text-fields/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-108.jpg" alt="Cssn-108 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://leaverou.me/2011/03/beveled-corners-negative-border-radius-with-css3-gradients/">Beveled Corners &amp; Negative Border-Radius with CSS3 Gradients</a><br />
Beveled corners and simulate negative border radius without images, by utilizing CSS3 gradients once again — Lea Verou is amazed by how many CSS problems can be solved with gradients alone. Works on Firefox 3.6+, latest Webkit Nightly builds, Chrome and Opera 11.10.</p>
<p><a href="http://leaverou.me/2011/03/beveled-corners-negative-border-radius-with-css3-gradients/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-109.jpg" alt="Cssn-109 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.456bereastreet.com/archive/201103/flexible_height_vertical_centering_with_css_beyond_ie7/">Flexible Height Vertical Centering With CSS, Beyond IE7</a><br />
Roger Johansson shares his thoughts on how to improve centering an element both horizontally and vertically with the <code>display:table</code> alternative.</p>
<p><a href="http://www.456bereastreet.com/archive/201103/flexible_height_vertical_centering_with_css_beyond_ie7/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/flex.gif" alt="Flex in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://csswizardry.com/2011/03/coding-up-a-semantic-lean-timeline/">Coding up a semantic, lean timeline</a><br />
This article tells you how to create a semantic lean timeline.</p>
<p><a href="http://csswizardry.com/2011/03/coding-up-a-semantic-lean-timeline/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/timeline.gif" alt="Timeline in Powerful New CSS Techniques and Tools" width="498" height="298" /></a></p>
<p><a href="http://www.yuiblog.com/blog/2011/03/08/css-border-tricks-with-collapsed-boxes">CSS Border Tricks with Collapsed Boxes</a><br />
These border tricks tricks will help you to display content outside of the content box, over borders, without the use of images, CSS3 gradients or extraneous markup.</p>
<p><a href="http://www.yuiblog.com/blog/2011/03/08/css-border-tricks-with-collapsed-boxes"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-1401.jpg" alt="Css-techniques-april-1401 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-nonintrusive-css-text-gradients/">Quick Tip: Nonintrusive CSS Text Gradients</a><br />
Jeffrey Way shows some ways for creating pure CSS text-gradients with a bit of trickery. The key is to use a mix of attribute selectors, webkit-specific properties, and custom HTML attributes.</p>
<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-nonintrusive-css-text-gradients/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-113.jpg" alt="Cssn-113 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://nimbupani.com/bokeh-with-css3-gradients.html">Bokeh with CSS3 Gradients</a><br />
Divya Manian uses the CSS gradients and shows the results of his work on a project which uses a bunch of circles as a decorative background.</p>
<p><a href="http://nimbupani.com/bokeh-with-css3-gradients.html"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-114.jpg" alt="Cssn-114 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://css-tricks.com/different-transitions-for-hover-on-hover-off/">Different Transitions for Hover On / Hover Off</a><br />
Chris Coyier tries to acchieve “different transitions on mouseenter and mouseleave”, but he isn’t using JavaScript here; we’re talking about CSS :hover state and CSS3 transitions. Hover on, some CSS property animates itself to a new value; hover off, a different CSS property animates.</p>
<p><a href="http://css-tricks.com/different-transitions-for-hover-on-hover-off/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-115.jpg" alt="Cssn-115 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://leaverou.me/2011/01/styling-children-based-on-their-number-with-css3/">Styling children based on their number, with CSS3</a><br />
Lea Verou shows how to style children of elements based on their total number (that is, their total count).</p>
<p><a href="http://leaverou.me/2011/01/styling-children-based-on-their-number-with-css3/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/children.jpg" alt="Children in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.paulrhayes.com/2011-03/css-modal/">CSS Modal</a><br />
Using CSS3 tech­niques a modal box can be cre­ated with­out JavaScript or images. With a bit of ani­ma­tion, tran­si­tion and trans­form, it can be made that lit­tle bit more special. The problem: when you hit the “Back”-button after the modal has popped up and was closed, you’ll see the modal again. But maybe you’ll come with a way to fix it?</p>
<p><a href="http://www.paulrhayes.com/2011-03/css-modal/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-116.jpg" alt="Cssn-116 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://css-tricks.com/rotating-feature-boxes/">Rotating Feature Boxes</a><br />
The full effect of it (with transition animations) will work in newish WebKit and Opera browsers and Firefox 4 (in real beta as of today). Any other browser will rotate the blocks without transition animation.</p>
<p><a href="http://css-tricks.com/rotating-feature-boxes/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-125.jpg" alt="New-css-125 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://designfestival.com/when-and-how-to-visually-hide-content/">When and How to Visually Hide Content</a><br />
Visually hiding content on a web page, usually textual content, is at times a viable technique in web design and development. It can be done for several reasons, most importantly, to improve the experience of a screen reader user. Other reasons include improving readability when CSS cannot be rendered, and improving search engine optimization (SEO). Other exaples about using the Visually Hide Content are shown in this article.</p>
<p><a href="http://designfestival.com/when-and-how-to-visually-hide-content/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/clip1.gif" alt="Clip1 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.netmagazine.com/features/how-avoid-common-css3-mistakes">How to avoid common CSS3 mistakes</a><br />
The new features of CSS3 bring with them complexity and new things for us to screw up. This article will help keep us in check as we start using these new features.</p>
<p><a href="http://www.netmagazine.com/features/how-avoid-common-css3-mistakes"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-133.jpg" alt="New-css-133 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.merttol.com/articles/web/code/introduction-to-css-escape-sequences.html">Introduction to CSS Escape Sequences</a><br />
Escape sequences are useful because they allow style sheet authors to represent characters that would normally be ignored or interpreted differently by traditional CSS parsing rules. In this article Mert Tol shows how to use these sequences.</p>
<p><a href="http://www.merttol.com/articles/web/code/introduction-to-css-escape-sequences.html"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-134.jpg" alt="New-css-134 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://perishablepress.com/press/2010/06/01/wrapping-content/">Wrapping Long URLs and Text Content with CSS</a><br />
To wrap long URLs, strings of text, and other content, you can just apply a carefully crafted chunk of CSS code to any block-level element .</p>
<p><a href="http://perishablepress.com/press/2010/06/01/wrapping-content/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn.gif" alt="Cssn in Powerful New CSS Techniques and Tools" width="477" height="245" /></a></p>
<p><a href="http://www.viget.com/inspire/css-generated-content/">CSS Generated Content</a><br />
Trevor Davis shows on some examples what you can do with the CSS generated content.</p>
<p><a href="http://www.viget.com/inspire/css-generated-content/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-135.jpg" alt="New-css-135 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.456bereastreet.com/archive/201104/controlling_width_with_css3_box-sizing/">Controlling width with CSS3 box-sizing</a><br />
An incredibly useful CSS3 feature when you’re creating columns with floats is <code>box-sizing</code>. It lets you choose which box sizing model to use – whether or not an element’s width and height include padding and border or not. It makes it much easier to define flexible widths where you also need padding and/or borders. A typical example is laying out forms, which can be a real pain when you want flexible widths.</p>
<p><a href="http://www.456bereastreet.com/archive/201104/controlling_width_with_css3_box-sizing/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-137.jpg" alt="New-css-137 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.blog.highub.com/mobile-2/revisit-hardboiled-css3-media-queries/">Revisit Hardboiled CSS3 Media Queries</a><br />
Shi Chuan takes a close look at boilerplates and helps us understand the math we need to tweak the width required for a good resolution to any particular device.</p>
<p><a href="http://catharsis.tumblr.com/post/501657271/ipad-orientation-css-revised">iPad Orientation CSS</a><br />
Keith Chu revises Cloud Four’s work and finds a way to alleviate extra HTTP requests, not iPad-specific as well as lack of reusability. In this post, he shares with us his proposed revision to the iPad orientation CSS.</p>
<p><a href="http://www.standardista.com/css3/css-values-lengths-times-frequenc-angles">CSS Value Lengths, Times, Frequencies and Angles</a><br />
In this article the authors go over all the math type units that can be applied as property values in CSS.</p>
<h3>CSS Tools</h3>
<p><a href="http://stuffandnonsense.co.uk/projects/320andup/">320 and up</a><br />
‘320 and Up’ prevents mobile devices from downloading desktop assets by using a tiny screen’s stylesheet as its starting point. Try this page at different window sizes and on different devices to see it in action.</p>
<p><a href="http://stuffandnonsense.co.uk/projects/320andup/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-112.jpg" alt="New-css-112 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.css3.me/">CSS3 Generator – By Eric Hoffman and Peter Funk</a><br />
This generator was proudly designed by Eric Hoffman and coded by Peter Funk.</p>
<p><a href="http://www.css3.me/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-113.jpg" alt="New-css-113 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.patternify.com/">CSS Pattern Generator</a><br />
Patternify is a simple pattern generator that enables you to not only build your patterns online, but export them with the base64 code, so you don’t even need an image file anymore. Just include the code in your CSS and you’re ready to go. Created by Sacha Greif.</p>
<p><a href="http://www.patternify.com/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-105.jpg" alt="Css-techniques-april-105 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://griddle.it/">Griddle.it – Web page alignment made easy</a><br />
A clean and simple way to help align your layouts. No complex grid frameworks necessary.Just put your dimensions after our URL to get a background guide image to work with in your browser. Grids are created on the fly, so any combination should work.</p>
<p><a href="http://griddle.it/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-116.jpg" alt="New-css-116 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://cssgrid.net/">The 1140px Grid: Fluid down to mobile</a><br />
The 1140 grid fits perfectly into a 1280 monitor. On smaller monitors it becomes fluid and adapts to the width of the browser.</p>
<p><a href="http://cssgrid.net/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-117.jpg" alt="New-css-117 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://paulirish.com/2009/fighting-the-font-face-fout/#update2011">Fighting the @font-face FOUT</a><br />
Paul Irish’s 2011 update for the @font-face FOUT issue. Good news: Firefox 4 has no FOUT, IE9 does, and <a href="http://www.extensis.com/en/WebINK/fout-b-gone/">FOUT-b-GONE</a> will help you out with that.</p>
<p><a href="http://www.extensis.com/en/WebINK/fout-b-gone/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/foutbgone.gif" alt="Foutbgone in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://css3buttons.michaelhenriksen.dk/">CSS3 Github Buttons</a><br />
CSS3 Buttons is a simple framework for creating good-looking GitHub style button links.</p>
<p><a href="http://css3buttons.michaelhenriksen.dk/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-118.jpg" alt="New-css-118 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://nicolasgallagher.com/lab/css3-facebook-buttons/">CSS3 Facebook Buttons</a><br />
CSS3 Facebook Buttons</p>
<p><a href="http://nicolasgallagher.com/lab/css3-facebook-buttons/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/fb-button.gif" alt="Fb-button in Powerful New CSS Techniques and Tools" width="500" height="246" /></a></p>
<p><a href="http://johndwells.com/software/minimee">Minimee</a><br />
On the Internets, speed is everything – which means that when it comes to CSS &amp; Javascript files, size DOES matter. By automatically minimizing and combining your files for you, Minimee takes the heavy lifting out of keeping your files svelte.</p>
<p><a href="http://johndwells.com/software/minimee"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-175.jpg" alt="Css-techniques-april-175 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://livejs.com/">Live.js</a><br />
one script closer to designing in the browser.</p>
<p><a href="http://livejs.com/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-178.jpg" alt="Css-techniques-april-178 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://markdotto.com/bootstrap/">Bootstrap.less</a><br />
Bootstrap is a pack of mixins and variables to be used in conjunction with LESS, a CSS preprocessor for faster and easier web development.</p>
<p><a href="http://markdotto.com/bootstrap/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-120.jpg" alt="Cssn-120 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://animatable.com/">Animatable: Create CSS3 animations and advertising for Webkit browsers</a><br />
Animatable is the easy way to create CSS3 animations and advertising for Webkit browsers on any platform or device — including Android, BlackBerry, iOS and WebOS.</p>
<p><a href="http://animatable.com/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-122.jpg" alt="New-css-122 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://matthewlein.com/ceaser/">Ceaser: CSS Easing Animation Tool</a><br />
Ceaser is an CSS Easing Animation Tool.</p>
<p><a href="http://matthewlein.com/ceaser/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-130.jpg" alt="Css-techniques-april-130 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://pepelsbey.github.com/shower/#Cover">Shower</a><br />
This is provided without warranty, guarantee, or much in the way of explanation.</p>
<p><a href="http://pepelsbey.github.com/shower/#Cover"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-119.jpg" alt="New-css-119 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.csspivot.com/">CSS Pivot</a><br />
This tool allows you to add CSS styles to any website, and share (and adjust) the result with a short link.</p>
<p><a href="http://www.csspivot.com/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-121.jpg" alt="Cssn-121 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.rootstheme.com/">Roots WordPress Theme</a><br />
Roots is a starting WordPress theme made for developers that’s based on HTML5 Boilerplate, Blueprint CSS (or 960.gs) and Starkers that will help you rapidly create brochure sites and blogs.</p>
<p><a href="http://www.rootstheme.com/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/roots1.gif" alt="Roots1 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://www.sciweavers.org/i2style">Free Online CSS3 Typeset Style Generator</a><br />
An advanced generator of CSS buttons; the tools allows you to define font and color variations, shadows, borders, corners etc.</p>
<p><a href="http://www.sciweavers.org/i2style"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-122.jpg" alt="Cssn-122 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://cssprefixer.appspot.com/">CSSPrefixer</a><br />
You hate writing vendor prefixes for all browsers? The CSSPrefixer does it for you.</p>
<p><a href="http://cssprefixer.appspot.com/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssprefixer.gif" alt="Cssprefixer in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://type-a-file.com/">Type-a-file</a><br />
This tool will give your Web typography a head start. Type-a-file is essentially a small collection of CSS stylesheets with heavy focus on rich and beautiful typography. The tool uses Typekit to preview the stylesheets, so if you have a Typekit-account, you could purchase the font license and have exact the same typography on your website.</p>
<p><a href="http://type-a-file.com/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-124.jpg" alt="Cssn-124 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://html5boilerplate.com/mobile/">A Best Practice Baseline for Your Mobile Web App</a><br />
Mobile Boilerplate is your trusted template made custom for creating rich and performant mobile web apps. You get cross-browser consistency among A-grade smartphones, and fallback support for legacy Blackberry, Symbian, and IE Mobile.</p>
<p><a href="http://html5boilerplate.com/mobile/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-125.jpg" alt="Cssn-125 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://codebeautifier.com/">Code Beautifier</a><br />
This tool allows you to format, clean up and optimize your stylesheets.</p>
<p><a href="http://codebeautifier.com/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/optimize.gif" alt="Optimize in Powerful New CSS Techniques and Tools" width="466" height="412" /></a></p>
<p><a href="http://lab.xms.pl/markup-generator/">Markup Generator</a><br />
Markup Generator is a simple tool created for HTML/CSS coders that are tired of writing boring frame code at the very beginning of slicing work.</p>
<p><a href="http://lab.xms.pl/markup-generator/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-180.jpg" alt="Css-techniques-april-180 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="http://spritegen.website-performance.org/">CSS Sprite Generator</a><br />
This tool allows you to create and maintain your CSS sprites.</p>
<p><a href="http://spritegen.website-performance.org/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-181.jpg" alt="Css-techniques-april-181 in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<p><a href="https://github.com/scottjehl/Respond">Respond</a><br />
A fast &amp; lightweight polyfill for min/max-width CSS3 Media Queries (for IE 6-8, and more)</p>
<p><a href="http://adapt.960.gs/">Adapt.js – Adaptive CSS</a><br />
Adapt.js simply checks the browser width, and serves only the CSS that is needed, when it is needed.</p>
<p><a href="http://extralogical.net/projects/firmin/">Firmin, a JavaScript animation library using CSS transforms and transitions</a><br />
Firmin is a JavaScript animation library that uses CSS transforms and transitions to create smooth, hardware-accelerated animations.</p>
<p><a href="http://www.phpied.com/command-line-css-spriting/">Command-line CSS spriting</a><br />
The author shows, how to create CSS sprites from the command line alone.</p>
<h3>Last Click</h3>
<p><a href="http://na.isobar.com/standards/">Code Standards</a><br />
This document contains normative guidelines for web applications built by the Interface Development practice of Isobar North America (previously Molecular). It is to be readily available to anyone who wishes to check the iterative progress of our best practices.</p>
<p><a href="http://na.isobar.com/standards/"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/standards.jpg" alt="Standards in Powerful New CSS Techniques and Tools" width="500" height="310" /></a></p>
<p><a href="http://stackoverflow.com/questions/2253110/how-to-manage-css-explosion">How to Manage CSS Explosion</a><br />
A very useful thread on StackOverflow on how to keep CSS files organized and clean.</p>
<p><a href="http://stackoverflow.com/questions/2253110/how-to-manage-css-explosion"><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/organiz.jpg" alt="Organiz in Powerful New CSS Techniques and Tools" width="500" height="300" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qeqnes.wordpress.com/717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qeqnes.wordpress.com/717/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qeqnes.wordpress.com/717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qeqnes.wordpress.com/717/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/qeqnes.wordpress.com/717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/qeqnes.wordpress.com/717/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/qeqnes.wordpress.com/717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/qeqnes.wordpress.com/717/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qeqnes.wordpress.com/717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qeqnes.wordpress.com/717/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qeqnes.wordpress.com/717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qeqnes.wordpress.com/717/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qeqnes.wordpress.com/717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qeqnes.wordpress.com/717/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=717&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://qeqnes.wordpress.com/2011/04/27/powerful-new-css-techniques-and-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec8823c54b0918bd8d7cef3014fbf74?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qeqnes</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-102.jpg" medium="image">
			<media:title type="html">Css-techniques-april-102 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-101.jpg" medium="image">
			<media:title type="html">New-css-101 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-102.jpg" medium="image">
			<media:title type="html">New-css-102 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css3-pattern.gif" medium="image">
			<media:title type="html">Css3-pattern in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-133.jpg" medium="image">
			<media:title type="html">Css-techniques-april-133 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-102.jpg" medium="image">
			<media:title type="html">Cssn-102 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-103.jpg" medium="image">
			<media:title type="html">Cssn-103 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-104.jpg" medium="image">
			<media:title type="html">Cssn-104 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-105.jpg" medium="image">
			<media:title type="html">Cssn-105 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-106.jpg" medium="image">
			<media:title type="html">Cssn-106 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-129.jpg" medium="image">
			<media:title type="html">Cssn-129 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-108.jpg" medium="image">
			<media:title type="html">Cssn-108 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-109.jpg" medium="image">
			<media:title type="html">Cssn-109 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/flex.gif" medium="image">
			<media:title type="html">Flex in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/timeline.gif" medium="image">
			<media:title type="html">Timeline in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-1401.jpg" medium="image">
			<media:title type="html">Css-techniques-april-1401 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-113.jpg" medium="image">
			<media:title type="html">Cssn-113 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-114.jpg" medium="image">
			<media:title type="html">Cssn-114 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-115.jpg" medium="image">
			<media:title type="html">Cssn-115 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/children.jpg" medium="image">
			<media:title type="html">Children in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-116.jpg" medium="image">
			<media:title type="html">Cssn-116 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-125.jpg" medium="image">
			<media:title type="html">New-css-125 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/clip1.gif" medium="image">
			<media:title type="html">Clip1 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-133.jpg" medium="image">
			<media:title type="html">New-css-133 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-134.jpg" medium="image">
			<media:title type="html">New-css-134 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn.gif" medium="image">
			<media:title type="html">Cssn in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-135.jpg" medium="image">
			<media:title type="html">New-css-135 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-137.jpg" medium="image">
			<media:title type="html">New-css-137 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-112.jpg" medium="image">
			<media:title type="html">New-css-112 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-113.jpg" medium="image">
			<media:title type="html">New-css-113 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-105.jpg" medium="image">
			<media:title type="html">Css-techniques-april-105 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-116.jpg" medium="image">
			<media:title type="html">New-css-116 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-117.jpg" medium="image">
			<media:title type="html">New-css-117 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/foutbgone.gif" medium="image">
			<media:title type="html">Foutbgone in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-118.jpg" medium="image">
			<media:title type="html">New-css-118 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/fb-button.gif" medium="image">
			<media:title type="html">Fb-button in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-175.jpg" medium="image">
			<media:title type="html">Css-techniques-april-175 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-178.jpg" medium="image">
			<media:title type="html">Css-techniques-april-178 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-120.jpg" medium="image">
			<media:title type="html">Cssn-120 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-122.jpg" medium="image">
			<media:title type="html">New-css-122 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-130.jpg" medium="image">
			<media:title type="html">Css-techniques-april-130 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/new-css-119.jpg" medium="image">
			<media:title type="html">New-css-119 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-121.jpg" medium="image">
			<media:title type="html">Cssn-121 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/roots1.gif" medium="image">
			<media:title type="html">Roots1 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-122.jpg" medium="image">
			<media:title type="html">Cssn-122 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssprefixer.gif" medium="image">
			<media:title type="html">Cssprefixer in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-124.jpg" medium="image">
			<media:title type="html">Cssn-124 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/cssn-125.jpg" medium="image">
			<media:title type="html">Cssn-125 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/optimize.gif" medium="image">
			<media:title type="html">Optimize in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-180.jpg" medium="image">
			<media:title type="html">Css-techniques-april-180 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/css-techniques-april-181.jpg" medium="image">
			<media:title type="html">Css-techniques-april-181 in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/standards.jpg" medium="image">
			<media:title type="html">Standards in Powerful New CSS Techniques and Tools</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2011/04/organiz.jpg" medium="image">
			<media:title type="html">Organiz in Powerful New CSS Techniques and Tools</media:title>
		</media:content>
	</item>
		<item>
		<title>9 jQuery Scripts to Enhance Your Website</title>
		<link>http://qeqnes.wordpress.com/2011/04/27/9-jquery-scripts-to-enhance-your-website/</link>
		<comments>http://qeqnes.wordpress.com/2011/04/27/9-jquery-scripts-to-enhance-your-website/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 19:31:49 +0000</pubDate>
		<dc:creator>qeqnes</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[ajax]]></category>

		<guid isPermaLink="false">http://qeqnes.wordpress.com/?p=714</guid>
		<description><![CDATA[Time for a roundup for all the jQuery plugins that have been on the wild for a few weeks. There are getting more and more jQuery plugins coming out just to meet your special needs. In this post, I particularly like Sausage contextual pagination, I think it&#8217;s a brilliant ideas! Here you go, pretty sure [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=714&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Time for a roundup for all the jQuery plugins that have been on the wild for a few weeks. There are getting more and more jQuery plugins coming out just to meet your special needs. In this post, I particularly like Sausage contextual pagination, I think it&#8217;s a brilliant ideas!</p>
<p>Here you go, pretty sure some of them will be really useful.</p>
<ul>
<li><a href="http://www.profilepicture.co.uk/tutorials/sticky-sidebar-jquery-plugin/">Sticky Sidebar</a> <img src="http://www.queness.com/resources/images/jqplugins3/1.jpg" alt="" /> This jQuery plugin allows you to set a number of sidebar or floating boxes that follow the user down the page as they scroll. The plugin uses absolute positioning calculated from the original css and offset to either the closest positioned parent or to the document. The plugin has been tested in IE6-9 and all the other major browsers.<span id="more-714"></span></li>
<li><a href="http://imakewebthings.github.com/jquery-waypoints/">Waypoint</a> <img src="http://www.queness.com/resources/images/jqplugins3/2.jpg" alt="" /> Waypoints is a small jQuery plugin that makes it easy to execute a function whenever you scroll to an element.</li>
<li><a href="http://tutorialzine.com/2011/03/better-check-boxes-jquery-css/">Better Checkboxes</a> <img src="http://www.queness.com/resources/images/jqplugins3/3.jpg" alt="" /> In this short tutorial, the author will be creating a replacement for the default browser checkboxes in the form of a simple jQuery plugin. It will progressively enhance your forms but at the same time fall back to the default controls if JavaScript is unavailable.</li>
<li><a href="http://tympanus.net/codrops/2010/07/29/thumbnails-navigation-gallery/">Thumbnails Navigation Gallery</a> <img src="http://www.queness.com/resources/images/jqplugins3/4.jpg" alt="" /> In this tutorial the author is going to create an extraordinary gallery with scrollable thumbnails that slide out from a navigation.</li>
<li><a href="http://christophercliff.github.com/sausage/">Sausage UI for contextual pagination</a> <img src="http://www.queness.com/resources/images/jqplugins3/5.jpg" alt="" /> Sausage is a jQuery UI widget for contextual pagination. It complements long or infinite-scrolling pages by keeping the user informed of her location within the document.</li>
<li><a href="http://jonobr1.github.com/diagonalFade/">Diagonal fade</a> <img src="http://www.queness.com/resources/images/jqplugins3/6.jpg" alt="" /> Diagonal fade is a jQuery plugin allowing you to easily specify direction, fade-in, fade-out, and a host of other options to a grouping of elements. All you have to do is import it, specify the container to which the group of items resides, and poof, you&#8217;re off and away.</li>
<li><a href="http://jackrugile.com/jrumble/">jRumble</a> <img src="http://www.queness.com/resources/images/jqplugins3/7.jpg" alt="" /> jRumble is a jQuery plugin that rumbles, vibrates, shakes, and rotates any element you choose. It&#8217;s great to use as a hover effect or a way to direct attention to an element. You can control the X, Y, and rotation range, the speed, and event trigger for the rumble.</li>
<li><a href="http://www.dailycoding.com/Posts/imagelens__a_jquery_plugin_for_lens_effect_image_zooming.aspx">Image Len</a> <img src="http://www.queness.com/resources/images/jqplugins3/8.jpg" alt="" /> Use this jQuery plug-in to add lens style zooming effect to an image</li>
<li><a href="http://srobbin.com/blog/jquery-plugins/jquery-backstretch/">Backstretch</a> <img src="http://www.queness.com/resources/images/jqplugins3/9.jpg" alt="" /> Backstretch is a simple jQuery plugin that allows you to add a dynamically-resized background image to any page. The image will stretch to fit the page, and will automatically resize as the window size changes.</li>
</ul>
<div>
<h2>About the Author</h2>
<div><img class="alignleft" style="margin-left:7px;margin-right:7px;" src="http://www.gravatar.com/avatar.php?gravatar_id=2000d4fc79a56d061c78dcaabe5b5340&amp;default=http%3A%2F%2Fwww.queness.com%2Fimages%2Fdefault.gif&amp;size=80" alt="" width="80" height="80" /></div>
<div>
<p id="profile-display">Kevin Liew is a web designer and developer and keen on contributing to the web development industry. He <a href="http://www.queness.com/post/7565/asdasd" target="_blank">loves</a> frontend development and absolutely amazed by jQuery. Feel free to <a href="http://staging.queness.com/contact-us" target="_blank">say hi</a> to me, or follow <a href="http://twitter.com/quenesswebblog" target="_blank">@quenesswebblog</a> on twitter.</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qeqnes.wordpress.com/714/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qeqnes.wordpress.com/714/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qeqnes.wordpress.com/714/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qeqnes.wordpress.com/714/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/qeqnes.wordpress.com/714/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/qeqnes.wordpress.com/714/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/qeqnes.wordpress.com/714/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/qeqnes.wordpress.com/714/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qeqnes.wordpress.com/714/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qeqnes.wordpress.com/714/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qeqnes.wordpress.com/714/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qeqnes.wordpress.com/714/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qeqnes.wordpress.com/714/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qeqnes.wordpress.com/714/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=714&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://qeqnes.wordpress.com/2011/04/27/9-jquery-scripts-to-enhance-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec8823c54b0918bd8d7cef3014fbf74?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qeqnes</media:title>
		</media:content>

		<media:content url="http://www.queness.com/resources/images/jqplugins3/1.jpg" medium="image" />

		<media:content url="http://www.queness.com/resources/images/jqplugins3/2.jpg" medium="image" />

		<media:content url="http://www.queness.com/resources/images/jqplugins3/3.jpg" medium="image" />

		<media:content url="http://www.queness.com/resources/images/jqplugins3/4.jpg" medium="image" />

		<media:content url="http://www.queness.com/resources/images/jqplugins3/5.jpg" medium="image" />

		<media:content url="http://www.queness.com/resources/images/jqplugins3/6.jpg" medium="image" />

		<media:content url="http://www.queness.com/resources/images/jqplugins3/7.jpg" medium="image" />

		<media:content url="http://www.queness.com/resources/images/jqplugins3/8.jpg" medium="image" />

		<media:content url="http://www.queness.com/resources/images/jqplugins3/9.jpg" medium="image" />

		<media:content url="http://www.gravatar.com/avatar.php?gravatar_id=2000d4fc79a56d061c78dcaabe5b5340&#38;default=http%3A%2F%2Fwww.queness.com%2Fimages%2Fdefault.gif&#38;size=80" medium="image" />
	</item>
		<item>
		<title>Create a Spinning, Zooming Effect with CSS3</title>
		<link>http://qeqnes.wordpress.com/2011/04/14/create-a-spinning-zooming-effect-with-css3/</link>
		<comments>http://qeqnes.wordpress.com/2011/04/14/create-a-spinning-zooming-effect-with-css3/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 22:55:12 +0000</pubDate>
		<dc:creator>qeqnes</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://qeqnes.wordpress.com/?p=707</guid>
		<description><![CDATA[In case you weren&#8217;t aware, CSS animations are awesome.  They&#8217;re smooth, less taxing than JavaScript, and are the future of node animation within browsers.  Dojo&#8217;s mobile solution, dojox.mobile, uses CSS animations instead of JavaScript to lighten the application&#8217;s JavaScript footprint.  One of my favorite effects is the spinning, zooming CSS animation.  Let me show you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=707&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In case you weren&#8217;t aware, <a href="http://davidwalsh.name/series/css-animations">CSS animations</a> are awesome.  They&#8217;re smooth, less taxing than JavaScript, and are the future of node animation within browsers.  Dojo&#8217;s mobile solution, dojox.mobile, uses CSS animations instead of JavaScript to lighten the application&#8217;s JavaScript footprint.  One of my favorite effects is the spinning, zooming CSS animation.  Let me show you how it&#8217;s done!<span id="more-707"></span></p>
<div><a href="http://davidwalsh.name/dw-content/css-zoom.php">View Demo</a></p>
<div></div>
</div>
<h2>The CSS</h2>
<p>The first task is creating the base animation with <code>@-webkit-keyframes</code>:</p>
<pre>@-webkit-keyframes rotater {
0% { -webkit-transform:rotate(0) scale(1) }
50% { -webkit-transform:rotate(360deg) scale(2) }
100% { -webkit-transform:rotate(720deg) scale(1) }
}</pre>
<p>The -webkit-transform property is the animator in this animation.  Define that at 0% the element is at 0 rotation and scaled to 1 &#8212; that is the original state of the element.  At 50% of the animation, the element should be rotated 360 degress (a complete spin), and the element should grow twice in size.  At 100%, the element should return to its original scale and rotate to 720 degrees, thus looking the same as it started.</p>
<p>With our named animation created, it&#8217;s time to apply the animation to an element upon its hover state:</p>
<pre>a.advert:hover {
	-webkit-animation-name:rotater;
	-webkit-animation-duration:500ms;
	-webkit-animation-iteration-count:1;
	-webkit-animation-timing-function:ease-out;

	-moz-transform:rotate(720eg) scale(2);
	-moz-transition-duration:500ms;
	-moz-transition-timing-function: ease-out;
}</pre>
<p>The event is assigned using the <code>-webkit-animation-name</code> property.  Additional properties are assigned:  <code>-webkit-animation-duration</code> makes the animation last 500 milliseconds, <code>-webkit-animation-iteration-count</code> directs the animation to occur only once, and <code>-webkit-animation-timing-function</code> sets the easing transition to ease-out.</p>
<div><a href="http://davidwalsh.name/dw-content/css-zoom.php">View Demo</a></p>
<div></div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qeqnes.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qeqnes.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qeqnes.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qeqnes.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/qeqnes.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/qeqnes.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/qeqnes.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/qeqnes.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qeqnes.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qeqnes.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qeqnes.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qeqnes.wordpress.com/707/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qeqnes.wordpress.com/707/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qeqnes.wordpress.com/707/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=707&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://qeqnes.wordpress.com/2011/04/14/create-a-spinning-zooming-effect-with-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec8823c54b0918bd8d7cef3014fbf74?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qeqnes</media:title>
		</media:content>
	</item>
		<item>
		<title>14 Useful jQuery Plugins For Web Designers And Developers</title>
		<link>http://qeqnes.wordpress.com/2011/04/14/14-useful-jquery-plugins-for-web-designers-and-developers/</link>
		<comments>http://qeqnes.wordpress.com/2011/04/14/14-useful-jquery-plugins-for-web-designers-and-developers/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 22:52:27 +0000</pubDate>
		<dc:creator>qeqnes</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://qeqnes.wordpress.com/?p=705</guid>
		<description><![CDATA[jQuery is a rapid JavaScript library that is CSS3 compliant and supports many cross-browsers features. The jQuery framework is extensible and very nicely handles DOM manipulations, CSS, animations, communications to server requests, document transverse and event handling. Here’s a collection of 14 useful jQuery plugins and scripts for web designers and web developers. This set [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=705&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>jQuery is a rapid JavaScript library that is CSS3 compliant and supports many cross-browsers features. The jQuery framework is extensible and very nicely handles DOM manipulations, CSS, animations, communications to server requests, document transverse and event handling.</p>
<p>Here’s a collection of <strong>14 useful jQuery plugins and scripts for web designers and web developers</strong>. This set contains jQuery sliders, image galleries, slideshow plugins, jQuery navigation menus, interactive calendar, image rotators, plugins for tabs, accordion menus, user interface elements, web contact forms, modal windows, tooltips and many other fresh jQuery solutions collected in one place.</p>
<p><span id="more-705"></span></p>
<h2>jQuery Plugins Scripts</h2>
<h3>elRTE</h3>
<p>elRTE is an open-source WYSIWYG HTML-editor written in JavaScript using jQuery UI. It features rich text editing, options for changing its appearance, style and many more. You can use it in any commercial or non-commercial projects.</p>
<p><a href="http://elrte.org/"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/1_elRTE-wysiwyg-editor.jpg" alt="jquery plugins for designers developers" width="500" height="328" border="0" /></a></p>
<p><a href="http://elrte.org/">demo / download</a></p>
<h3>Catch404</h3>
<p>Catch404 is a jQuery and CSS3 modal plugin for handling broken links elegantly.</p>
<p><a href="http://addyosmani.com/blog/catch404/"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/2_Catch404.jpg" alt="jquery plugins for designers developers" width="500" height="283" border="0" /></a></p>
<p><a href="http://addyosmani.com/blog/catch404/">demo / download</a></p>
<h3>wdCalendar</h3>
<p>[adsense]</p>
<p>wdCalendar is a jquery based google calendar clone. It cover most google calendar features. Day/week/month view provided, create/update/remove events by drag &amp; drop, easy way to integrate with database, and much more.</p>
<p><a href="http://www.web-delicious.com/jquery-plugins/#calendar"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/3_wdCalendar.jpg" alt="jquery plugins for designers developers" width="500" height="364" border="0" /></a></p>
<p><a href="http://www.web-delicious.com/jquery-plugins/#calendar">demo / download</a></p>
<h3>Lightbox Me</h3>
<p>Lightbox_me handles overlay resize when the window is resized, overlay size in cases where the document is smaller than the window, position fixed in all browsers and position fixed automatically swaps to position absolute when the window size is smaller than the modal, so the user can scroll to see the contents.</p>
<p><a href="http://buckwilson.me/lightboxme/"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/4_Lightbox_me.jpg" alt="jquery plugins for designers developers" width="500" height="363" border="0" /></a></p>
<p><a href="http://buckwilson.me/lightboxme/">demo / download</a></p>
<h3>SliderNav</h3>
<p>SlliderNav is a plugin that lets you add dynamic, sliding content using a vertical navigation bar (index). It is made mainly for alphabetical listings but can be used with anything, however longer words may look slightly awkward. The plugin automatically adds the navigation and sets the height for the object based on how tall the navigation is, in order to make sure users have access to the entire list.</p>
<p><a href="http://devgrow.com/slidernav/"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/5_Apple-Style-SliderNav.jpg" alt="jquery plugins for designers developers" width="343" height="378" border="0" /></a></p>
<p><a href="http://devgrow.com/slidernav/">demo / download</a></p>
<h3>Like it? Tweet it!</h3>
<p>Like it? Tweet it! is a jQuery-powered JavaScript widget that enables visitors to your website or blog to write a tweet about the site directly in a box displayed in the corner of the website, with a link to the site already embedded in the input field.</p>
<p><a href="http://pongsocket.com/tweet-it/"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/6_Likeit_tweetit.jpg" alt="jquery plugins for designers developers" width="452" height="229" border="0" /></a></p>
<p><a href="http://pongsocket.com/tweet-it/">demo / download</a></p>
<h3>Nivo Slider</h3>
<p>Awesome jQuery image slider includes features: 9 unique transition effects, simple clean &amp; valid markup, loads of settings to tweak, built in directional and control navigation, packed version only weighs 6kb, Supports linking images and free to use and abuse under the GPL license.</p>
<p><a href="http://nivo.dev7studios.com/"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/7_NivoSlider.jpg" alt="jquery plugins for designers developers" width="500" height="239" border="0" /></a></p>
<p><a href="http://nivo.dev7studios.com/">demo / download</a></p>
<h3>Uniform</h3>
<p>Uniform masks your standard form controls with custom themed controls. It works in sync with your real form elements to ensure accessibility and compatibility.</p>
<p><a href="http://pixelmatrixdesign.com/uniform/"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/8_Uniform.jpg" alt="jquery plugins for designers developers" width="473" height="202" border="0" /></a></p>
<p><a href="http://pixelmatrixdesign.com/uniform/">demo / download</a></p>
<h3>Lazy Load</h3>
<p>Lazy loader is a jQuery plugin written in JavaScript. It delays loading of images in long web pages.</p>
<p><a href="http://www.appelsiini.net/projects/lazyload"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/9_LazyLoad.jpg" alt="jquery plugins for designers developers" width="455" height="272" border="0" /></a></p>
<p><a href="http://www.appelsiini.net/projects/lazyload">demo / download</a></p>
<h3>jFlickrFeed</h3>
<p>jFlickrFeed is a jQuery plugin that makes it easy to pull Flickr feeds and display them on your site.</p>
<p><a href="http://files.gethifi.com/posts/jflickrfeed/example.html"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/10_jFlickrFeed.jpg" alt="jquery plugins for designers developers" width="472" height="377" border="0" /></a></p>
<p><a href="http://files.gethifi.com/posts/jflickrfeed/example.html">demo / download</a></p>
<h3>Chromatable jQuery Plugin</h3>
<p>A jQuery plugin to create scrolling tables with fixed headers. A jQuery plugin to keep the code contained in one location and allow users to call the <em>chromatable</em> method on any table, or many tables on the same page.</p>
<p><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/11_Chromaloop.jpg" alt="jquery plugins for designers developers" width="500" height="260" /></p>
<p><a href="http://www.chromaloop.com/posts/chromatable-jquery-plugin">demo / download</a></p>
<h3>Uploadify</h3>
<p>This plugin allows you to change any element with an ID on your page into a single or multiple file upload tool. The plugin uses a mix of JQuery, Flash, and a backend upload script of your choice to send files from your local computer to your website server.</p>
<p><a href="http://www.uploadify.com/"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/12_Uploadify.jpg" alt="jquery plugins for designers developers" width="455" height="545" border="0" /></a></p>
<p><a href="http://www.uploadify.com/">demo / download</a></p>
<h3>Easy Slider</h3>
<p>Easy Slider enables images or any content to slide horizontally or vertically on click. It is configurable with css alone. So, basically you link to plugin file, set the content up and style it with css.</p>
<p><a href="http://cssglobe.com/post/3783/jquery-plugin-easy-image-or-content-slider"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/13_EasySlider.jpg" alt="jquery plugins for designers developers" width="500" height="214" border="0" /></a></p>
<p><a href="http://cssglobe.com/post/3783/jquery-plugin-easy-image-or-content-slider">demo / download</a></p>
<h3>SimpleModal</h3>
<p>SimpleModal is a lightweight jQuery plugin that provides a simple interface to create a modal dialog.</p>
<p><a href="http://www.ericmmartin.com/projects/simplemodal"><img src="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/14_SimpleModal.jpg" alt="jquery plugins for designers developers" width="500" height="296" border="0" /></a></p>
<p><a href="http://www.ericmmartin.com/projects/simplemodal">demo / download</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qeqnes.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qeqnes.wordpress.com/705/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qeqnes.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qeqnes.wordpress.com/705/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/qeqnes.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/qeqnes.wordpress.com/705/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/qeqnes.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/qeqnes.wordpress.com/705/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qeqnes.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qeqnes.wordpress.com/705/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qeqnes.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qeqnes.wordpress.com/705/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qeqnes.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qeqnes.wordpress.com/705/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=705&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://qeqnes.wordpress.com/2011/04/14/14-useful-jquery-plugins-for-web-designers-and-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec8823c54b0918bd8d7cef3014fbf74?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qeqnes</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/1_elRTE-wysiwyg-editor.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/2_Catch404.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/3_wdCalendar.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/4_Lightbox_me.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/5_Apple-Style-SliderNav.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/6_Likeit_tweetit.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/7_NivoSlider.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/8_Uniform.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/9_LazyLoad.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/10_jFlickrFeed.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/11_Chromaloop.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/12_Uploadify.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/13_EasySlider.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>

		<media:content url="http://smashingwall.com/wp-content/uploads/2011/03/jquery-plugins/14_SimpleModal.jpg" medium="image">
			<media:title type="html">jquery plugins for designers developers</media:title>
		</media:content>
	</item>
		<item>
		<title>Free HTML Newsletter Templates</title>
		<link>http://qeqnes.wordpress.com/2011/03/27/free-html-newsletter-templates/</link>
		<comments>http://qeqnes.wordpress.com/2011/03/27/free-html-newsletter-templates/#comments</comments>
		<pubDate>Sun, 27 Mar 2011 10:21:35 +0000</pubDate>
		<dc:creator>qeqnes</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Template]]></category>

		<guid isPermaLink="false">http://qeqnes.wordpress.com/?p=700</guid>
		<description><![CDATA[Choosing a well designed newsletter can provide any marketing campaign a great deal of success. Here are excellent examples of some of the best free HTML newsletter templates that you can use without spending a fortune. No matter how you’d like to update your customers about a particular product or simply want to share some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=700&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Choosing a well designed newsletter can provide any marketing  campaign a great deal of success. Here are excellent examples of some of  the best free HTML newsletter templates that you can use without  spending a fortune. No matter how you’d like to update your customers  about a particular product or simply want to share some information with  them, you can do so effectively by contacting them with a pleasant  template in your email. Enjoy!</p>
<p><a href="http://i2.campaignmonitor.com/images/templates/meagan_fisher/clouds_full_1col.jpeg">Clouds Template</a> — <a href="http://i2.campaignmonitor.com/files/meagan_fisher/clouds.zip">Download Link</a></p>
<p><a href="http://i2.campaignmonitor.com/images/templates/meagan_fisher/clouds_full_1col.jpeg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp45.jpg" alt="Freenewslettertemp45 in Free HTML Newsletter Templates" width="500" height="404" /><span id="more-700"></span></a></p>
<p><a href="http://www.mailchimp.com/resources/html-email-templates/">36 Basic | Flexible Templates</a> — <a href="https://github.com/mailchimp/Email-Blueprints">Download Link</a></p>
<p><a href="http://www.mailchimp.com/resources/html-email-templates/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp521.jpg" alt="Freenewslettertemp521 in Free HTML Newsletter Templates" width="500" height="341" /></a></p>
<p><a href="http://www.campaignmonitor.com/templates/">Simon Collison (Retro Stripes)</a> — <a href="http://i4.campaignmonitor.com/files/simon_collison/retrostripes.zip">Download Link</a></p>
<p><a href="http://www.campaignmonitor.com/templates/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp9.jpg" alt="Freenewslettertemp9 in Free HTML Newsletter Templates" width="500" height="378" /></a></p>
<p><a href="http://www.aweber.com/blog/email-template-design/2-new-html-email-templates.htm">Outdoorsy Template</a> — <a href="http://blog-cdn.aweber-static.com/blog/wp-content/uploads/2009/09/superfresh-html-email-template.zip">Download Link</a></p>
<p><a href="http://www.aweber.com/blog/email-template-design/2-new-html-email-templates.htm"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp15.jpg" alt="Freenewslettertemp15 in Free HTML Newsletter Templates" width="500" height="851" /></a></p>
<p><a href="http://www.campaignmonitor.com/templates/">45royale | Boutique</a> — <a href="http://i1.campaignmonitor.com/files/45royale/boutique.zip">Download Link</a></p>
<p><a href="http://www.campaignmonitor.com/templates/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp1.jpg" alt="Freenewslettertemp1 in Free HTML Newsletter Templates" width="500" height="391" /></a></p>
<p><a href="http://freemailtemplates.com/mail-templates/single-column/template-single-column-2">Company Newsletter</a> — <a href="http://freemailtemplates.com/mail-templates/left-sidebar/template-left-sidebar-2?downloadd">Download Link</a></p>
<p><a href="http://freemailtemplates.com/mail-templates/single-column/template-single-column-2"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp32.jpg" alt="Freenewslettertemp32 in Free HTML Newsletter Templates" width="500" height="413" /></a></p>
<p><a href="http://www.cakemail.com/images/newsletter/a11_full.png">Medieval Style Layout</a> — <a href="http://www.cakemail.com/newsletters/a11.zip">Download Link</a></p>
<p><a href="http://www.cakemail.com/images/newsletter/a11_full.png"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp12.jpg" alt="Freenewslettertemp12 in Free HTML Newsletter Templates" width="500" height="585" /></a></p>
<p><a href="http://www.campaignmonitor.com/templates/">Nature</a> — <a href="http://i5.campaignmonitor.com/files/45royale/nature.zip">Download Link</a></p>
<p><a href="http://www.campaignmonitor.com/templates/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp3.jpg" alt="Freenewslettertemp3 in Free HTML Newsletter Templates" width="500" height="407" /></a></p>
<p><a href="http://www.campaignmonitor.com/templates/">Industrial Template</a> — <a href="http://i3.campaignmonitor.com/files/45royale/industrial.zip">Download Link</a></p>
<p><a href="http://www.campaignmonitor.com/templates/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp2.jpg" alt="Freenewslettertemp2 in Free HTML Newsletter Templates" width="500" height="378" /></a></p>
<p><a href="http://hotemailtemplates.com/in-the-army-now/">Army Look</a> — <a href="http://hotemailtemplates.com/templates/Free/in_the_army_now.zip">Download Link</a></p>
<p><a href="http://hotemailtemplates.com/in-the-army-now/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp38.jpg" alt="Freenewslettertemp38 in Free HTML Newsletter Templates" width="500" height="432" /></a></p>
<p><a href="http://www.campaignmonitor.com/templates/">Grunge</a> — <a href="http://i4.campaignmonitor.com/files/elliot_jay_stocks/grunge.zip">Download Link</a></p>
<p><a href="http://www.campaignmonitor.com/templates/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp4.jpg" alt="Freenewslettertemp4 in Free HTML Newsletter Templates" width="500" height="378" /></a></p>
<p><a href="http://freemailtemplates.com/mail-templates/left-sidebar/template-left-sidebar-10">Company Newsletter</a> — <a href="http://freemailtemplates.com/mail-templates/left-sidebar/template-left-sidebar-10?download">Download Link</a></p>
<p><a href="http://freemailtemplates.com/mail-templates/left-sidebar/template-left-sidebar-10"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp29.jpg" alt="Freenewslettertemp29 in Free HTML Newsletter Templates" width="500" height="430" /></a></p>
<p><a href="http://www.campaignmonitor.com/downloads/templates/template-2-left-sidebar.zip">Newsletter Template 2 left sidebar</a> — <a href="http://www.campaignmonitor.com/downloads/templates/template-2-left-sidebar.zip">Download Link</a></p>
<p><a href="http://www.campaignmonitor.com/downloads/templates/template-2-left-sidebar.zip"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp31.jpg" alt="Freenewslettertemp31 in Free HTML Newsletter Templates" width="500" height="464" /></a></p>
<p><a href="http://freemailtemplates.com/mail-templates/left-sidebar/template-left-sidebar-9">Company Newsletters</a> — <a href="http://freemailtemplates.com/mail-templates/left-sidebar/template-left-sidebar-9?download">Download Link</a></p>
<p><a href="http://freemailtemplates.com/mail-templates/left-sidebar/template-left-sidebar-9"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp28.jpg" alt="Freenewslettertemp28 in Free HTML Newsletter Templates" width="500" height="415" /></a></p>
<p><a href="http://www.campaignmonitor.com/templates/">Meagan Fisher (Air Mail)</a> — <a href="http://i1.campaignmonitor.com/files/meagan_fisher/airmail.zip">Download Link</a></p>
<p><a href="http://www.campaignmonitor.com/templates/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp5.jpg" alt="Freenewslettertemp5 in Free HTML Newsletter Templates" width="500" height="378" /></a></p>
<p><a href="http://www.campaignmonitor.com/templates/">MetaLab (Acrylic)</a> — <a href="http://i1.campaignmonitor.com/files/metalab/acrylic.zip">Download Link</a></p>
<p><a href="http://www.campaignmonitor.com/templates/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp6.jpg" alt="Freenewslettertemp6 in Free HTML Newsletter Templates" width="500" height="407" /></a></p>
<p><a href="http://www.carbongraffiti.com/emailmarketing/images/lg/rss.gif">2 column, RSS Newsletter</a> — <a href="http://www.carbongraffiti.com/emailmarketing/rssnewsletter/rssnewsletter.zip">Download Link</a></p>
<p><a href="http://www.carbongraffiti.com/emailmarketing/images/lg/rss.gif"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp10.jpg" alt="Freenewslettertemp10 in Free HTML Newsletter Templates" width="500" height="583" /></a></p>
<p><a href="http://www.campaignmonitor.com/templates/">Mike Kus (Worn)</a> — <a href="http://i4.campaignmonitor.com/files/mike_kus/worn_updated.zip">Download Link</a></p>
<p><a href="http://www.campaignmonitor.com/templates/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp7.jpg" alt="Freenewslettertemp7 in Free HTML Newsletter Templates" width="500" height="431" /></a></p>
<p><a href="http://www.campaignmonitor.com/templates/">Mike Kus (Color Direct)</a> — <a href="http://i1.campaignmonitor.com/files/mike_kus/colordirect_updated.zip">Download Link</a></p>
<p><a href="http://www.campaignmonitor.com/templates/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp8.jpg" alt="Freenewslettertemp8 in Free HTML Newsletter Templates" width="500" height="378" /></a></p>
<p><a href="http://www.carbongraffiti.com/emailmarketing/images/lg/skinny.gif">1 column, Skinny Format</a> — <a href="http://www.carbongraffiti.com/emailmarketing/skinny/skinny.zip">Download Link</a></p>
<p><a href="http://www.carbongraffiti.com/emailmarketing/images/lg/skinny.gif"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp11.jpg" alt="Freenewslettertemp11 in Free HTML Newsletter Templates" width="500" height="897" /></a></p>
<p><a href="http://www.cakemail.com/images/newsletter/a1_full.png">Dark and Dirty</a> — <a href="http://www.cakemail.com/newsletters/a1.zip">Download Link</a></p>
<p><a href="http://www.cakemail.com/images/newsletter/a1_full.png"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp13.jpg" alt="Freenewslettertemp13 in Free HTML Newsletter Templates" width="500" height="583" /></a></p>
<p><a href="http://www.aweber.com/blog/new-features/free-html-email-template-welcome.htm">Welcome Template</a> — <a href="http://blog-cdn.aweber-static.com/blog/wp-content/uploads/2008/09/welcome_email_template.zip">Download Link</a></p>
<p><a href="http://www.aweber.com/blog/new-features/free-html-email-template-welcome.htm"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp14.jpg" alt="Freenewslettertemp14 in Free HTML Newsletter Templates" width="500" height="325" /></a></p>
<p><a href="http://www.aweber.com/blog/new-features/blog-newsletter-template-meadows.htm">Meadows Template</a> — <a href="http://blog-cdn.aweber-static.com/blog/wp-content/uploads/2008/08/meadows_template.zip">Download Link</a></p>
<p><a href="http://www.aweber.com/blog/new-features/blog-newsletter-template-meadows.htm"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp17.jpg" alt="Freenewslettertemp17 in Free HTML Newsletter Templates" width="500" height="366" /></a></p>
<p><a href="http://www.aweber.com/blog/new-features/free-html-email-template-malibu.htm">Malibu Template — </a><a href="http://blog-cdn.aweber-static.com/blog/wp-content/uploads/2008/08/malibu_template.zip">Download Link</a></p>
<p><a href="http://www.aweber.com/blog/new-features/free-html-email-template-malibu.htm"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp18.jpg" alt="Freenewslettertemp18 in Free HTML Newsletter Templates" width="500" height="468" /></a></p>
<p><a href="http://i5.campaignmonitor.com/images/templates/meagan_fisher/tech_full_1col.jpeg">Tech Newsletter</a> — <a href="http://i5.campaignmonitor.com/files/meagan_fisher/tech.zip">Download Link</a></p>
<p><a href="http://i5.campaignmonitor.com/images/templates/meagan_fisher/tech_full_1col.jpeg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp48.jpg" alt="Freenewslettertemp48 in Free HTML Newsletter Templates" width="500" height="384" /></a></p>
<p><a href="http://i2.campaignmonitor.com/images/templates/metalab/cool_full_1col.jpeg">MetaLab Cool Template</a> — <a href="http://i2.campaignmonitor.com/files/metalab/cool.zip">Download Link</a></p>
<p><a href="http://i2.campaignmonitor.com/images/templates/metalab/cool_full_1col.jpeg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp49.jpg" alt="Freenewslettertemp49 in Free HTML Newsletter Templates" width="500" height="384" /></a></p>
<p><a href="http://i3.campaignmonitor.com/images/templates/meagan_fisher/fabric_full_1col.jpeg">Fabric Template</a> — <a href="http://i3.campaignmonitor.com/files/meagan_fisher/fabric.zip">Download Link</a></p>
<p><a href="http://i3.campaignmonitor.com/images/templates/meagan_fisher/fabric_full_1col.jpeg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp46.jpg" alt="Freenewslettertemp46 in Free HTML Newsletter Templates" width="500" height="404" /></a></p>
<p><a href="http://www.aweber.com/blog/new-features/free-html-email-template-download.htm">Free HTML Email Template</a> — <a href="http://www.aweber.com/blog/new-features/free-html-email-template-download.htm">Download Link</a></p>
<p><a href="http://www.aweber.com/blog/new-features/free-html-email-template-download.htm"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp19.jpg" alt="Freenewslettertemp19 in Free HTML Newsletter Templates" width="500" height="386" /></a></p>
<p><a href="http://www.aweber.com/blog/email-template-design/holiday-email-templates.htm">Holiday | Seasons Greetings</a> — <a href="http://blog-cdn.aweber-static.com/blog/wp-content/uploads/2009/12/seasons-greetings.zip">Download Link</a></p>
<p><a href="http://www.aweber.com/blog/email-template-design/holiday-email-templates.htm"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp20.jpg" alt="Freenewslettertemp20 in Free HTML Newsletter Templates" width="500" height="358" /></a></p>
<p><a href="http://blog-cdn.aweber-static.com/blog/wp-content/uploads/2009/12/happy-holidays.zip">Holiday | Happy Holidays</a> — <a href="http://blog-cdn.aweber-static.com/blog/wp-content/uploads/2009/12/happy-holidays.zip">Download Link</a></p>
<p><a href="http://blog-cdn.aweber-static.com/blog/wp-content/uploads/2009/12/happy-holidays.zip"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp21.jpg" alt="Freenewslettertemp21 in Free HTML Newsletter Templates" width="500" height="442" /></a></p>
<p><a href="http://www.stocklayouts.com/Templates/Free-Templates/Free-Sample-Newsletter-Template-Design.aspx">Free Sample Newsletter Template</a> — <a href="http://www.stocklayouts.com/Templates/Free-Templates/Free-Sample-Newsletter-Template-Design.aspx">Download Link</a></p>
<p><a href="http://www.stocklayouts.com/Templates/Free-Templates/Free-Sample-Newsletter-Template-Design.aspx"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp22.jpg" alt="Freenewslettertemp22 in Free HTML Newsletter Templates" width="500" height="334" /></a></p>
<p><a href="http://www.buytemplates.net/freedownloads/index#">Friuts Store Template</a> — <a href="http://www.buytemplates.net/freedownloads/index#">Download Link</a></p>
<p><a href="http://www.buytemplates.net/freedownloads/index#"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp23.jpg" alt="Freenewslettertemp23 in Free HTML Newsletter Templates" width="500" height="366" /></a></p>
<p><a href="http://www.templatesbox.com/free-newsletter-templates/083.htm">Free Newsletter Templates</a> — <a href="http://www.templatesbox.com/free-newsletter-templates/download/083.htm">Download Link</a></p>
<p><a href="http://www.templatesbox.com/free-newsletter-templates/083.htm"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp24.jpg" alt="Freenewslettertemp24 in Free HTML Newsletter Templates" width="500" height="451" /></a></p>
<p><a href="http://www.deliverysuccess.com/templates/cart-free-newsletter-templates-005.jpg">Free Newsletter Templates</a> — <a href="https://deliverysuccess.com/free-newsletter-template-download-005.html">Download Link</a></p>
<p><a href="http://www.deliverysuccess.com/templates/cart-free-newsletter-templates-005.jpg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp25.jpg" alt="Freenewslettertemp25 in Free HTML Newsletter Templates" width="500" height="600" /></a></p>
<p><a href="http://www.deliverysuccess.com/templates/cart-free-newsletter-templates-004.jpg">Free Newsletter Templates</a> — <a href="https://deliverysuccess.com/free-newsletter-template-download-004.html">Download Link</a></p>
<p><a href="http://www.deliverysuccess.com/templates/cart-free-newsletter-templates-004.jpg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp26.jpg" alt="Freenewslettertemp26 in Free HTML Newsletter Templates" width="500" height="533" /></a></p>
<p><a href="http://www.activecampaign.com/email-templates/free/Template_Free_8/HTML/">Free Newsletter Templates</a> — <a href="http://www.activecampaign.com/email-templates/free-templates.php?email=8">Download Link</a></p>
<p><a href="http://www.activecampaign.com/email-templates/free/Template_Free_8/HTML/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp27.jpg" alt="Freenewslettertemp27 in Free HTML Newsletter Templates" width="500" height="416" /></a></p>
<p><a href="http://i4.campaignmonitor.com/images/templates/45royale/modern_full_1col.jpeg">Modern Age Technology Template</a> — <a href="http://i4.campaignmonitor.com/files/45royale/modern.zip">Download Link</a></p>
<p><a href="http://i4.campaignmonitor.com/images/templates/45royale/modern_full_1col.jpeg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp41.jpg" alt="Freenewslettertemp41 in Free HTML Newsletter Templates" width="500" height="411" /></a></p>
<p><a href="http://i1.campaignmonitor.com/images/templates/elliot_jay_stocks/cool_full_1col.jpeg">Elliot Jay Stocks | The Cool Collective</a> — <a href="http://i1.campaignmonitor.com/files/elliot_jay_stocks/cool.zip">Download Link</a></p>
<p><a href="http://i1.campaignmonitor.com/images/templates/elliot_jay_stocks/cool_full_1col.jpeg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp42.jpg" alt="Freenewslettertemp42 in Free HTML Newsletter Templates" width="500" height="411" /></a></p>
<p><a href="http://www.deliverysuccess.com/free-newsletter-templates.html">Company Newsletter</a> — <a href="http://www.deliverysuccess.com/free-newsletter-templates.html">Download Link</a></p>
<p><a href="http://www.deliverysuccess.com/free-newsletter-templates.html"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp33.jpg" alt="Freenewslettertemp33 in Free HTML Newsletter Templates" width="500" height="428" /></a></p>
<p><a href="http://www.heartinternet.co.uk/reseller-hosting/reseller-hosting-resources.html">Newsletter Templates</a> — <a href="http://www.heartinternet.co.uk/resources/templates/newsletters/pro_email_template.zip">Download Link</a></p>
<p><a href="http://www.heartinternet.co.uk/reseller-hosting/reseller-hosting-resources.html"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp34.jpg" alt="Freenewslettertemp34 in Free HTML Newsletter Templates" width="500" height="511" /></a></p>
<p><a href="http://www.heartinternet.co.uk/images/templates/hosting/template_premiumblue_lrg.png">Blue Newsletter</a> — <a href="http://www.heartinternet.co.uk/resources/templates/newsletters/newsletter_premium_blue.zip">Download Link</a></p>
<p><a href="http://www.heartinternet.co.uk/images/templates/hosting/template_premiumblue_lrg.png"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp35.jpg" alt="Freenewslettertemp35 in Free HTML Newsletter Templates" width="500" height="374" /></a></p>
<p><a href="http://www.heartinternet.co.uk/images/templates/hosting/template_clean_lrg.png">Clean Newsletter</a> — <a href="http://www.heartinternet.co.uk/resources/templates/newsletters/newsletter_clean.zip">Download Link</a></p>
<p><a href="http://www.heartinternet.co.uk/images/templates/hosting/template_clean_lrg.png"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp36.jpg" alt="Freenewslettertemp36 in Free HTML Newsletter Templates" width="500" height="381" /></a></p>
<p><a href="http://hotemailtemplates.com/free-coupons/">Free Coupons Newsletter</a> — <a href="http://hotemailtemplates.com/templates/Free/free_coupons.zip">Download Link</a></p>
<p><a href="http://hotemailtemplates.com/free-coupons/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp37.jpg" alt="Freenewslettertemp37 in Free HTML Newsletter Templates" width="500" height="432" /></a></p>
<p><a href="http://hotemailtemplates.com/category/email-templates/">Gold Autumn</a> — <a href="http://hotemailtemplates.com/templates/Free/gold_autumn.zip">Download Link</a></p>
<p><a href="http://hotemailtemplates.com/category/email-templates/"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp39.jpg" alt="Freenewslettertemp39 in Free HTML Newsletter Templates" width="500" height="432" /></a></p>
<p><a href="http://i2.campaignmonitor.com/images/templates/45royale/classic_full_1col.jpeg">Classic Template</a> — <a href="http://i2.campaignmonitor.com/files/45royale/classic.zip">Download Link</a></p>
<p><a href="http://i2.campaignmonitor.com/images/templates/45royale/classic_full_1col.jpeg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp40.jpg" alt="Freenewslettertemp40 in Free HTML Newsletter Templates" width="500" height="325" /></a></p>
<p><a href="http://i2.campaignmonitor.com/images/templates/elliot_jay_stocks/elegant_full_1col.jpeg">Elegant Template</a> — <a href="http://i2.campaignmonitor.com/files/elliot_jay_stocks/elegant.zip">Download Link</a></p>
<p><a href="http://i2.campaignmonitor.com/images/templates/elliot_jay_stocks/elegant_full_1col.jpeg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp43.jpg" alt="Freenewslettertemp43 in Free HTML Newsletter Templates" width="500" height="404" /></a></p>
<p><a href="http://i3.campaignmonitor.com/images/templates/elliot_jay_stocks/impact_full_1col.jpeg">High Impact</a> — <a href="http://i3.campaignmonitor.com/files/elliot_jay_stocks/impact_updated.zip">Download Link</a></p>
<p><a href="http://i3.campaignmonitor.com/images/templates/elliot_jay_stocks/impact_full_1col.jpeg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp44.jpg" alt="Freenewslettertemp44 in Free HTML Newsletter Templates" width="500" height="404" /></a></p>
<p><a href="http://i4.campaignmonitor.com/images/templates/meagan_fisher/spring_full_1col.jpeg">Spring Template</a> — <a href="http://i4.campaignmonitor.com/files/meagan_fisher/spring.zip">Download Link</a></p>
<p><a href="http://i4.campaignmonitor.com/images/templates/meagan_fisher/spring_full_1col.jpeg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp47.jpg" alt="Freenewslettertemp47 in Free HTML Newsletter Templates" width="500" height="384" /></a></p>
<p><a href="http://i3.campaignmonitor.com/images/templates/metalab/cottonrag_full_1col.jpeg">Cotton Rag</a> — <a href="http://i3.campaignmonitor.com/files/metalab/cottonrag.zip">Download Link</a></p>
<p><a href="http://i3.campaignmonitor.com/images/templates/metalab/cottonrag_full_1col.jpeg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp50.jpg" alt="Freenewslettertemp50 in Free HTML Newsletter Templates" width="500" height="384" /></a></p>
<p><a href="http://i5.campaignmonitor.com/images/templates/metalab/mute_full_1col.jpeg">Mute Template</a> — <a href="http://i5.campaignmonitor.com/files/metalab/mute.zip">Download Link</a></p>
<p><a href="http://i5.campaignmonitor.com/images/templates/metalab/mute_full_1col.jpeg"><img src="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp51.jpg" alt="Freenewslettertemp51 in Free HTML Newsletter Templates" width="500" height="427" /></a></p>
<p><strong><br />
</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qeqnes.wordpress.com/700/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qeqnes.wordpress.com/700/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qeqnes.wordpress.com/700/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qeqnes.wordpress.com/700/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/qeqnes.wordpress.com/700/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/qeqnes.wordpress.com/700/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/qeqnes.wordpress.com/700/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/qeqnes.wordpress.com/700/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qeqnes.wordpress.com/700/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qeqnes.wordpress.com/700/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qeqnes.wordpress.com/700/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qeqnes.wordpress.com/700/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qeqnes.wordpress.com/700/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qeqnes.wordpress.com/700/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=700&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://qeqnes.wordpress.com/2011/03/27/free-html-newsletter-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec8823c54b0918bd8d7cef3014fbf74?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qeqnes</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp45.jpg" medium="image">
			<media:title type="html">Freenewslettertemp45 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp521.jpg" medium="image">
			<media:title type="html">Freenewslettertemp521 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp9.jpg" medium="image">
			<media:title type="html">Freenewslettertemp9 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp15.jpg" medium="image">
			<media:title type="html">Freenewslettertemp15 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp1.jpg" medium="image">
			<media:title type="html">Freenewslettertemp1 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp32.jpg" medium="image">
			<media:title type="html">Freenewslettertemp32 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp12.jpg" medium="image">
			<media:title type="html">Freenewslettertemp12 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp3.jpg" medium="image">
			<media:title type="html">Freenewslettertemp3 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp2.jpg" medium="image">
			<media:title type="html">Freenewslettertemp2 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp38.jpg" medium="image">
			<media:title type="html">Freenewslettertemp38 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp4.jpg" medium="image">
			<media:title type="html">Freenewslettertemp4 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp29.jpg" medium="image">
			<media:title type="html">Freenewslettertemp29 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp31.jpg" medium="image">
			<media:title type="html">Freenewslettertemp31 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp28.jpg" medium="image">
			<media:title type="html">Freenewslettertemp28 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp5.jpg" medium="image">
			<media:title type="html">Freenewslettertemp5 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp6.jpg" medium="image">
			<media:title type="html">Freenewslettertemp6 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp10.jpg" medium="image">
			<media:title type="html">Freenewslettertemp10 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp7.jpg" medium="image">
			<media:title type="html">Freenewslettertemp7 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp8.jpg" medium="image">
			<media:title type="html">Freenewslettertemp8 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp11.jpg" medium="image">
			<media:title type="html">Freenewslettertemp11 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp13.jpg" medium="image">
			<media:title type="html">Freenewslettertemp13 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp14.jpg" medium="image">
			<media:title type="html">Freenewslettertemp14 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp17.jpg" medium="image">
			<media:title type="html">Freenewslettertemp17 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp18.jpg" medium="image">
			<media:title type="html">Freenewslettertemp18 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp48.jpg" medium="image">
			<media:title type="html">Freenewslettertemp48 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp49.jpg" medium="image">
			<media:title type="html">Freenewslettertemp49 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp46.jpg" medium="image">
			<media:title type="html">Freenewslettertemp46 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp19.jpg" medium="image">
			<media:title type="html">Freenewslettertemp19 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp20.jpg" medium="image">
			<media:title type="html">Freenewslettertemp20 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp21.jpg" medium="image">
			<media:title type="html">Freenewslettertemp21 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp22.jpg" medium="image">
			<media:title type="html">Freenewslettertemp22 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp23.jpg" medium="image">
			<media:title type="html">Freenewslettertemp23 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp24.jpg" medium="image">
			<media:title type="html">Freenewslettertemp24 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp25.jpg" medium="image">
			<media:title type="html">Freenewslettertemp25 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp26.jpg" medium="image">
			<media:title type="html">Freenewslettertemp26 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp27.jpg" medium="image">
			<media:title type="html">Freenewslettertemp27 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp41.jpg" medium="image">
			<media:title type="html">Freenewslettertemp41 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp42.jpg" medium="image">
			<media:title type="html">Freenewslettertemp42 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp33.jpg" medium="image">
			<media:title type="html">Freenewslettertemp33 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp34.jpg" medium="image">
			<media:title type="html">Freenewslettertemp34 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp35.jpg" medium="image">
			<media:title type="html">Freenewslettertemp35 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp36.jpg" medium="image">
			<media:title type="html">Freenewslettertemp36 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp37.jpg" medium="image">
			<media:title type="html">Freenewslettertemp37 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp39.jpg" medium="image">
			<media:title type="html">Freenewslettertemp39 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp40.jpg" medium="image">
			<media:title type="html">Freenewslettertemp40 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp43.jpg" medium="image">
			<media:title type="html">Freenewslettertemp43 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp44.jpg" medium="image">
			<media:title type="html">Freenewslettertemp44 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp47.jpg" medium="image">
			<media:title type="html">Freenewslettertemp47 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp50.jpg" medium="image">
			<media:title type="html">Freenewslettertemp50 in Free HTML Newsletter Templates</media:title>
		</media:content>

		<media:content url="http://media.smashingmagazine.com/cdn_noupe/wp-content/uploads/2011/03/freenewslettertemp51.jpg" medium="image">
			<media:title type="html">Freenewslettertemp51 in Free HTML Newsletter Templates</media:title>
		</media:content>
	</item>
		<item>
		<title>JavaScript Modal Windows – TinyBox2</title>
		<link>http://qeqnes.wordpress.com/2011/03/24/javascript-modal-windows-%e2%80%93-tinybox2/</link>
		<comments>http://qeqnes.wordpress.com/2011/03/24/javascript-modal-windows-%e2%80%93-tinybox2/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 09:56:14 +0000</pubDate>
		<dc:creator>qeqnes</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://qeqnes.wordpress.com/?p=692</guid>
		<description><![CDATA[This update to the TinyBox modal box script brings a ton of new features and still clocks in under 5KB. The script now supports iframes and images natively. You can POST with Ajax. Clicking ESC will close the window. Callback functions can be passed for load and close events. You can set CSS IDs to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=692&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p><img src="http://www.scriptiny.com/wp-content/uploads/2011/03/tinybox2.jpg" alt="JavaScript Modal Windows" width="592" height="225" /></p>
<p>This update to the TinyBox modal box script brings a ton of new  features and still clocks in under 5KB. The script now supports iframes  and images natively. You can POST with Ajax. Clicking ESC will close the  window. Callback functions can be passed for load and close events. You  can set CSS IDs to override the default styling. CSS position can be  toggled between fixed and absolute. The mask opacity can be sent. You  have full control over window location. And of course there is now a  close button out of the box you can toggle.<span id="more-692"></span></p>
<p>The script is now executed by passing an object due to the large  number of options. There is nothing to initialize, just call the  function on whatever mouse or browser event you like. A sample call  would look like the following:</p>
<div>
<div id="highlighter_209740">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div>1</div>
</td>
<td>
<div>
<div><code>TINY.box.show({url:</code><code>'advanced.html'</code><code>,width:300,height:150})</code></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<p>Parameters include (tag – description (type) – default):</p>
<div>
<div id="highlighter_533054">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
<div>8</div>
<div>9</div>
<div>10</div>
<div>11</div>
<div>12</div>
<div>13</div>
<div>14</div>
<div>15</div>
<div>16</div>
<div>17</div>
<div>18</div>
<div>19</div>
<div>20</div>
</td>
<td>
<div>
<div><code>html - HTML content </code><code>for</code> <code>window (string) - </code><code>false</code></div>
<div><code>iframe - URL </code><code>for</code> <code>embedded iframe (string) - </code><code>false</code></div>
<div><code>url - path </code><code>for</code> <code>AJAX call (string) - </code><code>false</code></div>
<div><code>post - post variable string, used </code><code>in</code> <code>conjunction </code><code>with</code> <code>url (string) - </code><code>false</code></div>
<div><code>image - image path (string) - </code><code>false</code></div>
<div><code>width - preset width (int) - </code><code>false</code></div>
<div><code>height - preset height (int) - </code><code>false</code></div>
<div><code>animate - toggle animation (bool) - </code><code>true</code></div>
<div><code>close - toggle close button (bool) - </code><code>true</code></div>
<div><code>openjs - generic </code><code>function</code> <code>executed on open (string) - </code><code>null</code></div>
<div><code>closejs - generic </code><code>function</code> <code>executed on close (string) - </code><code>null</code></div>
<div><code>autohide - number of seconds to wait until auto-hiding (int) - </code><code>false</code></div>
<div><code>boxid - ID of box div </code><code>for</code> <code>style overriding purposes (string) - </code><code>''</code></div>
<div><code>maskid - ID of mask div </code><code>for</code> <code>style overriding purposes (string) - </code><code>''</code></div>
<div><code>fixed - toggle fixed position vs static (bool) - </code><code>true</code></div>
<div><code>opacity - set the opacity of the mask from 0-100 (int) - 70</code></div>
<div><code>mask - toggle mask display (bool) - </code><code>true</code></div>
<div><code>top - absolute pixels from top (int) - </code><code>null</code></div>
<div><code>left - absolute pixels from left (int) - </code><code>null</code></div>
<div><code>topsplit - 1/x where x is the denominator </code><code>in</code> <code>the split from the top (int) - 2</code></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<p>Nearly all of the parameters above are optional. Of course you must  include either the html, iframe, url, or image parameters as they drive  the content. Height and width are option and will be calculated based on  offsetWidth and offsetHeight in the case of HTML or Ajax content else  by actual width and height with images. Iframe calls must include a  height and width. By default the box will animate in the center of the  screen in a fixed position.</p>
<h3><strong><a href="http://sandbox.scriptiny.com/tinybox2/" target="_blank">Click here</a></strong> for the demo.</h3>
<h3><strong><a href="http://forum.leigeber.com/index.php?app=downloads&amp;module=display&amp;section=download&amp;do=confirm_download&amp;id=14" target="_blank">Click here</a></strong> to download.</h3>
<p>This script is tested in IE7+, FF, Chrome, Opera, and Safari and is  available free of charge for both personal or commercial projects under  the <a href="http://creativecommons.org/licenses/by/3.0/us/" target="_blank">creative commons license</a>. This is a never-ending work in progress and I welcome any bug reports.</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qeqnes.wordpress.com/692/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qeqnes.wordpress.com/692/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qeqnes.wordpress.com/692/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qeqnes.wordpress.com/692/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/qeqnes.wordpress.com/692/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/qeqnes.wordpress.com/692/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/qeqnes.wordpress.com/692/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/qeqnes.wordpress.com/692/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qeqnes.wordpress.com/692/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qeqnes.wordpress.com/692/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qeqnes.wordpress.com/692/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qeqnes.wordpress.com/692/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qeqnes.wordpress.com/692/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qeqnes.wordpress.com/692/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=692&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://qeqnes.wordpress.com/2011/03/24/javascript-modal-windows-%e2%80%93-tinybox2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec8823c54b0918bd8d7cef3014fbf74?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qeqnes</media:title>
		</media:content>

		<media:content url="http://www.scriptiny.com/wp-content/uploads/2011/03/tinybox2.jpg" medium="image">
			<media:title type="html">JavaScript Modal Windows</media:title>
		</media:content>
	</item>
		<item>
		<title>60 Useful Online Generators for Designers</title>
		<link>http://qeqnes.wordpress.com/2011/03/17/60-useful-online-generators-for-designers/</link>
		<comments>http://qeqnes.wordpress.com/2011/03/17/60-useful-online-generators-for-designers/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 22:25:54 +0000</pubDate>
		<dc:creator>qeqnes</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[Best of]]></category>

		<guid isPermaLink="false">http://qeqnes.wordpress.com/?p=683</guid>
		<description><![CDATA[Today’s competitive market makes it necessary to stay updated in all the dimensions in designing industry and designers need all the latest software to be in the top. But purchasing software or downloading a huge one may not be in the top priority especially if it is going to be used only after a trial. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=683&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today’s competitive market makes it necessary to stay updated in all  the dimensions in designing industry and designers need all the latest  software to be in the top. But purchasing software or downloading a huge  one may not be in the top priority especially if it is going to be used  only after a trial. In such cases <strong>online generators</strong> can be of great help which do the necessary job and some tools don’t have to be downloaded also.</p>
<p>A lot goes in designing the backgrounds with different textures and  patterns, choosing the right colors and a lot other factors.  Not only  the backgrounds but buttons, logos, scrollbars, texts, and a lot is  important when it comes in designing and it does involve a lot of  creativity and time to zero in the final one. Not to worry, these tools  are not to compromise on the creative aspect but are developed keeping  the time factor in mind.<br />
<span id="more-683"></span></p>
<h1>Useful Online Generators for Designers</h1>
<p>Here is a presentation of such online generators for designers which  are quite small, simple to use and produce excellent results with  maximum combinations in a fraction of time. No installation or download  required to use these tools, and the results can be saved for your  purpose.</p>
<div>
<h4><span style="text-decoration:underline;">256 Pixels</span></h4>
<p><a rel="external nofollow" href="http://www.256pixels.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-01.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>256 Pixels creates favicon designs where you can upload a picture  or color the pixels by choosing any color and save it or create a  favicon for any new challenges posed by the website.</p>
<p><a rel="external nofollow" href="http://www.256pixels.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">80 x 15 brilliant Button Maker</span></h4>
<p><a rel="external nofollow" href="http://www.lucazappa.com/brilliantMaker/buttonImage.php" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-02.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Create 80 x 15 dimension buttons with 80 x 15 brilliant button  maker where you can customise by setting the borders, left and right  boxes and uploading the images separately for left and right boxes.</p>
<p><a rel="external nofollow" href="http://www.lucazappa.com/brilliantMaker/buttonImage.php" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">AJAX loading GIF generator</span></h4>
<p><a rel="external nofollow" href="http://www.webscriptlab.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-03.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>AJAX Loading GIF generator create your AJAX loading GIF image by  defining the indicator type, background color, foreground color and  controlling the speed of the loading indicator.</p>
<p><a rel="external nofollow" href="http://www.webscriptlab.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">AJAX Info</span></h4>
<p><a rel="external nofollow" href="http://www.ajaxload.info/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-04.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Create your own AJAX loader icon by selecting the type of  indicator, background and foreground color and clicking in ‘Generate  It’.</p>
<p><a rel="external nofollow" href="http://www.ajaxload.info/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Background Maker</span></h4>
<p><a rel="external nofollow" href="http://bgmaker.ventdaval.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-05.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>A unique background maker where you choose the colors from the  pixelised tile which depicts the tiled background and fill each tile or  pixel with a different color to watch it live in the background as a  pattern.</p>
<p><a rel="external nofollow" href="http://bgmaker.ventdaval.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Background Patterns</span></h4>
<p><a rel="external nofollow" href="http://bgpatterns.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-06.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Tiled background designer is quite an interesting tool to create  tied backgrounds which allows you to change the background color, size  of the canvas, image to be displayed and also rotated your tiled design  as per your design.</p>
<p><a rel="external nofollow" href="http://bgpatterns.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Badges</span></h4>
<p><a rel="external nofollow" href="http://www.web20badges.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-07.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Web 2.0 Badges are used to display ‘Beta Message’ on your website  or emphasize a promotion. They can be created in various round or  square or any kind corners in vibrant colors by changing its angle, X  and Y coordinates.</p>
<p><a rel="external nofollow" href="http://www.web20badges.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Barcode Generator</span></h4>
<p><a rel="external nofollow" href="http://www.barcodesinc.com/generator/index.php" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-08.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Barcode label printer is an online barcode generator where a CGI  form is used to enter a text and generate a printable and scannable  barcode in Interleaved 2 of 5, Code 39, Code 128 A, B, or C symbologies.</p>
<p><a rel="external nofollow" href="http://www.barcodesinc.com/generator/index.php" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Buttonator</span></h4>
<p><a rel="external nofollow" href="http://www.buttonator.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-09.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Buttonator is a free web button maker to create your own  personalized web buttons. You can customise the button’s font, color,  style and apply different effects for your button.</p>
<p><a rel="external nofollow" href="http://www.buttonator.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Color Combos</span></h4>
<p><a rel="external nofollow" href="http://www.colorcombos.com/combotester.html" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-10.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Find the perfect combination of colors for your project through  Combo Tester which allows web developers to see how different color  combinations work together on the screen and Combo Library contains  hundreds of color swatches with their hex values.</p>
<p><a rel="external nofollow" href="http://www.colorcombos.com/combotester.html" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Color Mixer</span></h4>
<p><a rel="external nofollow" href="http://www.colortools.net/color_mixer.html" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-11.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Create a new color by mixing colors, Color /mixers is a fun tool  to fine tune and fiddle with a color with editable RGB colors and  adjustable lightness and darkness.</p>
<p><a rel="external nofollow" href="http://www.colortools.net/color_mixer.html" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Color Palette</span></h4>
<p><a rel="external nofollow" href="http://slayeroffice.com/tools/color_palette/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-12.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Creates 10 shades of the base color at different degrees of  opacity starting from top row overa white background and ending at  bottom over black.</p>
<p><a rel="external nofollow" href="http://slayeroffice.com/tools/color_palette/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Color Palette Generator</span></h4>
<p><a rel="external nofollow" href="http://jrm.cc/color-palette-generator/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-13.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Generates a color palette for any image uploaded or select an  image from the pre-defined set , define the grid size and method and  your color palette is generated.</p>
<p><a rel="external nofollow" href="http://jrm.cc/color-palette-generator/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Contact Form Generator</span></h4>
<p><a rel="external nofollow" href="http://www.tele-pro.co.uk/scripts/contact_form/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-14.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Contact Form Generator is used to create form to email scripts  for your ASP, PHP or Perl website with no programming. Just enter the  email header fields like email from, email to and subject to create the  form.</p>
<p><a rel="external nofollow" href="http://www.tele-pro.co.uk/scripts/contact_form/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Corner Shop</span></h4>
<p><a rel="external nofollow" href="http://wigflip.com/cornershop/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-15.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Corner Shop is used for create rounded corner graphics for  website designing. Enter the Box and Page background with corner radius  and set the transparency and ‘Create Graphics’ where you will get four  images, CSS and HTML code for creating any number of round corner boxes.</p>
<p><a rel="external nofollow" href="http://wigflip.com/cornershop/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Create Graph</span></h4>
<p><a rel="external nofollow" href="http://nces.ed.gov/nceskids/createagraph/default.aspx" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-16.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Create a graph as bar graph, line graph, pie chart etc.. by  selecting the default graph type and defingin the design such as style,  shading, data set ie number of fields, data labels and your graph is  created.</p>
<p><a rel="external nofollow" href="http://nces.ed.gov/nceskids/createagraph/default.aspx" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">CSS Button and Text Field Generator</span></h4>
<p><a rel="external nofollow" href="http://www.devdude.com/tools/css/button_text/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-17.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Generate a button or text field by CSS Button and Text field  generator by filling the fields for CSS object like object type and  class name and CSS object style where the border and text settings are  defined.</p>
<p><a rel="external nofollow" href="http://www.devdude.com/tools/css/button_text/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">CSS Form Layout Code Generator</span></h4>
<p><a rel="external nofollow" href="http://www.maketemplate.com/form/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-18.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>CSS Form Layout Code Generator generates colorful box layouts for forms in table less code.</p>
<p><a rel="external nofollow" href="http://www.maketemplate.com/form/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">CSS Font and Text Style Wizard</span></h4>
<p><a rel="external nofollow" href="http://www.somacon.com/p334.php" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-19.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>CSS Font and Text Style wizard is used to compare fonts and text  style in a fun way on screen where font family, style, variant, size and  weight can be altered, and also the word and letter spacing, text  alignment, indentation and other options can be altered.</p>
<p><a rel="external nofollow" href="http://www.somacon.com/p334.php" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">CSS Layout Generator</span></h4>
<p><a rel="external nofollow" href="http://csscreator.com/version2/pagelayout.php" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-20.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>CSS Layout Generator creates a fluid or fixed width floated  column layout, with up to 3 columns with header and footer where the  values can be in pixels, ems or percentage.</p>
<p><a rel="external nofollow" href="http://csscreator.com/version2/pagelayout.php" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">CSS Menu Generator</span></h4>
<p><a rel="external nofollow" href="http://www.webmaster-toolkit.com/css-menu-generator.shtml" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-21.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>CSS menu Generator generates CSS and HTML code required to  produce a text based set of navigation buttons. A CSS menu gives  effective text links with a better look than the standard text links.</p>
<p><a rel="external nofollow" href="http://www.webmaster-toolkit.com/css-menu-generator.shtml" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">CSS Optimiser</span></h4>
<p><a rel="external nofollow" href="http://www.cssoptimiser.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-22.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>CSS optimiser is a web tool to reduce the file size of cascading  style sheets. Enter the CSS either by an URL or via an upload of file.</p>
<p><a rel="external nofollow" href="http://www.cssoptimiser.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">CSS Scrollbar</span></h4>
<p><a rel="external nofollow" href="http://www.iconico.com/CSSScrollbar/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-23.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>CSS Scrollbar color changer changes the color of your HTML  scrollbars for Internet Explorer. Colors can be selected from a color  picker or entered manually in Hex format, also pre built styles are  available.</p>
<p><a rel="external nofollow" href="http://www.iconico.com/CSSScrollbar/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">CSS Tab Designer</span></h4>
<p><a rel="external nofollow" href="http://www.highdots.com/css-tab-designer/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-24.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>CSS Tab Designer helps you design CSS based lists and tabs  without any coding. You can design your list quickly or choose from a  variety of styles / colors which generates strict XHTML compliant code.</p>
<p><a rel="external nofollow" href="http://www.highdots.com/css-tab-designer/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Dotter</span></h4>
<p><a rel="external nofollow" href="http://www.pixelknete.de/dotter/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-25.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Dotter is a dotted background generator to create backgrounds  with dots and background of either 2 colors or single colors. Set the  height and color of dots and background and click OK.</p>
<p><a rel="external nofollow" href="http://www.pixelknete.de/dotter/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Email Icon Generator</span></h4>
<p><a rel="external nofollow" href="http://services.nexodyne.com/email/index.php" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-26.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Generate your email address For GMail, Hotmail, MSN, Yahoo!, AOL  and many more into image which can prevent your email from spam as it  displays an image rather than text.</p>
<p><a rel="external nofollow" href="http://services.nexodyne.com/email/index.php" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Email Icon and Signature Generator</span></h4>
<p><a rel="external nofollow" href="http://www.needasig.com/iolndex.php" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-27.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Create your Email signature or custom signature in just two steps  by defining the image and text and changing the font and color of the  text.</p>
<p><a rel="external nofollow" href="http://www.needasig.com/iolndex.php" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Email Riddler</span></h4>
<p><a rel="external nofollow" href="http://www.dynamicdrive.com/emailriddler/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-28.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Email Riddler is used to encrypt and transform your email address  into a series of numbers while displaying it which makes it safe as  spammers cannot decode it.</p>
<p><a rel="external nofollow" href="http://www.dynamicdrive.com/emailriddler/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Error Message Generator</span></h4>
<p><a rel="external nofollow" href="http://atom.smasher.org/error/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-29.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Generate customised error boxes through Error Message Generator  by selecting the icon, entering the text and defining the buttons.</p>
<p><a rel="external nofollow" href="http://atom.smasher.org/error/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Favicon</span></h4>
<p><a rel="external nofollow" href="http://www.favicon.cc/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-30.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Favicon is a tool to create favicon.ico icons, that get displayed  in the web server directory, just choose a color and click on the  squares and paint your logo and then download it.</p>
<p><a rel="external nofollow" href="http://www.favicon.cc/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Favicon Generator</span></h4>
<p><a rel="external nofollow" href="http://www.webscriptlab.com/favicongenerator.php" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-31.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Favicon Generator creates favorites icon for your site where you  can upload an image and convert it into standard 16 x 16 favicon.ico and  generate the icons or download them.</p>
<p><a rel="external nofollow" href="http://www.webscriptlab.com/favicongenerator.php" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Flash Buttons</span></h4>
<p><a rel="external nofollow" href="http://www.flashbuttons.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-32.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Create easy and fast navigation menus by instantly adding your text and links to any of the animated buttons.</p>
<p><a rel="external nofollow" href="http://www.flashbuttons.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Flash Movie Maker</span></h4>
<p><a rel="external nofollow" href="http://www.toufee.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-33.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Create flash movies and slide shows without any knowledge of  Flash for your website with Toufee’s flash maker which has more than 127  effects, 75 transitions, 23 filter and more which can be applied  instantly to your flash movie in a single click.</p>
<p><a rel="external nofollow" href="http://www.toufee.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Flash Embedder</span></h4>
<p><a rel="external nofollow" href="http://www.echoecho.com/toolflashembedder.htm" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-34.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Flash Embedder tool easily embeds flash movies into HTML which done be done using the publish option in Flash program.</p>
<p><a rel="external nofollow" href="http://www.echoecho.com/toolflashembedder.htm" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Gradient Maker</span></h4>
<p><a rel="external nofollow" href="http://secretgeek.net/GradientMaker.asp" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-35.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Enter the start and End colors by selecting from the color  picker, define the length and direction for the gradients and generate  the gradient background and right click to save the background.</p>
<p><a rel="external nofollow" href="http://secretgeek.net/GradientMaker.asp" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Gradient Image Maker</span></h4>
<p><a rel="external nofollow" href="http://www.ogim.4u2ges.com/gradient-image-maker.asp" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-36.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Gradient Maker is used to generate gradient images ie the images  which gradually change color. Define the Gradient type, orientation,  width, color and generate the gradients which can be save as backgrounds  too.</p>
<p><a rel="external nofollow" href="http://www.ogim.4u2ges.com/gradient-image-maker.asp" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">HTML and CSS Table Border Style Wizard</span></h4>
<p><a rel="external nofollow" href="http://www.somacon.com/p141.php" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-37.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Select between different border width, style, color, and  background-color options where a sample table is rendered in a frame,  The TD and TH tags define the table or the frame which can also be  defined.</p>
<p><a rel="external nofollow" href="http://www.somacon.com/p141.php" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Wufoo HTML Form builder</span></h4>
<p><a rel="external nofollow" href="http://wufoo.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-38.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>WuFoo’s HTML From builder helps to create contact forms, online  surveys and invitations , registrations and online payments where you  don’t need any programming skills.</p>
<p><a rel="external nofollow" href="http://wufoo.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">HTML – kit Favicon</span></h4>
<p><a rel="external nofollow" href="http://www.html-kit.com/favicon/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-39.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Favicon from Pics is a tool to create still and animated icons or  favicons from regular images which are used for browser address, bars,  page tabs and bookmarks. You can also add animation and scrolling text.  Also create exclusive icons iPhone, iPod Touch and iPad icons for your  Apple gadgets.</p>
<p><a rel="external nofollow" href="http://www.html-kit.com/favicon/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Image Tool</span></h4>
<p><a rel="external nofollow" href="http://www.simwebsol.com/ImageTool/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-40.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Web 2.0 Free logo generator creates logo in simple steps, Define  your own text, colors for background and foreground, size of the font  and also you could add any symbol if u want it to be displayed along  with the logo.</p>
<p><a rel="external nofollow" href="http://www.simwebsol.com/ImageTool/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Logo Creator</span></h4>
<p><a rel="external nofollow" href="http://creatr.cc/creatr/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-41.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Web 2.0 Logo Creator creates your logo by defining six options of  font, logo text, badge, mirror, background, resize and your customised  logo is created. Also you can choose from the defined presets.</p>
<p><a rel="external nofollow" href="http://creatr.cc/creatr/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Loren Ipsum</span></h4>
<p><a rel="external nofollow" href="http://www.lipsum.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-42.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Loren Ipsum or the standard dummy text for printing and  typesetting industry which is used as default model text for many  desktop publishing packages and web page editors can be generated by  defining the number of paragraphs / words/ bytes / lists here.</p>
<p><a rel="external nofollow" href="http://www.lipsum.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Loren Ipsum Generator</span></h4>
<p><a rel="external nofollow" href="http://www.lorem-ipsum.info/generator3" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-43.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Dont want to start with the standard ‘Loren Lipsum’, Generator 3  can do your job where you can select the language, define the number of  paragraph and words and generate the text as HTML or plain text file.</p>
<p><a rel="external nofollow" href="http://www.lorem-ipsum.info/generator3" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Patterns</span></h4>
<p><a rel="external nofollow" href="http://www.colourlovers.com/patterns/add" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-44.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Design a unique pattern of your choice by selecting any style and  coloring it wherever you like from the color swatch table or create  your own pattern.</p>
<p><a rel="external nofollow" href="http://www.colourlovers.com/patterns/add" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Pattern Cooler</span></h4>
<p><a rel="external nofollow" href="http://www.patterncooler.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-45.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>A free seamless pattern background design resource where you can  add your own colors to contemporary and retro pattern designs, or browse  from thousands of pre-colored patterns in its library. All the artworks  on this site can be freely used for your purposes.</p>
<p><a rel="external nofollow" href="http://www.patterncooler.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">PHP Form Mail Generator</span></h4>
<p><a rel="external nofollow" href="http://phpfmg.sourceforge.net/home.php" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-46.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>PHP From Mail Generator is a tool to create ready to use web  forms with unlimited standard form fields and user input validation,  then preview and test your form and download it use it.</p>
<p><a rel="external nofollow" href="http://phpfmg.sourceforge.net/home.php" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Record</span></h4>
<p><a rel="external nofollow" href="http://www.says-it.com/record/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-47.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Vinyl Record Generator is used to create a gramophone record  where you have to just enter some text and click ‘Go’ where a picture of  a record will be generated which can be emailed, downloaded or shared.</p>
<p><a rel="external nofollow" href="http://www.says-it.com/record/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Rounded Corners</span></h4>
<p><a rel="external nofollow" href="http://www.roundedcornr.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-48.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Generates a basic box with rounded corners. Creates four image  files and the necessary HTML and CSS code to put rounded corners around  your content.</p>
<p><a rel="external nofollow" href="http://www.roundedcornr.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">RSS Buttons</span></h4>
<p><a rel="external nofollow" href="http://www.rssbuttons.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-49.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Creates an RSS button which can be a small image banner / badge /  button / sticker in order to keep the blogs neat and consistent. Create  your own buttons by defining your options and your 80 x 15 RSS button  is created.</p>
<p><a rel="external nofollow" href="http://www.rssbuttons.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Sign Generator</span></h4>
<p><a rel="external nofollow" href="http://www.signgenerator.org/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-50.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>A sign generator is an online widget used to change the letters  in various photos of signs like road signs, people holding signs, to  give it a personal touch of yours. Just choose a template and change the  message.</p>
<p><a rel="external nofollow" href="http://www.signgenerator.org/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Strip Generator</span></h4>
<p><a rel="external nofollow" href="http://stripgenerator.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-51.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Strip generator is used to generate cartoons online which is a  flash based application where you set up the frames, drage and drop your  characters, add items and text balloons for them and publish to  generate your comic strip.</p>
<p><a rel="external nofollow" href="http://stripgenerator.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Striped Backgrounds</span></h4>
<p><a rel="external nofollow" href="http://stripedbgs.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-52.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Striped backgrounds generates free background stripes randomly or  according to your choice where you can select the resolution for  widescreen, full screen, mobiles etc and save the background.</p>
<p><a rel="external nofollow" href="http://stripedbgs.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">StripeMania</span></h4>
<p><a rel="external nofollow" href="http://www.stripemania.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-53.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>A free seamless pattern background design resource where you can  add your own colors to contemporary and retro pattern designs, or browse  from thousands of pre-colored patterns in its library. All the artworks  on this site can be freely used for your purposes.</p>
<p><a rel="external nofollow" href="http://www.stripemania.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Stripe Generator</span></h4>
<p><a rel="external nofollow" href="http://www.stripegenerator.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-54.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Generate seamless stripe textures to create random stripe  patterns in any direction or any color using Stripe Generator where  custom stripes can be created by changing the stripe size, spacing,  orientation, stripe color, background color and style and spacing.</p>
<p><a rel="external nofollow" href="http://www.stripegenerator.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">STYLr</span></h4>
<p><a rel="external nofollow" href="http://web2.0stylr.com/stylr.aspx" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-55.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Web 2.0 STYLr creates your logo just by entering your options and  the logo is created. Also, Here you can sign your masterpiece too.</p>
<p><a rel="external nofollow" href="http://web2.0stylr.com/stylr.aspx" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Tartanmaker</span></h4>
<p><a rel="external nofollow" href="http://www.tartanmaker.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-56.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Tartan Maker lets you set 3 different colors of bands where the  color and width as well as the orientation of the bands can be changed  according to your wish.</p>
<p><a rel="external nofollow" href="http://www.tartanmaker.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Text Generator</span></h4>
<p><a rel="external nofollow" href="http://www.malevole.com/mv/misc/text/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-57.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>A text generator other than Loren Ipsum where you just have to  specify the number of paragraphs and click on ‘Generate’ to get the  results.</p>
<p><a rel="external nofollow" href="http://www.malevole.com/mv/misc/text/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Typetester</span></h4>
<p><a rel="external nofollow" href="http://www.typetester.org/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-58.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>Typetester is used to compare three different type of fonts on  screen making your designing job easier , Just specify the  specifications and compare them.</p>
<p><a rel="external nofollow" href="http://www.typetester.org/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">Web Form Generator</span></h4>
<p><a rel="external nofollow" href="http://www.webformfactory.com/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-59.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>The web form generator from Web Form Factory automatically generates he necessary backend code to tie your form to a database.</p>
<p><a rel="external nofollow" href="http://www.webformfactory.com/" target="_blank">Official Link</a></p>
<h4><span style="text-decoration:underline;">XML Charts</span></h4>
<p><a rel="external nofollow" href="http://www.maani.us/xml_charts/" target="_blank"><img title="InstantShift - Useful Online Generators for Designers" src="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-60.jpg" alt="InstantShift - Useful Online Generators for Designers" width="560" /></a></p>
<p>XML /SWF charts are used to create attractive graphs and charts  from XML data, Create a source either manually or generate dynamically  then pass it to the XML chart’s flash file.</p>
<p><a rel="external nofollow" href="http://www.maani.us/xml_charts/" target="_blank">Official Link</a></p>
</div>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/qeqnes.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/qeqnes.wordpress.com/683/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/qeqnes.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/qeqnes.wordpress.com/683/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/qeqnes.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/qeqnes.wordpress.com/683/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/qeqnes.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/qeqnes.wordpress.com/683/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/qeqnes.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/qeqnes.wordpress.com/683/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/qeqnes.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/qeqnes.wordpress.com/683/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/qeqnes.wordpress.com/683/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/qeqnes.wordpress.com/683/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=qeqnes.wordpress.com&amp;blog=11675226&amp;post=683&amp;subd=qeqnes&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://qeqnes.wordpress.com/2011/03/17/60-useful-online-generators-for-designers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec8823c54b0918bd8d7cef3014fbf74?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">qeqnes</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-01.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-02.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-03.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-04.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-05.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-06.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-07.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-08.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-09.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-10.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-11.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-12.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-13.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-14.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-15.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-16.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-17.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-18.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-19.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-20.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-21.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-22.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-23.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-24.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-25.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-26.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-27.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-28.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-29.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-30.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-31.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-32.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-33.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-34.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-35.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-36.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-37.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-38.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-39.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-40.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-41.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-42.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-43.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-44.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-45.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-46.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-47.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-48.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-49.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-50.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-51.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-52.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-53.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-54.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-55.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-56.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-57.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-58.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-59.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>

		<media:content url="http://www.instantshift.com/wp-content/uploads/2011/03/uogfd-60.jpg" medium="image">
			<media:title type="html">InstantShift - Useful Online Generators for Designers</media:title>
		</media:content>
	</item>
	</channel>
</rss>
