<?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/"
	>

<channel>
	<title>Design Reviver</title>
	<atom:link href="http://designreviver.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://designreviver.com</link>
	<description></description>
	<lastBuildDate>Tue, 09 Feb 2010 08:39:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Week in Review: Design Reviver Answers</title>
		<link>http://designreviver.com/general/week-in-review-design-reviver-answers/</link>
		<comments>http://designreviver.com/general/week-in-review-design-reviver-answers/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 12:12:25 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Answers]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[question]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=5079</guid>
		<description><![CDATA[It has now been two weeks since our launch of Design Reviver Answers, and we couldn&#8217;t be happier. Even more members, yet more visitors, an abundance of questions and a hell of a lot more answers &#8211; we really are building a great web design community portal!

We felt it would be nice to share with [...]]]></description>
			<content:encoded><![CDATA[<p>It has now been two weeks since our launch of <a>Design Reviver Answers</a>, and we couldn&#8217;t be happier. Even more members, yet more visitors, an abundance of questions and a hell of a lot more answers &#8211; we really are building a great web design community portal!</p>
<p><span id="more-5079"></span></p>
<p>We felt it would be nice to share with you our favorite Questions and Answers, and ask you: &#8220;<em><a>Have you asked a question yet?</a></em>&#8220;</p>
<h4><a href="http://answers.designreviver.com/383">Would I Possibly Be Able To Know What Language My Websites Visitors Use?</a></h4>
<p>This question was asked by <a href="http://answers.designreviver.com/member/350">Rollback999</a>:</p>
<p><strong>Answer from <a href="http://answers.designreviver.com/member/352">Themans</a>?:</strong></p>
<blockquote><p>&#8220;Sure! This is mostly used for detection and then translation of a webpage.</p>
<p>Function getPreferredLanguage() {<br />
    $langs = array();<br />
    if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {<br />
        // break up string into pieces (languages and q factors)<br />
        preg_match_all(&#8216;/([a-z]{1,8}(-[a-z]{1,8})?)s*(;s*qs*=s*(1<br />
0.[0-9]+))?/i&#8217;,<br />
                $_SERVER['HTTP_ACCEPT_LANGUAGE'], $lang_parse);<br />
        if (count($lang_parse[1])) {<br />
            // create a list like &#8220;en&#8221; =&gt; 0.8<br />
            $langs = array_combine($lang_parse[1], $lang_parse[4]);<br />
            // set default to 1 for any without q factor<br />
            foreach ($langs as $lang =&gt; $val) {<br />
                if ($val === &#8221;) $langs[$lang] = 1;<br />
            }<br />
            // sort list based on value<br />
            arsort($langs, SORT_NUMERIC);<br />
        }<br />
    }<br />
    //extract most important (first)<br />
    foreach ($langs as $lang =&gt; $val) { break; }<br />
    //if complex language simplify it<br />
    if (stristr($lang,&#8221;-&#8221;)) {$tmp = explode(&#8220;-&#8221;,$lang); $lang = $tmp[0]; }<br />
    return $lang;<br />
}</p>
<p>Source: <a href="http://www.barattalo.it">www.barattalo.it</a>&#8220;</p></blockquote>
<h4><a href="http://answers.designreviver.com/379">How Can I Redirect Mobile Users?</a></h4>
<p>This question was asked by <a href="http://answers.designreviver.com/member/195">Heri Setiawan</a>:</p>
<p><strong>Answer from <a href="http://answers.designreviver.com/member/54">Joel Reyes</a>?:</strong></p>
<blockquote><p>&#8220;If you&#8217;re looking to redirect users that visit your site on a mobile platform then you can embed this within your <strong>html file</strong>. It&#8217;s a very simple <strong>JavaSript code</strong>.</p>
<p>&lt;!&#8211;<br />
if (screen.width </p>
<p>All you have to do is simple replace the mobilevs.php with the location of your sites mobile version.&#8221;</p></blockquote>
<p><strong>Answer from <a href="http://answers.designreviver.com/member/54">Heri Setiawan</a>?:</strong></p>
<blockquote><p>&#8220;Hi joel. That&#8217;s nice trick. But i recommend to use this PHP mobile detection, as it can be used to detect any mobile platform, like Windows Mobile, Blackberry, Opera Mini, Android, Iphone, etc.</p>
<p>Found it <a href="http://bavotasan.com/tidbits/php-code-to-redirect-mobilehandheld-users/">here</a>, and official site <a href="http://detectmobilebrowsers.mobi/">here</a>.&#8221;</p></blockquote>
<h4><a href="http://answers.designreviver.com/366">How Do I Protect My Email Addresses On My Blog?</a></h4>
<p>This question was asked by <a href="http://answers.designreviver.com/member/352">Themans</a>:</p>
<p><strong>Answer from <a href="http://answers.designreviver.com/member/351">Autobots</a>?:</strong></p>
<blockquote><p>&#8220;If you&#8217;re trying to run a more secure enviornment by protecting/encrypting emails then you can use the following script to protect against bots and spyders.</p>
<p>Code:<br />
function hide_email($email) { $character_set = &#8216;+-.0123456789@ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz&#8217;; $key = str_shuffle($character_set); $cipher_text = &#8221;; $id = &#8216;e&#8217;.rand(1,999999999); for ($i=0;$i&#8221;+d+&#8221;"&#8216;; $script = &#8220;eval(&#8220;&#8221;.str_replace(array(&#8220;\&#8221;,&#8217;&#8221;&#8216;),array(&#8220;\\&#8221;,&#8217;&#8221;&#8216;), $script).&#8221;")&#8221;; $script = &#8221;; return &#8216;[javascript protected email address]&#8216;.$script; }</p>
<p>Source: <a href="http://www.maurits.vdschee.nl">www.maurits.vdschee.nl</a>&#8220;</p></blockquote>
<h4><a href="http://answers.designreviver.com/362">How Can I Customize My UL List?</a></h4>
<p>This question was asked by <a href="http://answers.designreviver.com/member/352">Themans</a>:</p>
<blockquote><p>&#8220;UL Lists are for the most part the same, there is rarely much you can do when it comes to customizations beyond the links, text color, etc. However, here&#8217;s a script that will create a simple slide-out effect for your UL lists. Enjoy!</p>
<p>Create an ID section in your CSS. We then place the following as your HTML:</p>
<ul>
<li>Playstation | <a href="#">Hide</a></li>
<li>iPod Touch | <a href="#">Hide</a></li>
<li>XBOX 360 | <a href="#">Hide</a></li>
<li>Nokia N97| <a href="#">Hide</a></li>
<li>Dell Inspiron | <a href="#">Hide</a></li>
</ul>
<p>Now we need some JavaScript code to allow the Slide-Out effect to take life:</p>
<p>window.addEvent(&#8216;domready&#8217;, function() {<br />
/* From the list with ID myList, for each li element of the list&#8230;: */<br />
$(&#8216;myList&#8217;).getElements(&#8216;li&#8217;).each(function(e){<br />
/* &#8230;get the ID of the selected item */<br />
e.getElement(&#8216;a&#8217;).addEvent(&#8216;click&#8217;, function(listID){<br />
/* Enable Fx.Slide effect for the selected item */<br />
var list_element = new Fx.Slide(listID);<br />
/* Enable slideOut() effect */<br />
list_element.slideOut()<br />
}.pass(e.id));<br />
});<br />
});</p>
<p>Source: <a href="http://woork.blogspot.com">woork.blogspot.com</a>&#8220;</p></blockquote>
<h4><a href="http://answers.designreviver.com/448">What Books Do You Recommend For A Beginner To Kick Off The Start Of Learning Web Design?</a></h4>
<p>This question was asked by <a href="http://answers.designreviver.com/member/46">Shu</a>:</p>
<p><strong>Answer from <a href="http://answers.designreviver.com/member/195">Heri Setiawan</a>:</strong></p>
<blockquote><p>&#8220;These may help beginner:</p>
<p><a href="http://www.principlesofbeautifulwebdesign.com/">Principles Of Beautiful Web Design</a><br />
<a href="http://www.adobepress.com/bookstore/product.asp?isbn=0321492021">Adobe Photoshop CS3 Classroom in a Book</a><br />
<a href="http://htmldog.com/articles/atmedia2005/">XHTML And CSS : A Web Standards Approach</a>   &lt;- this one is awesome<br />
<a href="http://www.sitepoint.com/books/cssant3/?historicredirect=cssant2">The CSS Anthology : 101 Essential Tips, Tricks &amp; Hacks</a> <br />
<a href="http://www.packtpub.com/wordpress-theme-design/book">WordPress Theme Design</a> (here is the <a href="http://www.packtpub.com/wordpress-2-8-theme-design-2nd-edition/book">newer version</a>)&#8221;</p></blockquote>
<p><strong>Answer from <a href="http://answers.designreviver.com/member/141">Cy Klassen</a>:</strong></p>
<blockquote><p>&#8220;<a href="http://www.webstandardistas.com/book/">HTML and CSS Web Standards Solutions</a>: A Web Standardista&#8217;s Approach.<br />
<a href="http://www.htmldog.com/book/">HTML Dog</a>: The Best-Practice Guide to XHTML and CSS.<br />
The Zen of CSS Design (see <a href="http://www.csszengarden.com/">css Zen Garden</a>).&#8221;</p></blockquote>
<h4>What Next for Design Reviver Answers?</h4>
<p><a href="http://answers.designreviver.com/member/158">Michael Lajlev</a> asked us this question: <strong><a href="http://answers.designreviver.com/351">Please Make An Option For Showing If A Topic Is Resolved And How Many Comments Is Made To A Q?</a></strong>. Its a fair question and this is our answer:</p>
<blockquote><p>&#8220;Thanks for the suggestions Michael, we will be adding the number of answers onto the question pages shortly. At the moment we don&#8217;t have any plans to close questions (and mark them resolved) I know some Q&amp;A sites like yahoo answers have that system so it might be something for us to add in the future.&#8221;</p></blockquote>
<p>If anyone else has any suggestions or ideas on how we can improve the site, we would love to hear from you.</p>
<p>Thanks again, firstly to everyone who asked a question, but most importantly thanks to everyone that took the time to offer always helpful and useful answers.</p>
]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/general/week-in-review-design-reviver-answers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 Web Design Articles Worth Reading</title>
		<link>http://designreviver.com/general/5-web-design-articles-worth-reading/</link>
		<comments>http://designreviver.com/general/5-web-design-articles-worth-reading/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 12:30:59 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=5062</guid>
		<description><![CDATA[Web design is all about learning new techniques, discovering new and useful resources and, ultimately, it is about pushing the web experience forward. There is a lot of responsibility on the shoulders of all web designers and a lot of pressure trying to keeping up with it all &#8211; Everyday there is a new technique [...]]]></description>
			<content:encoded><![CDATA[<p>Web design is all about learning new techniques, discovering new and useful resources and, ultimately, it is about pushing the web experience forward. There is a lot of responsibility on the shoulders of all web designers and a lot of pressure trying to keeping up with it all &#8211; Everyday there is a new technique for this, a new technique for that, how can you possibly keep up?</p>
<p><span id="more-5062"></span></p>
<p>Today&#8217;s news does not answer that question, what it does is give you an opportunity to break away from the norm, to kick back and enjoy this collection of not resourceful, but insightful articles on web design for web designers. No work required, just good reading!</p>
<h4><a href="http://www.webdesignerdepot.com/2010/02/how-to-grow-as-a-web-designer/">How to Grow as a Web Designer</a></h4>
<p><a href="http://www.webdesignerdepot.com/2010/02/how-to-grow-as-a-web-designer/"><img src="http://designreviver.com/wp-content/uploads/2010/02/webreading1.jpg" alt="Web Design Reading" /></a></p>
<p>Getting in a rut is often the result of not staying up to date with the latest trends and technologies in the industry. Even if we do stay up to date, many of us at one time or another feel anxious about whether we’re advancing.</p>
<p>If you’re at a firm, you may be working towards a raise or promotion, or perhaps you’re thinking of jumping ship to a bigger and better company.</p>
<p>For the freelancers out there, you of course determine your own destiny; but far too often our careers feel stagnant, too.</p>
<p>This article goes over some insightful ways to reignite your growth as a web designer.</p>
<p><a href="http://www.webdesignerdepot.com/2010/02/how-to-grow-as-a-web-designer/">How to Grow as a Web Designer</a></p>
<h4><a href="http://webdesignledger.com/tips/the-principle-of-contrast-in-web-design">The Principle of Contrast in Web Design</a></h4>
<p><a href="http://webdesignledger.com/tips/the-principle-of-contrast-in-web-design"><img src="http://designreviver.com/wp-content/uploads/2010/02/webreading2.jpg" alt="Web Design Reading" /></a></p>
<p>A web design is made of many different elements, each having varying levels of importance and some demanding prominence over others. </p>
<p>Some elements share a relationship, while others are not related at all. The tricky part is being able to communicate this visually and effectively. This is where the principle of contrast comes into play.</p>
<p><a href="http://webdesignledger.com/tips/the-principle-of-contrast-in-web-design">The Principle of Contrast in Web Design</a></p>
<h4><a href="http://www.smashingmagazine.com/2010/01/29/better-user-experience-using-storytelling-part-one/">Better User Experience With Storytelling</a></h4>
<p><a href="http://www.smashingmagazine.com/2010/01/29/better-user-experience-using-storytelling-part-one/"><img src="http://designreviver.com/wp-content/uploads/2010/02/webreading3.jpg" alt="Web Design Reading" /></a></p>
<p>Today we communicate a bit differently from days gone by. Our information is fragmented across various mass-media channels and delivered through ever-changing technology. It has become watered down, cloned, and is churned out quickly in 140-character blurbs. We’ve lost that personal touch where we find an emotional connection that makes us care.</p>
<p>Using storytelling, however, we can pull these fragments together into a common thread. We can connect as real people, not just computers. In this article you’ll explore how user experience professionals and designers are using storytelling to create compelling experiences that build human connections.</p>
<p><a href="http://www.smashingmagazine.com/2010/01/29/better-user-experience-using-storytelling-part-one/">Better User Experience With Storytelling</a></p>
<h4><a href="http://www.instantshift.com/2010/01/23/user-experience-of-the-real-time-web/">User Experience Of The Real Time Web</a></h4>
<p><a href="http://www.instantshift.com/2010/01/23/user-experience-of-the-real-time-web/"><img src="http://designreviver.com/wp-content/uploads/2010/02/webreading4.jpg" alt="Web Design Reading" /></a></p>
<p>There has been much talk about all of the businesses that are sprouting up in regards to the real-time web. But, it can be confusing for the user because there is so much out there. They key for users is to first recognize what they are looking to do on the real time web. </p>
<p>Once that is known, it is important to know where to go to get the information that is being looked for. The rewards can be plentiful as the real time web offers outstanding resources once the user becomes experienced with how to use it.</p>
<p><a href="http://www.instantshift.com/2010/01/23/user-experience-of-the-real-time-web/">User Experience Of The Real Time Web</a></p>
<h4><a href="http://designshack.co.uk/articles/business-articles/how-to-make-money-as-a-freelance-designer">How to Make Money as a Freelance Designer</a></h4>
<p><a href="http://designshack.co.uk/articles/business-articles/how-to-make-money-as-a-freelance-designer"><img src="http://designreviver.com/wp-content/uploads/2010/02/webreading5.jpg" alt="Web Design Reading" /></a></p>
<p>Despite the glamorous reputation, freelance design is no walk in the park. It takes an incredible work ethic, significant entrepreneurial prowess, and a little bit of insanity to pull it off effectively. This article will discuss how to effectively make a living as a freelancer (designer or otherwise).</p>
<p><a href="http://designshack.co.uk/articles/business-articles/how-to-make-money-as-a-freelance-designer">How to Make Money as a Freelance Designer</a></p>
<p>By Paul Andrew (<a href="http://speckyboy.com">Speckyboy</a> and <a href="http://twitter.com/speckyboy">speckyboy@twitter</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/general/5-web-design-articles-worth-reading/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>5 Practical Ways for Using Ajax</title>
		<link>http://designreviver.com/tips/5-practical-ways-using-ajax/</link>
		<comments>http://designreviver.com/tips/5-practical-ways-using-ajax/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 08:57:55 +0000</pubDate>
		<dc:creator>Joel Reyes</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[ajax]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=5042</guid>
		<description><![CDATA[Over the past few years we&#8217;ve seen an increase in awareness and interactive use for AJAX, it&#8217;s becoming more and more popular and it has empowered web apps with the functionality of desktop applications.
This is Ajax, a powerful web-based scripting language that stands for Asynchronous JavaScript and XML. It&#8217;s main use is to allow an [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past few years we&#8217;ve seen an increase in awareness and interactive use for AJAX, it&#8217;s becoming more and more popular and it has empowered web apps with the functionality of desktop applications.<span id="more-5042"></span></p>
<p>This is Ajax, a powerful web-based scripting language that stands for Asynchronous JavaScript and XML. It&#8217;s main use is to allow an application to communicate with a server without having to refresh your web page.</p>
<p>Within this article we&#8217;ll discuss a variety of ways for you to embed AJAX into your web designs, we will also touch base on how they can benefit you.</p>
<h4>Web Forms and Validation</h4>
<p><img src="http://designreviver.com/wp-content/uploads/2010/02/ajaxuse-1.jpg" alt="" width="520" height="350" /></p>
<p>Working with forms for the most part can be a hassle, however, using AJAX you can develop much better web forms with several features such as validation. You can also use AJAX to set-up fields that are auto-complete and call onto a server to cross reference if a user name (i.e.) has been taken or not.</p>
<p>AJAX can be utilized for the entire process of entering and submitting details on a web form. Another common use for AJAX in web forms is the measurement of a passwords strength, or the instant-communication with a user if a field is missing certain details.</p>
<p><strong>Examples and Resources</strong></p>
<ul>
<li><a href="http://jqueryfordesigners.com/demo/ajax-validation.php">jQuery for Designers &#8211; Ajax Form Validation Example</a></li>
<li><a href="http://codehill.com/2009/04/check-if-user-name-exists-using-ajax-and-c/">Check If User Name Exists Using AJAX And C#</a></li>
<li><a href="http://www.the-art-of-web.com/javascript/ajax-validate/">Real-time Form Validation using Ajax</a></li>
<li><a href="http://articles.sitepoint.com/article/build-your-own-ajax-web-apps">Build Your Own AJAX Web Applications</a></li>
<li><a href="http://www.dustindiaz.com/ajax-contact-form/">An AJAX contact form</a></li>
</ul>
<h4>Interacting With Users Through Updates and Notification</h4>
<p><img src="http://designreviver.com/wp-content/uploads/2010/02/ajaxuse-2.jpg" alt="" width="520" height="350" /></p>
<p>AJAX can also be used to diversify the way a system or database interacts with a user. For example let&#8217;s take a look at Twitter, this social phenomenon took rise and became extremely popular not just because of the service it offers, but also due to the simple and super-functional web interface.</p>
<p>When you&#8217;re viewing tweets and you&#8217;ve been staring at the same page for a couple seconds, Twitter uses AJAX to send you a small notification of how many new tweets there are, all without having to refresh the page.</p>
<p>Where-as other scripting languages require you to refresh the page before you can view any changes. This is now called the &#8220;Reverse Ajax Technique&#8221;. You can implement this sort of functionality into your applications as well, it&#8217;s just a matter of finding the most effective way to accomplish it.</p>
<p><strong>Examples and Resources</strong></p>
<ul>
<li><a href="http://www.ajaxwith.com/Reverse-Ajax-Technique.html">Reverse Ajax Technique</a></li>
<li><a href="http://twitter.com/">Twitter</a></li>
</ul>
<h4>Instant Messaging and Chatting</h4>
<p><img src="http://designreviver.com/wp-content/uploads/2010/02/ajaxuse-3.jpg" alt="" width="520" height="350" /></p>
<p>Chatting and Instant Messaging through the browser has opened doors for new technologies and applications (such as Twitter, and Facebook), however, what made them standout was their ability to relay information back and forth at an instant without having to open a new window or load a new page.</p>
<p>The way AJAX is used in instant messaging or chatting is these apps update the server by letting it know that you have sent a message/said something and they also check the server at certain intervals to see if you&#8217;ve received a new message.</p>
<p>Another way IM and Chat Rooms use AJAX is by updating your profile or user interface with the new message that was delivered  after it checked the servers and found a new message.</p>
<p><strong>Examples and Resources</strong></p>
<ul>
<li><a href="http://download.aim.com/client/express">Aim Express</a></li>
<li><a href="http://www.koolim.com/">Kool IM</a></li>
<li><a href="http://www.mijnmessenger.nl/">Easy Messenger</a></li>
<li><a href="http://www.meebo.com/">Meebo</a></li>
</ul>
<h4>&#8220;Collaborative&#8221; Graphical User Interfaces</h4>
<p><img src="http://designreviver.com/wp-content/uploads/2010/02/ajaxuse-4.jpg" alt="" width="520" height="350" /></p>
<p>With the rise of new and &#8220;improved&#8221; design trends you really have to use some heavy artillery to have your user interface stand out from the rest. What artillery may be this be (you ask)? Why AJAX of course! With AJAX we can develop not only cleaner and much more functional interfaces, but we can create features that can make a user feel like a kid in a candy store.</p>
<p>You can virtually accomplish more on a single page then on any other number of pages put together. Your web applications will look good, but it they will also feel good with increments of speed. AJAX simply makes things faster for users. Using AJAX can also limit the number of requests to a server which ultimately reduces bandwidth and speeds up the loading of your web pages.</p>
<p>One application that stands out from the heard is Google Maps, the interface is simple, maps load fast (may somewhat depend on your Internet Connection), and you feel as though you have full control over the application. Thumbs up for Google.</p>
<p><strong>Examples and Resources</strong></p>
<ul>
<li><a href="http://maps.google.com/">Google Maps</a></li>
<li><a href="http://www.lukew.com/resources/articles/ajax_design.asp">AJAX Interface Design</a></li>
<li><a href="http://services.chronos.org/qdf/docs/article3/index.html">Desinging User Interfaces with AJAX</a></li>
<li><a href="http://www.pcmag.com/article2/0,2817,1892662,00.asp">Better Web-App Interfaces with AJAX</a></li>
</ul>
<h4>Adding External Widgets</h4>
<p><img src="http://designreviver.com/wp-content/uploads/2010/02/ajaxuse-5.jpg" alt="" width="520" height="350" /></p>
<p>Most sites use widgets calling for an external source for monetary reasons such as ads or for displaying RSS feeds, and updates via Twitter. Because when you&#8217;re using AJAX, whatever page that&#8217;s using the JavaScript is not limited to whichever server it&#8217;s located on.</p>
<p>With AJAX you can call on a server at anytime (24/7). And because of this, a variety of sidebar plugins for CMS&#8217;s like WordPress, Joomla, and Drupal (to name a few) can be used. A good example of an external widget utilizing AJAX is Google Adsense and Google&#8217;s Ajax Feed API.</p>
<p><strong>Examples and Resources</strong></p>
<ul>
<li><a href="http://code.google.com/apis/ajaxfeeds/">Google&#8217;s Ajax Feed API</a></li>
<li><a href="http://www.ajaxwith.com/Building-Efficient-Widget-Container-Using-Ajax.html">Building Efficient Widget Container Using Ajax</a></li>
<li><a href="http://www.progressive-coding.com/tutorial.php?id=6">Creating an AJAX Rating Widget</a></li>
</ul>
<h3>Got a question about this article? &#8211; <a href="http://answers.designreviver.com">Ask it here!</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/tips/5-practical-ways-using-ajax/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>5 Well Designed Icon Tutorials</title>
		<link>http://designreviver.com/tutorials/5-well-designed-icon-tutorials/</link>
		<comments>http://designreviver.com/tutorials/5-well-designed-icon-tutorials/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 09:11:07 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=5028</guid>
		<description><![CDATA[Graphical icons offer an opportunity to project to the user an instantly recognizable message &#8211; that is something that would normally take an entire paragraph of words. Of course the icons need to be well designed in the first place to successfully convey your message effectively.

In today&#8217;s news round-up we have five fresh tutorials that [...]]]></description>
			<content:encoded><![CDATA[<p>Graphical icons offer an opportunity to project to the user an instantly recognizable message &#8211; that is something that would normally take an entire paragraph of words. Of course the icons need to be well designed in the first place to successfully convey your message effectively.</p>
<p><span id="more-5028"></span></p>
<p>In today&#8217;s news round-up we have five fresh tutorials that are both easily recognizable and certainly well designed.</p>
<h4><a href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-detailed-apple-ipad-icon-in-photoshop">How To Create a Detailed Apple iPad Icon in Photoshop</a></h4>
<p><a href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-detailed-apple-ipad-icon-in-photoshop"><img src="http://designreviver.com/wp-content/uploads/2010/02/icontut1.jpg" alt="Icon Tutorials" /></a></p>
<p>The Internet world exploded with the news of the Apple tablet launch last week. Named the iPad, it’s set to bring yet another revolution to the way people access and browse the web. An iPad icon would be a sensible addition to any web designer’s resources toolbox, so let’s fire up Photoshop and create our very own detailed iPad icon graphic.</p>
<p><a href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-detailed-apple-ipad-icon-in-photoshop">How To Create a Detailed Apple iPad Icon in Photoshop</a></p>
<h4><a href="http://psd.tutsplus.com/tutorials/interface-tutorials/how-to-create-a-shiny-paint-bucket-icon/">How to Create a Shiny Paint Bucket Icon</a></h4>
<p><a href="http://psd.tutsplus.com/tutorials/interface-tutorials/how-to-create-a-shiny-paint-bucket-icon/"><img src="http://designreviver.com/wp-content/uploads/2010/02/icontut2.jpg" alt="Icon Tutorials" /></a></p>
<p>Learn how to create a simple three-dimensional icon of a paint bucket, complete with paint splotches, with this colorful tutorial. Harnessing the power of paths, layer effects and consistent lighting you&#39;ll obtain an effective, shiny icon.</p>
<p><a href="http://psd.tutsplus.com/tutorials/interface-tutorials/how-to-create-a-shiny-paint-bucket-icon/">How to Create a Shiny Paint Bucket Icon</a></p>
<h4><a href="http://www.myfreetutorials.com/design-monitor-icon-in-photoshop-video-tutorial/">Design Monitor Icon in Photoshop Video Tutorial</a></h4>
<p><a href="http://www.myfreetutorials.com/design-monitor-icon-in-photoshop-video-tutorial/"><img src="http://designreviver.com/wp-content/uploads/2010/02/icontut3.jpg" alt="Icon Tutorials" /></a></p>
<p><a href="http://www.myfreetutorials.com/design-monitor-icon-in-photoshop-video-tutorial/">Design Monitor Icon in Photoshop Video Tutorial</a></p>
<h4><a href="http://designinstruct.com/iconlogo-design/how-to-make-a-professional-buddy-icon-in-photoshop/">How to Make a Professional Buddy Icon in Photoshop</a></h4>
<p><a href="http://designinstruct.com/iconlogo-design/how-to-make-a-professional-buddy-icon-in-photoshop/"><img src="http://designreviver.com/wp-content/uploads/2010/02/icontut4.jpg" alt="Icon Tutorials" /></a></p>
<p>In this intermediate-level tutorial, you&#39;ll be shown how to make an awesome icon from scratch using Photoshop. You will need basic knowledge of Photoshop and familiarity with the Pen Tool (P).</p>
<p><a href="http://designinstruct.com/iconlogo-design/how-to-make-a-professional-buddy-icon-in-photoshop/">How to Make a Professional Buddy Icon in Photoshop</a></p>
<h4><a href="http://speckyboy.com/2010/01/27/how-to-create-a-photo-frame-social-icon-set-illustrator-tutorial/">How to Create a Photo Frame Social Icon Set in Illustrator Tutorial</a></h4>
<p><a href="http://speckyboy.com/2010/01/27/how-to-create-a-photo-frame-social-icon-set-illustrator-tutorial/"><img src="http://designreviver.com/wp-content/uploads/2010/02/icontut5.jpg" alt="Icon Tutorials" /></a></p>
<p>In this Illustrator tutorial you will learn how to create a social bookmarking icon that is wrapped in a photo frame and might just be good enough to hang on your wall.</p>
<p><a href="http://speckyboy.com/2010/01/27/how-to-create-a-photo-frame-social-icon-set-illustrator-tutorial/">How to Create a Photo Frame Social Icon Set in Illustrator Tutorial</a></p>
<p>By Paul Andrew (<a href="http://speckyboy.com">Speckyboy</a> and <a href="http://twitter.com/speckyboy">speckyboy@twitter</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/tutorials/5-well-designed-icon-tutorials/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>DR Questions and Answers &#8211; What a busy week it has been!</title>
		<link>http://designreviver.com/general/dr-questions-and-answers-what-a-busy-week-it-has-been/</link>
		<comments>http://designreviver.com/general/dr-questions-and-answers-what-a-busy-week-it-has-been/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 14:37:09 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Answers]]></category>
		<category><![CDATA[questions]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=5012</guid>
		<description><![CDATA[It is now been just over a week since we launched Design Reviver Answers. And what a week it has been!
We have simply been overwhelmed by the response from the design community, it has more than beat our expectations and we very much appreciate the support from everybody.

Some Impressive Stats
Up to date we have 255 [...]]]></description>
			<content:encoded><![CDATA[<p>It is now been just over a week since we launched <a href="http://answers.designreviver.com/">Design Reviver Answers</a>. And what a week it has been!<br /><span id="more-5012"></span></p>
<p>We have simply been overwhelmed by the response from the design community, it has more than beat our expectations and we very much appreciate the support from everybody.</p>
<p><!--more--></p>
<h4>Some Impressive Stats</h4>
<p>Up to date we have <strong>255</strong> new members, over <strong>120</strong> questions have been asked and a staggering <strong>370</strong> answers have been given.</p>
<p><a href="http://answers.designreviver.com/tags/wordpress/">Wordpress</a>, to be expected, has been the most popular topic/tag, closely followed by <a href="http://answers.designreviver.com/tags/css/">CSS</a> and then by the sometimes tricky <a href="http://answers.designreviver.com/tags/jQuery/">jQuery</a>.</p>
<p><a href="http://answers.designreviver.com/member/195">Heri Setiawan</a> has been our most prolific member, by answering 29 questions (290 points). Next there is <a href="http://answers.designreviver.com/member/141">Cy Klassen</a> with with 2 questions and 21 answers (210 points), and closely followed by <a href="http://answers.designreviver.com/member/136">Benjamin Alijagic</a> with 20 questions (200 points).</p>
<p>How many points do you have?</p>
<h4>Some Examples of the Impressive Questions and Answers</h4>
<p>All of the questions, from all our members have been constructive and varied, resulting in intelligent and useful answers, here are some examples:</p>
<p><a href="http://answers.designreviver.com/209"><img src="http://designreviver.com/wp-content/uploads/2010/01/drqanda1.jpg" alt="Design Reviver QandA" /></a></p>
<p><a href="http://answers.designreviver.com/225"><img src="http://designreviver.com/wp-content/uploads/2010/01/drqanda2.jpg" alt="Design Reviver QandA" /></a></p>
<p><a href="http://answers.designreviver.com/269"><img src="http://designreviver.com/wp-content/uploads/2010/01/drqanda3.jpg" alt="Design Reviver QandA" /></a></p>
<h4>Unanswered Questions</h4>
<p>Surprisingly there are still a handful of questions that have as yet been unanswered, could you help us? Here are some of the questions:</p>
<ul>
<li><a href="http://answers.designreviver.com/336">Has Javascript Reached A Point Where Flash Is Unnecessary For Web Design?</a></li>
<li><a href="http://answers.designreviver.com/332">How Can I Create A Auto-Email Reminder With Date And Time?</a></li>
<li><a href="http://answers.designreviver.com/330">How Can I Properly Load An Xml File?</a></li>
</ul>
<h4>Help us get better</h4>
<p> We would love to hear what you think of our new service, how can we improve it? What new features would you like?</p>
<p>Please leave your thoughts via the comments below.</p>
<p>Again, thanks to everyone for the support.</p>
]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/general/dr-questions-and-answers-what-a-busy-week-it-has-been/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Color Tools, Resources and Inspiration</title>
		<link>http://designreviver.com/general/color-tools-resources-and-inspiration/</link>
		<comments>http://designreviver.com/general/color-tools-resources-and-inspiration/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 09:05:12 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=4996</guid>
		<description><![CDATA[Color is the integral element with design. It can bring a bland idea to life, it can revitalize a boring and dreary web site and can bring lifeless art to, well, life. Why is it so powerful? Because different colors can invoke different emotions with different people, thus altering our perception of how we see [...]]]></description>
			<content:encoded><![CDATA[<p>Color is the integral element with design. It can bring a bland idea to life, it can revitalize a boring and dreary web site and can bring lifeless art to, well, life. Why is it so powerful? Because different colors can invoke different emotions with different people, thus altering our perception of how we see art.<span id="more-4996"></span> </p>
<p>In today&#8217;s news round up we have collected some color related articles, some tools for your inspiration and learning.</p>
<h4><a href="http://www.smashingmagazine.com/2010/01/28/color-theory-for-designers-part-1-the-meaning-of-color/">Color Theory for Designers, Part 1: The Meaning of Color</a></h4>
<p><a href="http://www.smashingmagazine.com/2010/01/28/color-theory-for-designers-part-1-the-meaning-of-color/"><img src="http://designreviver.com/wp-content/uploads/2010/01/color1.jpg" alt="Color Tools, Resources and Inspiration" /></a></p>
<p>Color in design is very subjective. What evokes one reaction in one person may evoke a very different reaction in somone else. Sometimes this is due to personal preference, and other times due to cultural background. Color theory is a science in itself.</p>
<p>This is the first in a three-part series on color theory, were the author discusses the meanings behind the different color families, and gives some examples of how these colors are used.</p>
<p><a href="http://www.smashingmagazine.com/2010/01/28/color-theory-for-designers-part-1-the-meaning-of-color/">Color Theory for Designers, Part 1: The Meaning of Color</a></p>
<h4><a href="http://www.problogdesign.com/resources/25-color-combination-tools-for-designers/">25 Color Combination Tools for Designers</a></h4>
<p><a href="http://www.problogdesign.com/resources/25-color-combination-tools-for-designers/"><img src="http://designreviver.com/wp-content/uploads/2010/01/color2.jpg" alt="Color Tools, Resources and Inspiration" /></a></p>
<p>There are a lot of online tools to help create a beautiful color combination. They all vary slightly to suit each designers with different preferences on how they work. In this article they collected together 25 of the best color tools, with a quick overview on each to help you decide which is best for you.</p>
<p><a href="http://www.problogdesign.com/resources/25-color-combination-tools-for-designers/">25 Color Combination Tools for Designers</a></p>
<h4><a href="http://www.colorgorize.com/">Colorgorize the Web</a></h4>
<p><a href="http://www.colorgorize.com/"><img src="http://designreviver.com/wp-content/uploads/2010/01/color3.jpg" alt="Color Tools, Resources and Inspiration" /></a></p>
<p>The first version of Colorgorize was published in 2007 as a project at the University of the Arts Bremen, Germany. Back then, Colorgorize was a Firefox add-on that could display similar colored websites to the website currently opened. Colorgorize has since changed to a website recently to allow it to reach a bigger audience. Today, thousands of websites are already analyzed and can be searched by colors.</p>
<p><a href="http://www.colorgorize.com/">Colorgorize the Web</a></p>
<h4><a href="http://gizmodo.com/5450606/what-if-computer-graphics-ran-under-crayolas-law">What If Computer Graphics Ran Under Crayola&#39;s Law?</a></h4>
<p><a href="http://gizmodo.com/5450606/what-if-computer-graphics-ran-under-crayolas-law"><img src="http://designreviver.com/wp-content/uploads/2010/01/color4.jpg" alt="Color Tools, Resources and Inspiration" /></a></p>
<p><a href="http://gizmodo.com/5450606/what-if-computer-graphics-ran-under-crayolas-law">What If Computer Graphics Ran Under Crayola&#39;s Law?</a></p>
<p>By Paul Andrew (<a href="http://speckyboy.com">Speckyboy</a> and <a href="http://twitter.com/speckyboy">speckyboy@twitter</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/general/color-tools-resources-and-inspiration/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>5 Interactive and Creative Uses for PHP</title>
		<link>http://designreviver.com/tips/5-interactive-and-creative-uses-for-php/</link>
		<comments>http://designreviver.com/tips/5-interactive-and-creative-uses-for-php/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 14:36:37 +0000</pubDate>
		<dc:creator>Joel Reyes</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[interact]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[progaming]]></category>
		<category><![CDATA[user interface]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=4979</guid>
		<description><![CDATA[PHP is a powerful and widely recognized scripting language that enables you to build interactive applications and websites. If you&#8217;re new to using PHP, then you&#8217;ll most likely benefit from know how you can use it to make your website or applications more interactive and aesthetically pleasing.
With PHP you&#8217;re rarely limited to functionality and restrictions, [...]]]></description>
			<content:encoded><![CDATA[<p>PHP is a powerful and widely recognized scripting language that enables you to build interactive applications and websites. If you&#8217;re new to using PHP, then you&#8217;ll most likely benefit from know how you can use it to make your website or applications more interactive and aesthetically pleasing.<span id="more-4979"></span></p>
<p>With PHP you&#8217;re rarely limited to functionality and restrictions, if you can code it,  you can build it. Below we&#8217;ll touch base on <strong>5 Interactive and Creative Uses for PHP</strong> web and desktop oriented.</p>
<h4>Graphical User Interface</h4>
<p><img src="http://designreviver.com/wp-content/uploads/2010/01/phpuse-1.jpg" alt="" /></p>
<p>There are instances were web developers make the switch from only knowing how to create apps for the web, to building desktop applications. And they use PHP as a transitional vehicle since many are already familiar with the programming language.</p>
<p>Creating a GUI made for your desktop requires extensive knowledge of PHP and various extensions. Once you&#8217;re able to really master the language by coding for desktops, designing for the web using PHP will be much easier.</p>
<p>Here are a few PHP extensions to get you started:</p>
<ul>
<li><a href="http://gtk.php.net/">PHP GTK</a> &#8211; This is an open source extension with a nice toolkit.</li>
<li><a href="http://www.zzee.com/php-gui/">ZZEE PHP GUI</a> &#8211; This solution allows you to convert your PHP scripts into functional Windows applications.</li>
</ul>
<h4>Building Facebook Apps</h4>
<p><img src="http://designreviver.com/wp-content/uploads/2010/01/phpuse-2.jpg" alt="" /></p>
<p>You can utilize PHP to integrate Facebook with a website. Before you begin developing Facebook applications with PHP you must first become acquainted with <a href="http://wiki.developers.facebook.com/index.php/PHP">Facebook&#8217;s Developer Guide</a>. It&#8217;ll help you get a much better feel of what you need to get started, and it also goes in-depth on the Facebook PHP client library subject.</p>
<p>It also provides detailed instructions on how to install and utilize the files included within the library. This is definitely a great resource to check out, especially if you have or plan on having clients that may want you to build a Facebook application for them.</p>
<h4>Creating Mailing Lists</h4>
<p><img src="http://designreviver.com/wp-content/uploads/2010/01/phpuse-3.jpg" alt="" /></p>
<p>With PHP you can write your very own script allowing you to send e-mail newsletters to your clients and anyone else you&#8217;d like. You can also use a ready-made script. PHP mailing lists are generally used as a way to keep your anyone you&#8217;d like up-to-date with whatever information you need them to know.</p>
<p>The most important feature is mass mailing. This PHP online documentation explains <a href="http://us3.php.net/manual/en/function.mail.php">PHP mailing functions</a> in-depth. You can also download all-ready made scripts such as <a href="http://www.phplist.com/">this one</a> for your website.</p>
<h4>Online Communities</h4>
<p><img src="http://designreviver.com/wp-content/uploads/2010/01/phpuse-4.jpg" alt="" /></p>
<p>A good way to promote and create self-awareness for your business, product, or service is to make your customers and users feel as though a supportive community has their back. You can create a forum, or a small social network that will allow your customers to interact and find out more about your products.</p>
<p>Many times a users is looking for a quick and effective median to receive quality support, creating an online community can reassure the user that choosing your service was/is the best choice. It will also help you receive feedback so that you&#8217;re able to improve the quality of your service.</p>
<p>There are various scripts available for building your online community, however, the most popular choice would be a PHP Framework such as Codeigntor or CakePHP. You can also use a variety of PHP tools that are efficient in their own ways, here are a few: <a href="http://www.phpbb.com/">php BB</a>, <a href="http://www.vbulletin.com/">vBulletin</a>, and <a href="http://punbb.informer.com/">Pun BB</a>.</p>
<h4>Developing an E-Commerce</h4>
<p><img src="http://designreviver.com/wp-content/uploads/2010/01/phpuse-5.jpg" alt="" /></p>
<p>Implementing an E-commerce solution is one of the most sought-out uses for PHP. No matter the level of business or type of client base you may be pulling, having an E-Commerce solution at your fingertips is a powerful way to grow your business.</p>
<p>Of course, most of the effective solutions you&#8217;ve come across utilize PHP for its accuracy and stability. Whether you&#8217;re building from scratch or you&#8217;re adding new features to an existing one, PHP is the logical choice.</p>
<p>Building your own shopping cart application means you&#8217;ll be doing a lot of coding, especially if your creating one entirely from scratch. One of the best ways to successfully accomplish this is to use a framework (as mentioned above) such as <a href="http://codeigniter.com/">CodeIgniter</a> or <a href="http://cakephp.org/">CakePHP</a>. CakePHP has a <a href="http://bakery.cakephp.org/">bakery section</a> that contain a large selection of extensions and features for E-Commerce developers. You can integrate various payment solutions as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/tips/5-interactive-and-creative-uses-for-php/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>A Selection of Useful jQuery Plugins</title>
		<link>http://designreviver.com/general/a-selection-of-useful-jquery-plugins/</link>
		<comments>http://designreviver.com/general/a-selection-of-useful-jquery-plugins/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 09:28:50 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[web forms]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=4963</guid>
		<description><![CDATA[For the last few years jQuery has been the jewel in Javascripts crown. Its rapid rise in popularity not only reflects how powerful a tool it is but also how relatively easy it is to work with. It is because of these two factors that developers have been churning out plugins and new techniques at [...]]]></description>
			<content:encoded><![CDATA[<p>For the last few years jQuery has been the jewel in Javascripts crown. Its rapid rise in popularity not only reflects how powerful a tool it is but also how relatively easy it is to work with. It is because of these two factors that developers have been churning out plugins and new techniques at a phenomenal rate.</p>
<p><span id="more-4963"></span></p>
<p>Thanks to all of those developers for making our life easier!</p>
<h4><a href="http://www.1stwebdesigner.com/resources/stylish-jquery-tooltip-plugins-webdesign/">30 Stylish jQuery Tooltip Plugins For Catchy Designs</a></h4>
<p><a href="http://www.1stwebdesigner.com/resources/stylish-jquery-tooltip-plugins-webdesign/"><img src="http://designreviver.com/wp-content/uploads/2010/01/jquerydr1.jpg" alt="jQuery Plugins and Techniques" /></a></p>
<p>Tooltips can be an important factors on a web site,although little and not always visible, they do offer so much. Although important, they also happen to be a very badly misunderstood and a poorly implemented component.</p>
<p><a href="http://www.1stwebdesigner.com/resources/stylish-jquery-tooltip-plugins-webdesign/">30 Stylish jQuery Tooltip Plugins For Catchy Designs</a></p>
<h4><a href="http://www.noupe.com/jquery/45-jquery-navigation-plugins-and-tutorials.html">45 jQuery Navigation Plugins and Tutorials</a></h4>
<p><a href="http://www.noupe.com/jquery/45-jquery-navigation-plugins-and-tutorials.html"><img src="http://designreviver.com/wp-content/uploads/2010/01/jquerydr2.jpg" alt="jQuery Plugins and Techniques" /></a></p>
<p>As many of us know, the initial 15-20 seconds of a new user’s visit to a web site will have a large impact on whether on not they are going to like or dislike the site, prompting them to decide whether they will stay or go. This means it’s vital that you follow usability rules with common design practices and layout your site, especially the navigation, in a style that the user can either learn easily or already understands. </p>
<p>The biggest part of this process is developing a menu that is both easy to use and intuitive, as well as styling it to fit into your site’s design. Having said all that, an easy-to-use menu should not put the shackles on creativity.</p>
<p>In this article they’ve listed 45 jQuery plugins and tutorials that demonstrate not only how powerful jQuery is, but also how your website’s navigation can be both creative and usable. </p>
<p><a href="http://www.noupe.com/jquery/45-jquery-navigation-plugins-and-tutorials.html">45 jQuery Navigation Plugins and Tutorials</a></h4>
<h4><a href="http://designm.ag/resources/jquery-form-plugins/">25 jQuery Plugins for Working with Forms</a></h4>
<p><a href="http://designm.ag/resources/jquery-form-plugins/"><img src="http://designreviver.com/wp-content/uploads/2010/01/jquerydr3.jpg" alt="jQuery Plugins and Techniques" /></a></p>
<p>Almost every website uses a form of some kind. Contact forms and other types of forms can be enhanced with the use of a number of jQuery plugins that are readily available. In this post they feature 25 useful plugins that you may be able to use in your own work with forms.</p>
<p><a href="http://designm.ag/resources/jquery-form-plugins/">25 jQuery Plugins for Working with Forms</a></p>
<p>By Paul Andrew (<a href="http://speckyboy.com">Speckyboy</a> and <a href="http://twitter.com/speckyboy">speckyboy@twitter</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/general/a-selection-of-useful-jquery-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>20 Easy-to-Learn jQuery Animation Tutorials</title>
		<link>http://designreviver.com/tutorials/20-easy-to-learn-jquery-animation-tutorials/</link>
		<comments>http://designreviver.com/tutorials/20-easy-to-learn-jquery-animation-tutorials/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 11:04:29 +0000</pubDate>
		<dc:creator>Joel Reyes</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=4931</guid>
		<description><![CDATA[There&#8217;s no denying that the web has evolved and continues to evolve into something very different from what we had in mind a few years ago. 
Animation on websites has gone a long way, some time ago everything and anything that had movement on a website was automatically categorized as Flash, now we have these [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s no denying that <strong>the</strong> <strong>web has evolved and continues to evolve</strong> into something very different from what we had in mind a few years ago. <span id="more-4931"></span></p>
<p><strong>Animation on websites</strong> has gone a long way, some time ago everything and anything that had movement on a website was automatically categorized as Flash, now we have these different technologies that have raised the standard and have broken the mold. One of these key technologies is jQuery, and with the powerful scripting language that it represents (JavaScript) you can do amazing things.</p>
<p>This trend of progress is more than heartwarming, it&#8217;s amazing, and this is why we&#8217;ve compiled a hand-picked list containing <strong>20 Easy-to-Learn jQuery Animation Tutorials</strong> that are truly amazing! <em>Have we missed any? If so, please share with us below.</em></p>
<h4><a href="http://css-tricks.com/moving-boxes/">Moving Boxes Carousel with jQuery</a></h4>
<p><a href="http://css-tricks.com/moving-boxes/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-01.jpg" alt="" /></a></p>
<p>This is a simple jQuery tutorial will not throw a lot of source code your way. The carousel has features that allow you to zoom in and out. The boxes slide left or right.</p>
<p><a href="http://css-tricks.com/examples/MovingBoxes/"><strong>Demo</strong></a></p>
<h4><a href="http://css-tricks.com/jquery-robot/">Building an Animated Cartoon Robot with jQuery</a></h4>
<p><a href="http://css-tricks.com/jquery-robot/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-02.jpg" alt="" /></a></p>
<p>The robot is comprised similarly to the background animation scene by layering several DIVs together to create the different robot pieces. The final step, was animating the robot with some jQuery.</p>
<p><a href="http://robot.anthonycalzadilla.com/"><strong>Demo</strong></a></p>
<h4><a href="http://buildinternet.com/2009/08/crafting-an-animated-postcard-with-jquery/">Crafting an Animated Postcard With jQuery</a></h4>
<p><a href="http://buildinternet.com/2009/08/crafting-an-animated-postcard-with-jquery/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-03.jpg" alt="" /></a></p>
<p>Sam Dunn of Build Internet, wrote a tutorial on how to create an animated landscape using transparent images. The tutorial is based on the jQuery Easing plugin to aid the animation and the setTimeout() JavaScript function to time the events respectively.</p>
<p><a href="https://buildinternet.s3.amazonaws.com/live-tutorials/postcard/index.html"><strong>Demo</strong></a></p>
<h4><a href="http://www.filamentgroup.com/lab/jquery_visualize_plugin_accessible_charts_graphs_from_tables_html5_canvas/">Accessible Charts &amp; Graphs from Table Elements using HTML 5 Canvas</a></h4>
<p><a href="http://www.filamentgroup.com/lab/jquery_visualize_plugin_accessible_charts_graphs_from_tables_html5_canvas/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-04.jpg" alt="" /></a></p>
<p>This technique provides a simple method for generating bar, line, area, and pie charts from an HTML table, and allows you to configure them in a variety of ways.</p>
<p><a href="http://www.filamentgroup.com/lab/jquery_visualize_plugin_accessible_charts_graphs_from_tables_html5_canvas/"><strong>Demo</strong></a></p>
<h4><a href="http://www.incg.nl/blog/2008/hover-block-jquery/">Animate a Hover With jQuery</a></h4>
<p><a href="http://www.incg.nl/blog/2008/hover-block-jquery/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-05.jpg" alt="" /></a></p>
<p>Animate an image while hovering it and show the visitors information while doing that. Sounds simple huh? Well it is, but the effect is nice and can be nice for a portfolio, for example.</p>
<p><strong><a href="http://www.incg.nl/blog/2008/hover-block-jquery/example/animate_hover.html">Demo</a></strong></p>
<h4><a href="http://www.gayadesign.com/diy/puffing-smoke-effect-in-jquery/">Puffing Smoke Effect in jQuery</a></h4>
<p><a href="http://www.gayadesign.com/diy/puffing-smoke-effect-in-jquery/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-06.jpg" alt="" /></a></p>
<p>This tutorial by Gaya Kessler features a beautiful animation effect of cartoonish smoke emanating from factory smoke stacks. You will be supplied a configurable jQuery plugin with instructions based on Gaya&#8217;s own site’s header, this way you can see the tutorial example first hand.</p>
<p><strong><a href="http://www.gayadesign.com/scripts/smokeeffect/">Demo</a></strong></p>
<h4><a href="http://net.tutsplus.com/tutorials/javascript-ajax/how-to-create-a-mootools-homepage-inspired-navigation-effect-using-jquery/">How To Create A &#8220;Mootools Homepage&#8221; Inspired Navigation Effect Using jQuery</a></h4>
<p><a href="http://net.tutsplus.com/tutorials/javascript-ajax/how-to-create-a-mootools-homepage-inspired-navigation-effect-using-jquery/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-07.jpg" alt="" /></a></p>
<p>The menu on MooTools is exceptional, and this tutorial covers how to create a similar one. It&#8217;s an amazing effect.</p>
<p><a href="http://nettuts.s3.cdn.plus.org/004_Moo/tutorial/demo/demo.html"><strong>Demo</strong></a></p>
<h4><a href="http://net.tutsplus.com/tutorials/javascript-ajax/build-a-top-panel-with-jquery/">Build An Incredible Login Form With jQuery</a></h4>
<p><a href="http://net.tutsplus.com/tutorials/javascript-ajax/build-a-top-panel-with-jquery/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-08.jpg" alt="" /></a></p>
<p>This tutorial, guides you in creating a sliding panel, that slides in to reveal more content, using JQuery to animate the height of the panel. You incorporate these features into your sites login area.</p>
<p><a href="http://nettuts.s3.cdn.plus.org/041_TopPanelWithJquery/demo/index.html"><strong>Demo</strong></a></p>
<h4><a href="http://jqueryfordesigners.com/jquery-infinite-carousel/">jQuery Infinite Carousel</a></h4>
<p><a href="http://jqueryfordesigners.com/jquery-infinite-carousel/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-09.jpg" alt="" /></a></p>
<p>This screencast explains how you can create a simple and nice scrolling carousel and how you can also make it automatically loop round by itself.</p>
<p><a href="http://jqueryfordesigners.com/demo/infinite-carousel.html"><strong>Demo</strong></a></p>
<h4><a href="http://yensdesign.com/2008/12/create-an-amazing-music-player-using-mouse-gestures-hotkeys-in-jquery/">Create an Amazing Music Player Using Mouse Gestures &amp; Hotkeys in jQuery</a></h4>
<p><a href="http://yensdesign.com/2008/12/create-an-amazing-music-player-using-mouse-gestures-hotkeys-in-jquery/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-10.jpg" alt="" /></a></p>
<p>This tutorial helps you create an amazing music player coded in xHTML &amp; jQuery that made use of mouse gestures and hotkeys. You can Click &amp; Drag with mouse to interact with interface’s music player or use directional keys &amp; spacebar instead of mouse.</p>
<p><a href="http://yensdesign.com/tutorials/musicplayer/"><strong>Demo</strong></a></p>
<h4><a href="http://css-tricks.com/revealing-photo-slider/">Learning jQuery: Revealing Photo Slider</a></h4>
<p><a href="http://css-tricks.com/revealing-photo-slider/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-11.jpg" alt="" /></a></p>
<p>This revealing photo slider is great, it&#8217;s perfect for portfolios and photography sites. The entire structure of the slider is coded in JavaScript and CSS.</p>
<p><a href="http://css-tricks.com/examples/RevealingPhotoSlider2/"><strong>Demo</strong></a></p>
<h4><a href="http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/">Animated Drop Down Menu with jQuery</a></h4>
<p><a href="http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-12.jpg" alt="" /></a></p>
<p>Drop downs are a dime a dozen these days and creating one that stands out is a bit hard. However, with this animated jQuery tutorial you will be guided on how to create one that works with jQuery. After you finish the tutorial you will know how to create your very own jQuery powered menu.</p>
<p><a href="http://clarklab.net/blog/articles/dropdown/example.html#"><strong>Demo</strong></a></p>
<h4><a href="http://visitmix.com/labs/glimmer/">Multiple Animations with Glimmer</a></h4>
<p><a href="http://visitmix.com/labs/glimmer/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-13.jpg" alt="" /></a></p>
<p>Glimmer is a JavaScript animation creation tool that lets you create amazing animations. By visiting the site you&#8217;ll be able to see a variety of examples with code.</p>
<p><a href="http://visitmix.com/labs/glimmer/"><strong>Demo</strong></a></p>
<h4><a href="http://net.tutsplus.com/tutorials/javascript-ajax/how-to-load-in-and-animate-content-with-jquery/">How to Load In and Animate Content with jQuery</a></h4>
<p><a href="http://net.tutsplus.com/tutorials/javascript-ajax/how-to-load-in-and-animate-content-with-jquery/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-14.jpg" alt="" /></a></p>
<p>This tutorial will allow you to enhance the functionality of content on your site using  jQuery and a bit of ajax so that the content loads into the relevant container instead of the user having to navigate to another page.</p>
<p><a href="http://nettuts.s3.cdn.plus.org/011_jQuerySite/sample/index.html#index"><strong>Demo</strong></a></p>
<h4><a href="http://blog.themeforest.net/tutorials/create-a-funky-parallax-background-effect-using-jquery/">Create a Parallax Scrolling Background</a></h4>
<p><a href="http://blog.themeforest.net/tutorials/create-a-funky-parallax-background-effect-using-jquery/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-15.jpg" alt="" /></a></p>
<p>In this tutorial, you will be  be using jQuery to take a horizontally scrolling website and add a parallax scrolling background effect reminiscent of old-school 2D platform games like Sonic the Hedgehog.</p>
<p><a href="http://themeforest.s3.amazonaws.com/116_parallax/tutorial-source-files/tut-index.html Create a Stunning Sliding Door Effect with jQuery"><strong>Demo</strong></a></p>
<h4><a href="http://www.queness.com/post/620/create-a-stunning-sliding-door-effect-with-jquery">Create a Stunning Sliding Door Effect with jQuery</a></h4>
<p><a href="http://www.queness.com/post/620/create-a-stunning-sliding-door-effect-with-jquery"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-16.jpg" alt="" /></a></p>
<p>This tutorial includes detailed explanation that will guide you through the process of learning how to make a stunning four corners sliding effect easily with jQuery.</p>
<p><a href="http://www.queness.com/resources/html/slicing/index.html"><strong>Demo</strong></a></p>
<h4><a href="http://youlove.us/blog/the-youloveus-scrolling-background-effect-explained">The youlove.us Scrolling Background Effect Explained</a></h4>
<p><a href="http://youlove.us/blog/the-youloveus-scrolling-background-effect-explained"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-17.jpg" alt="" /></a></p>
<p>The technique is actually a lot simpler than it looks, it’s based around scrolling a very tall gradient image behind some transparent PNG images. The header image (with our logo, strapline and the laptop) has a transparent background and solid text, while the main page is actually an image with the heading text as transparent cut outs.</p>
<p><a href="http://youlove.us/blog/the-youloveus-scrolling-background-effect-explained"><strong>Demo</strong></a></p>
<h4><a href="http://design-notes.info/tutorial/jquery-tutorial/make-your-header-responses-to-mouse-movements-with-jparallax/">Make Your Header Responses To Mouse Movements with jParallax</a></h4>
<p><a href="http://design-notes.info/tutorial/jquery-tutorial/make-your-header-responses-to-mouse-movements-with-jparallax/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-18.jpg" alt="" /></a></p>
<p>jParallax turns a selected element into a window, or viewport, and all its children into absolutely positioned layers that can be seen through the viewport. These layers move in response to the mouse, and, depending on their dimensions (and options for layer initialisation), they move by different amounts, in a parallaxy kind of way.</p>
<p><a href="http://design-notes.info/wp-content/plugins/wordpress-toolbar/toolbar.php?wp-toolbar-tourl=http://alexandratong.com&amp;wp-toolbar-fromurl=http://design-notes.info/tutorial/jquery-tutorial/make-your-header-responses-to-mouse-movements-with-jparallax/&amp;wp-toolbar-fromtitle=Make%20Your%20Header%20Responses%20To%20Mouse%20Movements%20with%20jParallax&amp;wp-toolbar-blogurl=http://design-notes.info&amp;wp-toolbar-blogtitle=Design-Notes"><strong>Demo</strong></a></p>
<h4><a href="http://net.tutsplus.com/tutorials/javascript-ajax/jquery-os-x-style-dock-and-stack-navigation/">“Outside the Box” Navigation with jQuery</a></h4>
<p><a href="http://net.tutsplus.com/tutorials/javascript-ajax/jquery-os-x-style-dock-and-stack-navigation/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-19.jpg" alt="" /></a></p>
<p>Just about every website uses the regular navigation concepts everyone&#8217;s used to. But since this can become boring to veiw, tutorials such as this one mimicking the OS X dock and stacks is the bi-product.</p>
<p><a href="http://nettuts.s3.cdn.plus.org/358_jquery/example%20files/all-examples.html"><strong>Demo</strong></a></p>
<h4><a href="http://net.tutsplus.com/tutorials/javascript-ajax/leopard-desktop-in-jquery-using-jqdock/">Re-Create the Leopard Desktop with jQuery</a></h4>
<p><a href="http://net.tutsplus.com/tutorials/javascript-ajax/leopard-desktop-in-jquery-using-jqdock/"><img src="http://designreviver.com/wp-content/uploads/2010/01/animate-20.jpg" alt="" /></a></p>
<p>jQuery adds a whole lot of cool functionality to your websites. It can do a range of things, from animation to AJAX. With this tutorial you will learn how to use jQuery to create a completely coded Dashboard, just like Leopard! This can be handy in hiding widgets, links with icons, and more.</p>
<p><a href="http://nettuts.s3.cdn.plus.org/076_jQueryDashboard/preview/preview.html"><strong>Demo</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/tutorials/20-easy-to-learn-jquery-animation-tutorials/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Fresh CSS Tips, Techniques and Tools</title>
		<link>http://designreviver.com/tips/fresh-css-tips-techniques-and-tools/</link>
		<comments>http://designreviver.com/tips/fresh-css-tips-techniques-and-tools/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 08:50:39 +0000</pubDate>
		<dc:creator>speckyboy</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design news]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://designreviver.com/?p=4892</guid>
		<description><![CDATA[There is seemingly no end to the conyer belt that is CSS development. Every day there are new tips and techniques being published with fresh ideas and new solutions to age old problems. keeping up with it all is not easy.
In today&#8217;s news round-up we have collected some fresh CSS reources and some good CSS [...]]]></description>
			<content:encoded><![CDATA[<p>There is seemingly no end to the conyer belt that is CSS development. Every day there are new tips and techniques being published with fresh ideas and new solutions to age old problems. keeping up with it all is not easy.<br /><span id="more-4892"></span><br />
In today&#8217;s news round-up we have collected some fresh CSS reources and some good CSS reading to keep you in the loop.</p>
<h4><a href="http://css-tricks.com/how-to-create-an-ie-only-stylesheet/">How To Create an IE-Only Stylesheet</a></h4>
<p><a href="http://css-tricks.com/how-to-create-an-ie-only-stylesheet/"><img src="http://designreviver.com/wp-content/uploads/2010/01/csstips1.jpg" alt="CSS Tips and Techniques" /></a></p>
<p>Hacks are dangerous, since they are based on non-standard exploits, you can’t predict how they are going to behave in future browsers. The tool of choice for fighting IE problems is the conditional stylesheet. </p>
<p>IE provides comment tags, supported all the way up to the current IE 8 to target specific versions, as well as greater-than/less-than stuff for targeting multiple versions at once.</p>
<p><a href="http://css-tricks.com/how-to-create-an-ie-only-stylesheet/">How To Create an IE-Only Stylesheet</a></p>
<h4><a href="http://www.webdesignerdepot.com/2010/01/css-transitions-101/">CSS Transitions 101</a></h4>
<p><a href="http://www.webdesignerdepot.com/2010/01/css-transitions-101/"><img src="http://designreviver.com/wp-content/uploads/2010/01/csstips2.jpg" alt="CSS Tips and Techniques" /></a></p>
<p>Transitions have been a part of Webkit for a while and are the basis of a lot of the cool things that the Safari UI can do that other browsers cannot. But the W3C CSS Workgroup resisted adding transitions to its official specs, some members arguing that transitions are not style properties and would be better handled by a scripting language. </p>
<p>But many designers and developers argued that these are in fact styles— only dynamic styles, rather than the traditional static styles that so many of us are used to. </p>
<p>Fortunately, the argument for dynamic styles held the day. Last March, representatives from Apple and Mozilla began adding the CSS Transitions Module to the CSS Level 3 specification, closely modeled on what Apple had already added to Webkit.</p>
<p><a href="http://www.webdesignerdepot.com/2010/01/css-transitions-101/">CSS Transitions 101</a></p>
<h4><a href="http://www.designdazzling.com/2010/01/css-transparency-in-all-the-browsers/">CSS Transparency in All The Browsers</a></h4>
<p><a href="http://www.designdazzling.com/2010/01/css-transparency-in-all-the-browsers/"><img src="http://designreviver.com/wp-content/uploads/2010/01/csstips3.jpg" alt="CSS Tips and Techniques" /></a></p>
<p>There are many many cross-browser issues and transparency is one of those weird issues that crops up more than most. All the browsers do treat transparency in different ways, and to overcome this issue we need to define three different properties to cover all browsers.</p>
<p><a href="http://www.designdazzling.com/2010/01/css-transparency-in-all-the-browsers/">CSS Transparency in All The Browsers</a></p>
<h4><a href="http://www.designer-daily.com/12-really-useful-css-tools-5364">12 really useful CSS tools</a></h4>
<p><a href="http://www.designer-daily.com/12-really-useful-css-tools-5364"><img src="http://designreviver.com/wp-content/uploads/2010/01/csstips4.jpg" alt="CSS Tips and Techniques" /></a></p>
<p>Working on a website’s CSS can be quite an enjoyable job. However some of the tasks aren’t always fun. This is why there are tons of cool CSS tools and apps, to make your life easier and keep web designers’ work bearable.</p>
<p><a href="http://www.designer-daily.com/12-really-useful-css-tools-5364">12 really useful CSS tools</a></p>
<p>By Paul Andrew (<a href="http://speckyboy.com">Speckyboy</a> and <a href="http://twitter.com/speckyboy">speckyboy@twitter</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://designreviver.com/tips/fresh-css-tips-techniques-and-tools/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
