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

<channel>
	<title>CashRevelations &#187; Tutorials</title>
	<atom:link href="http://cashrevelations.com/magazine/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://cashrevelations.com/magazine</link>
	<description>Webmaster Tools &#38; Marketing Resources</description>
	<pubDate>Mon, 06 Sep 2010 12:40:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Convert XHTML Template Into Wordpress Theme</title>
		<link>http://cashrevelations.com/magazine/2010/08/xhtml-to-wordpress/</link>
		<comments>http://cashrevelations.com/magazine/2010/08/xhtml-to-wordpress/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 18:19:26 +0000</pubDate>
		<dc:creator>Tommy Olovsson</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[templates]]></category>

		<category><![CDATA[theme]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://cashrevelations.com/magazine/?p=7119</guid>
		<description><![CDATA[In this relatively easy-to-follow tutorial we are going to convert a simple XHTML template into a WordPress theme. The tutorial is in two parts - in this first part we will achieve a functional WP theme.]]></description>
			<content:encoded><![CDATA[<p><img src="http://cashrevelations.com/magazine/wp-content/media/xhtml-to-wordpress.jpg" alt="Convert A XHTML Template Into A WordPress Theme" title="Convert A XHTML Template Into A WordPress Theme" width="570" height="302" class="alignnone size-full wp-image-7501" /></p>
<p>From time to time it happens that we get good tips from our readers. One of these days I get a mail from one of Cashrevelations readers. The name of the reader is Jon. Jon&nbsp;wrote:</p>
<blockquote><p>I subscribe to your site as I always enjoy your tutorials and informative posts. I would like to request a tutorial on how to convert a simple xhtml/css website into Wordpress. There&#8217;s nothing really out there that&#8217;s too clear or&nbsp;noob-friendly</p></blockquote>
<p>And like president Obama would say: Yes, we can (write that&nbsp;tutorial)!</p>
<p>This tutorial will be in two parts and we will keep this first part as simple as possible. We will use an XHTML template, <a href="http://www.freelayouts.com/templates/Natural-Blues" target="_blank">Natural Blues</a>, by Reality Software (you can see a preview below) and convert it to a WP theme. In this first part of the tutorial we are going to do this by using a minimum of files to create a somewhat working WordPress&nbsp;theme.</p>
<p><a href="http://www.freelayouts.com/preview/5788/#" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/natural-blues-by-reality-software.jpg" alt="Natural Blues XHTML Template by Reality Software" title="Natural Blues XHTML Template by Reality Software" width="300" height="264" class="aligncenter size-full wp-image-7514" /></a></p>
<p>You need to be able to test your theme before you put it online. We deeply recommend you to <a href="http://cashrevelations.com/magazine/2010/01/install-wordpress-computer/">Install WordPress Locally On Your Computer</a> - it is not difficult and it is&nbsp;fun.</p>
<h2>1.&nbsp;Preparation</h2>
<p>Create an empty folder and name it with your theme name, and in that folder you paste a copy of your XHTML template (with the stylesheet and images folder)<a href="http://cashrevelations.com/magazine/2010/08/xhtml-to-wordpress/">.</a> </p>
<p>You should have the following&nbsp;files:</p>
<ul>
<li>One XHTML Template&nbsp;File</li>
<li>One CSS&nbsp;Stylesheet</li>
<li>One images&nbsp;folder</li>
</ul>
<p>Open the HTML Template File and rename it to ‘index.php’ - and then open your CSS Stylesheet and rename it to ‘style.css’. If there is sample content in your template - remove all of it from the index.php. Keep the index.html for a while like a&nbsp;reference.</p>
<h2>2. Add WordPress Theme Info To The CSS&nbsp;Stylesheet</h2>
<p>Open style.css and paste the code below in the very top of the CSS&nbsp;stylesheet:</p>
<p><code>/*<br />
	Theme Name: YOUR THEME NAME<br />
	Theme URL:  FULL HOMEPAGE URL OF THE THEME<br />
	Description: YOUR DESCRIPTION OF THE THEME<br />
	Author: YOUR NAME<br />
	Author URI: FULL URL OF YOUR HOMEPAGE<br />
	Version: OPTIONAL NUMBER<br />
	Tags: DESCRIBING TAGS SEPARATED WITH COMMAS<br />
*/<br /></code></p>
<p>Do not forget to paste (and change the capital letters to your information) this code to your stylesheet. This piece of code gives your new theme a name and all the other basic information needed by&nbsp;WordPress. </p>
<h2>3. Add WordPress Template Tags To Your&nbsp;Theme</h2>
<p>WordPress uses <a href="http://codex.wordpress.org/Template_Tags" target="_blank">Template Tags</a> to add content to your page. Below you have the basic tags you need to make a working WordPress&nbsp;theme. </p>
<p><strong>Page&nbsp;Title</strong></p>
<p>Open your XHTML template with your favorite text editor and change&nbsp;this:</p>
<p><code>&nbsp;&lt;title&gt;&lt;/title&gt;</code></p>
<p>to&nbsp;this:</p>
<p><code>&lt;title&gt;&lt;?php wp_title(""); ?&gt; &lt;?php if(wp_title(" ", false)) { echo " | "; } ?&gt; &lt;?php bloginfo('name');&nbsp;?&gt;&lt;/title&gt;</code></p>
<p><strong>The CSS&nbsp;Stylesheet</strong></p>
<p>Remove the CSS stylesheet linking (in the head section of the XHTML template) and replace it with this&nbsp;code:</p>
<p><code>&lt;style type="text/css" media="screen"&gt;<br />
		@import url( &lt;?php bloginfo('stylesheet_url'); ?&gt; );<br />&nbsp;&lt;/style&gt;</code></p>
<p><strong>Add Action&nbsp;Hooks</strong></p>
<p>Just above the &lt;/head&gt; tag, you paste the following&nbsp;code:</p>
<p><code>&lt;?PHP wp_head();&nbsp;?&gt;</code></p>
<p>And this code above the &lt;/body&gt;&nbsp;tag:</p>
<p><code>&lt;?PHP wp_footer();&nbsp;?&gt;</code></p>
<p>These pieces of code make some WordPress plugins able to access your&nbsp;theme. </p>
<h2>4. Add The WordPress Content&nbsp;Loop</h2>
<p><a href="http://codex.wordpress.org/The_Loop" target="_blank">The Loop</a> is used by WordPress to display each of your posts. Copy and paste all this code inside the &lt;div&gt; where you want your content to appear (<a href="http://www.cashrevelations.com/downloads/XHTML-to-WordPress.zip">see the source&nbsp;files</a>).</p>
<p><code>&lt;?php if (have_posts())&nbsp;:&nbsp;?&gt;<br />
&lt;?php while (have_posts())&nbsp;:&nbsp;the_post();&nbsp;?&gt;</code></p>
<p>These tags below get the current post&#8217;s title, and other information (like date&nbsp;etc.): </p>
<p><code>&lt;h2 id="post-&lt;?php the_ID();&nbsp;?&gt;"&gt;<br />
&lt;a href="&lt;?php the_permalink()&nbsp;?&gt;" rel="bookmark" title="Permanent Link to &lt;?php the_title();&nbsp;?&gt;"&gt;<br />
&lt;?php the_title();&nbsp;?&gt;&lt;/a&gt;&lt;/h2&gt;<br />
&lt;small&gt;&lt;?php the_time('F jS, Y')&nbsp;?&gt; &lt;!-- by &lt;?php the_author()&nbsp;?&gt;&nbsp;--&gt;&lt;/small&gt;</code></p>
<p>This tag displays the content of the&nbsp;post:</p>
<p><code>&lt;div class="entry"&gt;<br />
&lt;?php the_content('Read the rest of this entry &amp;raquo;');&nbsp;?&gt;<br />&nbsp;&lt;/div&gt;</code></p>
<p>Below each post in the index.php file is a place to display more information (categories, date, and comment&nbsp;information):</p>
<p><code>&lt;p class="postmetadata"&gt;<br />
Posted in &lt;?php the_category(', ')&nbsp;?&gt;<br />
&lt;strong&gt;|&lt;/strong&gt;<br />
&lt;?php edit_post_link('Edit','','&lt;strong&gt;|&lt;/strong&gt;');&nbsp;?&gt;<br />
&lt;?php comments_popup_link('No Comments »', '1 Comment »', '% Comments&nbsp;»');&nbsp;?&gt;&lt;/p&gt;</code></p>
<p>The following tag ends The&nbsp;Loop: </p>
<p><code>&lt;?php&nbsp;endwhile;&nbsp;?&gt;</code></p>
<p>This code is directly after the end of The Loop, displays navigation controls to move forward and&nbsp;backward: </p>
<p><code>&lt;div class="navigation"&gt;<br />
&lt;div class="alignleft"&gt;&lt;?php posts_nav_link('','','&amp;laquo; Previous Entries')&nbsp;?&gt;&lt;/div&gt;<br />
&lt;div class="alignright"&gt;&lt;?php posts_nav_link('','Next Entries &amp;raquo;','')&nbsp;?&gt;&lt;/div&gt;<br />&nbsp;&lt;/div&gt;</code></p>
<p>If there is no posts to show&nbsp;up:</p>
<p><code>&lt;?php else&nbsp;:&nbsp;?&gt;<br />
 &lt;h2 class="center"&gt;Not Found&lt;/h2&gt;<br />
 &lt;p class="center"&gt;<br />
&lt;?php _e("Sorry, but you are looking for something that isn't here.");&nbsp;?&gt;&lt;/p&gt;<br />
&lt;?php&nbsp;endif;&nbsp;?&gt;</code></p>
<p>The WordPress Codex has an excellent explanation of the <a href="http://codex.wordpress.org/The_Loop_in_Action" target="_blank">The Loop in&nbsp;Action</a>.</p>
<h2>5. Add The&nbsp;Menu</h2>
<p>Many XHTML templates have the top menu within an unordered list. In that case you remove everything between the &lt;UL&gt; tags, and paste this code between&nbsp;them:</p>
<p><code>&lt;?php wp_list_categories('title_li=0');&nbsp;?&gt;</code></p>
<p>Our template didn&#8217;t have an unordered list as a menu - so we must make some changes in the CSS stylesheet. You can see the changes we did if you download <a href="http://www.cashrevelations.com/downloads/XHTML-to-WordPress.zip">the source files</a> to this tutorial. You can also read more about this in the WordPress Codex:&nbsp;<a href="http://codex.wordpress.org/Template_Tags/wp_list_pages" target="_blank">wp_list_pages</a>.</p>
<p>By now, you should have a functional WordPress theme. To take full advantage of the WordPress flexibility, you need some more work. It is now possible to use the theme as it is, but you will not be able to add widgets and people can not comment on your&nbsp;posts.</p>
<h1>Add Some Extra Tags To Your WP&nbsp;Theme</h1>
<p><strong>RSS Feed &#038; WP Version&nbsp;Info</strong></p>
<p>Paste the following code to the &lt;head&gt; section of the&nbsp;template:</p>
<p><code>&lt;meta name="generator" content="WordPress &lt;?php bloginfo('version'); ?&gt;" /&gt; </code></p>
<p><code>&lt;link rel="alternate" type="application/rss+xml" title="&lt;?php bloginfo('name'); ?&gt; RSS Feed" href="&gt;?php bloginfo('rss2_url'); ?&gt;"&nbsp;/&gt;</code></p>
<p>This code will add WP version info and your RSS feed to your&nbsp;theme.</p>
<p><strong>Blog&nbsp;Name</strong></p>
<p>Paste this code to logo section of the&nbsp;theme:</p>
<p><code>&lt;a href="&lt;?php bloginfo('url'); ?/"&gt;&lt;?php bloginfo('name');&nbsp;?&gt;&lt;/a&gt;</code></p>
<p>In our case it was inside the &lt;div id=&#8221;logo&#8221;&gt;&lt;/div&gt; - this code will automatically display your blog&nbsp;name.</p>
<p><strong>Images</strong></p>
<p>If there are images in your template XHTML layout (you don&#8217;t need to do this with images in your stylesheet or posts), paste the following just before the image&nbsp;URL:</p>
<p><code>&lt;?php bloginfo('template_directory');&nbsp;?&gt;</code></p>
<p>For example, change&nbsp;this:</p>
<p><code>&lt;img src="images/cnn.gif" alt=""&nbsp;/&gt;</code></p>
<p>to&nbsp;this:</p>
<p><code>&lt;img src="&lt;?php bloginfo('template_directory'); ?&gt;/images/cnn.gif" alt=""&nbsp;/&gt;</code></p>
<p><strong>Copyright </strong></p>
<p>Paste this code to the footer section of your&nbsp;theme:</p>
<p><code>Copyright &copy; 2010 &lt;?php bloginfo('name'); ?&gt;. All Rights&nbsp;Reserved.</code></p>
<p>In our case it was inside the &lt;div id=&#8221;footer_left&#8221;&gt;&lt;/div&gt; tags - this code will display copyright&nbsp;notice.</p>
<p>Now it is time to test your theme. Do not put it online before you have done that. It is always problems and some more tweaking  before it is presentable - and to test your theme you use your local <a href="http://cashrevelations.com/magazine/2010/01/install-wordpress-computer/">WordPress&nbsp;Installation</a>.</p>
<p>This ends the first part of this tutorial. In the next part, we make this XHTML template to look more like a real WordPress theme (with sidebar.php, footer.php etc.)<a href="http://cashrevelations.com/magazine/2010/08/xhtml-to-wordpress/">.</a> Good luck with your project, and do not forget to download <a href="http://www.cashrevelations.com/downloads/XHTML-to-WordPress.zip">the source&nbsp;files</a>.</p>
<ul>
<li><a href="http://www.cashrevelations.com/downloads/XHTML-to-WordPress.zip"><strong>Download The XHTML To WordPress Source&nbsp;Files</strong></a></li>
</ul>






	<a rel="nofollow" href="javascript:window.print();" title="Print this article!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/printer.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Convert%20XHTML%20Template%20Into%20Wordpress%20Theme&amp;body=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F" title="E-mail this story to a friend!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F&amp;title=Convert%20XHTML%20Template%20Into%20Wordpress%20Theme" title="Google"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F&amp;title=Convert%20XHTML%20Template%20Into%20Wordpress%20Theme" title="Live"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F&amp;title=Convert%20XHTML%20Template%20Into%20Wordpress%20Theme" title="del.icio.us"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F&amp;title=Convert%20XHTML%20Template%20Into%20Wordpress%20Theme" title="Digg"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F" title="Technorati"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F&amp;t=Convert%20XHTML%20Template%20Into%20Wordpress%20Theme" title="Facebook"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F&amp;title=Convert%20XHTML%20Template%20Into%20Wordpress%20Theme" title="StumbleUpon"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F&amp;t=Convert%20XHTML%20Template%20Into%20Wordpress%20Theme" title="MySpace"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F" title="TwitThis"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F" title="Propeller"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/propeller.gif" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F&amp;=Convert%20XHTML%20Template%20Into%20Wordpress%20Theme" title="YahooMyWeb"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F&amp;h=Convert%20XHTML%20Template%20Into%20Wordpress%20Theme" title="NewsVine"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://tailrank.com/share/?text=&amp;link_href=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F&amp;title=Convert%20XHTML%20Template%20Into%20Wordpress%20Theme" title="TailRank"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/tailrank.png" title="TailRank" alt="TailRank" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F08%2Fxhtml-to-wordpress%2F&amp;Title=Convert%20XHTML%20Template%20Into%20Wordpress%20Theme" title="BlinkList"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cashrevelations.com/magazine/2010/08/xhtml-to-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Install WordPress On Your Computer</title>
		<link>http://cashrevelations.com/magazine/2010/01/install-wordpress-computer/</link>
		<comments>http://cashrevelations.com/magazine/2010/01/install-wordpress-computer/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 21:02:23 +0000</pubDate>
		<dc:creator>Tommy Olovsson</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Installation]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://cashrevelations.com/magazine/?p=4304</guid>
		<description><![CDATA[To have WordPress installed locally on your computer is a blessing. In this short easy-to-follow tutorial you will learn how to install WordPress locally on your computer.]]></description>
			<content:encoded><![CDATA[<p><img src="http://cashrevelations.com/magazine/wp-content/media/install-wordpress-120x120.jpg" alt="Install Wordpress On Your Computer" title="Install Wordpress On Your Computer" width="120" height="120" class="alignleft size-thumbnail wp-image-4363" /> To have WordPress installed locally on your computer is a blessing. You can try out new themes and plugins and other things without messing around with your real online blog. I enjoy it because it is fun too. It allows me to test things I never would dream about to test on my online blogs. It is really simple to install WordPress on your computer and one of the most practical things you can&nbsp;do.</p>
<p>In this short easy-to-follow tutorial you will learn how to install WordPress locally on your computer. We will do the installation in the following order:
<ul>
<li>Downloading&nbsp;Softwares</li>
<li>Installation of XAMPP&nbsp;Lite</li>
<li>Starting the XAMPP&nbsp;Lite</li>
<li>Setting up MySQL&nbsp;Database</li>
<li>Create a WordPress database&nbsp;user</li>
<li>Installing&nbsp;WordPress</li>
</ul>
<p>The installation of XAMPP Lite is really simple - a tutorial for that is almost not necessary, but it is here for reference reasons and you need only to read that part (The Installation of XAMPP Lite) if you run in to some&nbsp;problems. </p>
<h2>Install WordPress On Your Computer Video&nbsp;Tutorials</h2>
<p>This video tutorial in two parts on how to install WordPress on your Windows computer using XAMPP Lite teach out a slightly different method to make the&nbsp;installation. </p>
<ul>
<li><a href="http://www.youtube.com/watch?v=4YVwKnBKCGE" target="_blank"><strong>How to Run WordPress on Your Windows Computer Using XAMPP - Part&nbsp;1</strong></a></li>
<li><a href="http://www.youtube.com/watch?v=7rE8LXtOdYU" target="_blank"><strong>How to Run WordPress on Your Windows Computer Using XAMPP - Part&nbsp;2</strong></a></li>
</ul>
<p>One main difference is that the author chooses to make the XAMPP installation without the Installer and that is a bit more complicated (but not much more). If you feel for that, use the method in the video tutorial. Or use the videos like a&nbsp;reference.</p>
<h2>The Downloads You&nbsp;Need</h2>
<p>You need to download the following two softwares (links below). They are both free and can be downloaded without any prior&nbsp;registration.</p>
<p><a href="http://wordpress.org/" target="_blank"><strong>WordPress Publishing Platform</strong></a><br />
WordPress is an open source blog publishing application powered by PHP and MySQL which can also be used for basic content management. It has many features including a user-friendly workflow, a rich <a href="http://wordpress.org/extend/">plugin</a> architecture, and an advanced templating&nbsp;system.</p>
<p><a href="http://www.apachefriends.org/en/xampp-windows.html" target="_blank"><strong>XAMPP For Windows - XAMPP Lite</strong></a><br />
XAMPP is an easy to install Apache distribution containing MySQL, PHP and Perl. XAMPP is very easy to use as well. Be sure to download the XAMPP Lite version, with the handy automatic installer (EXE), of the&nbsp;software.</p>
<p>That&#8217;s all you need to download. You are now ready to begin the&nbsp;installation.</p>
<h2>The Installation of XAMPP&nbsp;Lite</h2>
<p>The easiest way to install XAMPP Lite is to use the self-extracting archive - you can see images <a href="http://www.apachefriends.org/en/xampp-windows.html#522" target="_blank">HERE</a>. If you by some reason chose to install the XAMPP Lite without the installer, then you have instructions&nbsp;<a href="http://www.apachefriends.org/en/xampp-windows.html#521" target="_blank">HERE</a></p>
<p><strong>Installation</strong></p>
<ul>
<li>Start the EXE file by double clicking on it (if you saved the archive before), choose a directory and click on&nbsp;&#8220;Install&#8221;.</li>
<li>The first dialog box: asks you to select which language you prefer, select your&nbsp;language.</li>
<li>The next dialog you will see is the first page of the XAMPP Setup Wizard - click&nbsp;next.</li>
<li>The third dialog: choose a directory or destination for the installation - click&nbsp;next.</li>
<li>The next dialog is the XAMPP Options dialog box. Choose install Apache and MySQL services - if you want you can also choose to create desktop icon and a folder in the start menu. Click&nbsp;Install.</li>
</ul>
<p>You are now finished with the XAMPP Lite installation. The next you will do is to start up your Apache and MySQL&nbsp;services.</p>
<p><strong>Starting the XAMPP&nbsp;Lite</strong></p>
<p>To start up your Apache and MySQL services, do the&nbsp;following:</p>
<ul>
<li>Open the xampplite folder. You should be seeing a screen with these&nbsp;files:</li>
<p></p>
<p><img src="http://cashrevelations.com/magazine/wp-content/media/xampp-lite-folder.jpg" alt="XAMPP Lite folder" title="XAMPP Lite folder" width="550" height="397" class="alignnone size-full wp-image-4321" /></p>
<li>Double click on the file with the name&nbsp;&#8220;xampp-control&#8221;.</li>
<li>The control panel looks like&nbsp;this:</li>
<p></p>
<p><img src="http://cashrevelations.com/magazine/wp-content/media/xampp-control-panel-application.jpg" alt="XAMPP Lite control panel application" title="XAMPP Lite control panel application" width="550" height="397" class="alignnone size-full wp-image-4335" /> </p>
<li>Click the Start button beside Apache. If you get a Windows Firewall warning: choose&nbsp;Unblock.</li>
<li>Click the Start button beside MySQL. If you get a Windows Firewall warning: choose Unblock. If everything works, the control Panel log updated with &#8220;Running&#8221; with a green background besides the Apache and MySQL&nbsp;services.</li>
</ul>
<p>You have now started the XAMPP Lite. You can test if it works by opening your browser and navigate to localhost using the following path:&nbsp;<code>http://localhost</code>.</p>
<p><strong>More to read: <a href="http://www.apachefriends.org/en/xampp-windows.html#522" target="_blank">XAMPP for Windows - The&nbsp;Installation</a></strong></p>
<h2>Setting Up A MySQL Database For&nbsp;WordPress</h2>
<p>The easy way to create a MySQL database would be to use phpMyAdmin (it comes with the XAMPP Lite&nbsp;package).</p>
<ul>
<li>Navigate to phpMyAdmin through your web browser. The URL is:&nbsp;<code>http://localhost/phpmyadmin/</code></li>
<li>Create a WordPress database by entering in a name (In this tutorial we call it wordpress_db) and click the Create button. You can use the values exactly as they are on the&nbsp;image.</li>
</ul>
<p><img src="http://cashrevelations.com/magazine/wp-content/media/phpmyadmin-wordpress-database.jpg" alt="phpMyAdmin - MySQL Database setup for Wordpress" title="phpMyAdmin - MySQL Database setup for Wordpress" width="550" height="397" class="alignnone size-full wp-image-4325" /></p>
<p>You have now created a database with the name&nbsp;&#8220;wordpress_db&#8221;.</p>
<p><strong>Create a WordPress database&nbsp;user</strong></p>
<ul>
<li>Go to phpMyAdmin home by either clicking on the logo on the top left or clicking on the home&nbsp;icon.</li>
<li>Click on the Privileges tab and then click on &#8220;Add a New&nbsp;User&#8221;.</li>
<li> For the User name field, type in any name, this tutorial uses&nbsp;&#8220;example_user&#8221;.</li>
<li>For Host, select&nbsp;Local.</li>
<li>See the image below on how to fill in your information. Click on &#8220;Generate&#8221; next to Generate&nbsp;Password.</li>
<p></p>
<p><img src="http://cashrevelations.com/magazine/wp-content/media/add-a-new-user.jpg" alt="Add a new database user in MySQL" title="Add a new database user in MySQL" width="548" height="222" class="alignnone size-full wp-image-4326" /></p>
<li>Write down the User name and Password you used, because you will need them&nbsp;later.</li>
<li>Set the Global Privileges of &#8220;example_user&#8221;. For this local installation – just check all of&nbsp;them.</li>
<li> Click the Go button to create the database user. You should now see a confirmation that you have created the user&nbsp;successfully.</li>
</ul>
<p>Add your newly created user to the database you created earlier by in the &#8220;Database-specific privileges&#8221; fieldset, in the &#8220;Add privileges on the following database&#8221; field, selecting&nbsp;&#8220;wordpress\_db&#8221;.</p>
<p>You should now be finished with your MySQL Database&nbsp;setup.</p>
<p><strong>More to read: <a href="http://www.phpmyadmin.net/home_page/docs.php" target="_blank">phpMyAdmin -&nbsp;Documentation</a></strong></p>
<h2>Installing WordPress On Your&nbsp;Computer</h2>
<ul>
<li>Unzip (extract) the WordPress ZIP file you downloaded and move the entire contents into the &#8220;htdocs&#8221; folder inside the XAMPP Lite&nbsp;folder.</li>
<li>Inside the WordPress folder, open wp-config-sample.php file using your favorite text&nbsp;editor.</li>
<li> Fill in the information with your own database information like, for example,&nbsp;this:</li>
<p></p>
<p>                    <code>/** The name of the database for WordPress */<br />
                     define('DB_NAME', 'wordpress_db');<br />
                      /** MySQL database username */<br />
                     define('DB_USER', 'example_user');<br />
                      /** MySQL database password */<br />
                     define('DB_PASSWORD', 'TypeYourPasswordHere');<br />
                      /** MySQL hostname */<br />
                      define('DB_HOST',&nbsp;'localhost');</code></p>
<li>Save your configurations like &#8220;wp-config.php&#8221; (not&nbsp;&#8220;wp-config-sample.php&#8221;).</li>
</ul>
<p>Open your browser and navigate to the install script: <code>http://localhost/wordpress/wp-admin/install.php</code>. If you did install correctly, you should now see the WordPress welcome screen. Follow the instructions given by your WordPress&nbsp;installation.</p>
<p>You are now finished with installing WordPress on your&nbsp;computer.</p>
<p><strong>More to read: <a href="http://codex.wordpress.org/Getting_Started_with_WordPress" target="_blank">Getting Started with&nbsp;WordPress</a></strong></p>






	<a rel="nofollow" href="javascript:window.print();" title="Print this article!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/printer.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Install%20WordPress%20On%20Your%20Computer&amp;body=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F" title="E-mail this story to a friend!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F&amp;title=Install%20WordPress%20On%20Your%20Computer" title="Google"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F&amp;title=Install%20WordPress%20On%20Your%20Computer" title="Live"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F&amp;title=Install%20WordPress%20On%20Your%20Computer" title="del.icio.us"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F&amp;title=Install%20WordPress%20On%20Your%20Computer" title="Digg"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F" title="Technorati"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F&amp;t=Install%20WordPress%20On%20Your%20Computer" title="Facebook"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F&amp;title=Install%20WordPress%20On%20Your%20Computer" title="StumbleUpon"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F&amp;t=Install%20WordPress%20On%20Your%20Computer" title="MySpace"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F" title="TwitThis"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F" title="Propeller"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/propeller.gif" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F&amp;=Install%20WordPress%20On%20Your%20Computer" title="YahooMyWeb"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F&amp;h=Install%20WordPress%20On%20Your%20Computer" title="NewsVine"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://tailrank.com/share/?text=&amp;link_href=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F&amp;title=Install%20WordPress%20On%20Your%20Computer" title="TailRank"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/tailrank.png" title="TailRank" alt="TailRank" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2010%2F01%2Finstall-wordpress-computer%2F&amp;Title=Install%20WordPress%20On%20Your%20Computer" title="BlinkList"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cashrevelations.com/magazine/2010/01/install-wordpress-computer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Easy Blogger Tips</title>
		<link>http://cashrevelations.com/magazine/2009/12/easy-blogger-tips/</link>
		<comments>http://cashrevelations.com/magazine/2009/12/easy-blogger-tips/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 17:19:09 +0000</pubDate>
		<dc:creator>Tommy Olovsson</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Blogger]]></category>

		<guid isPermaLink="false">http://cashrevelations.com/magazine/?p=3239</guid>
		<description><![CDATA[5 simple Blogger tips we think you can use on your own blog even if you are an absolute beginner - tips that are easy to implement and make significant difference to your blogs functionality.]]></description>
			<content:encoded><![CDATA[<p><a href="http://disqus.com/" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/disqus.jpg" alt="Disqus Comments" title="Disqus Comments" width="450" height="252" class="size-full wp-image-3889" /></a><br />
<em>Not everybody is created for coding and advanced webdesign, but with a relaxed attitude and some amount of concentration you can make if not wonders exactly,<br />
but at least big improvements with your blog from Blogger. It&#8217;s really not difficult<br />
and if something doesn&#8217;t work from the beginning, you just try again. Nothing catastrophic will happen from trying - only make a <a href="http://cashrevelations.com/magazine/2009/10/how-to-change-blogger-template/">back-up</a> before you begin.<br />
</em></p>
<p>If you want a truly radical change of your blogs appearance, the absolute easiest way is to change your Blogger template. Here you can find some additional easy-to-follow info about that: <a href="http://cashrevelations.com/magazine/2009/10/how-to-change-blogger-template/">How To Change Blogger&nbsp;Template</a>. </p>
<p>Cashrevelations.com has selected out 5 simple Blogger tips we think you can use on your own blog even if you are an absolute beginner - Blogger tips that are easy to implement and make significant difference to your blogs functionality and&nbsp;appearance.</p>
<h2>5 Easy Blogger&nbsp;Tips</h2>
<p><a href="http://www.lijit.com/signup/start" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/lijit.jpg" alt="Lijit Search Tool " title="Lijit Search Tool " width="550" height="243" class="size-full wp-image-3885" /></a></p>
<p><strong>1.</strong> <a href="http://www.linkwithin.com/learn?ref=widget" target="_blank"><strong>LinkWithin - Related Posts With Thumbnails</strong></a><br />
LinkWithin is a blog widget that appears under each post, linking to related stories from your blog archive. The widget links to stories that are relevant and interesting to readers of a particular post, keeping them engaged with your blog, and increasing your traffic. The widget is free and ad-free - no signup required.<br /><a href="http://fortheloveofcooking-recipes.blogspot.com/2009/06/orange-thai-flank-steak.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>2.</strong> <a href="http://disqus.com/" target="_blank"><strong>Disqus Comments</strong></a><br />
Disqus Comments is a comment system and moderation tool for your site. This service lets you add next-gen community management and social web integrations to any site on any platform. Built-in compatibility with <a href="http://disqus.com/profile/" target="_blank">Disqus Profile</a> means that you can encourage verified commenter&nbsp;profiles.</p>
<p><strong>3.</strong> <a href="http://feedburner.google.com/" target="_blank"><strong>Feedburner</strong></a><br />
Cashrevelations.com <a href="http://feeds2.feedburner.com/cashrevelations" target="_blank">uses Feedburner</a> for feed statistics, adding feed flare enhancements to our feed and monitoring users subscriptions. It is an easy way to add a more &#8220;tasty&#8221; look for your feed and also more subscription alternatives to your readers. Blogger lets you specify your Feedburner info in the ‘Site Feed’ tab inside your&nbsp;dashboard.</p>
<p><strong>4.</strong> <a href="http://www.lijit.com/signup/start" target="_blank"><strong>Lijit Search Tool </strong></a><br />
Lijit provides a search tool that will not only search your blog, but also search the blogs of your choice, and related sites (like YouTube, Flickr, Picasa, del.icio.us, etc.) that you choose and you and your friends use regularly. You can see the tool in action&nbsp;<a href="http://spoilerslost.blogspot.com/#axzz0ZPLUVbqd" target="_blank">HERE</a>.</p>
<p><strong>5.</strong> <a href="http://www.addthis.com/" target="_blank"><strong>Social Bookmarking Widget</strong></a><br />
AddThis helps your users share your content everywhere. If you by some reason don&#8217;t like the design of the AddThis button, then <a href="http://www.lasvak.com/2008/10/socialbookmarking-blogger-widget/" target="_blank">Lavsak.com</a> and <a href="http://www.sociofluid.com/blogger-widget.php" target="_blank">Sociofluid.com</a> offer copy and paste social bookmarking widgets of different styles. The Lavsak.com widget is not at all the same advanced as the AddThis widget but it is anyway an&nbsp;alternative. </p>
<p>If you search on Google you will find a lot of (more or less) simple and useful Blogger tips. But remember, too much widgets will dramatically slow down your blog and make it less attractive. Again, try out what&#8217;s working for your blog and think practically: do the last widget you added really fill any function?  If not, remove it quickly. If you don&#8217;t see any reasons, no one else will&nbsp;either.  </p>
<p>Choose out functions for your blog with moderation, and have the principles of simplicity and functionality in mind. And have a reason or goal with every single widget you&nbsp;add.</p>






	<a rel="nofollow" href="javascript:window.print();" title="Print this article!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/printer.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Easy%20Blogger%20Tips&amp;body=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F" title="E-mail this story to a friend!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F&amp;title=Easy%20Blogger%20Tips" title="Google"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F&amp;title=Easy%20Blogger%20Tips" title="Live"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F&amp;title=Easy%20Blogger%20Tips" title="del.icio.us"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F&amp;title=Easy%20Blogger%20Tips" title="Digg"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F" title="Technorati"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F&amp;t=Easy%20Blogger%20Tips" title="Facebook"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F&amp;title=Easy%20Blogger%20Tips" title="StumbleUpon"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F&amp;t=Easy%20Blogger%20Tips" title="MySpace"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F" title="TwitThis"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F" title="Propeller"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/propeller.gif" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F&amp;=Easy%20Blogger%20Tips" title="YahooMyWeb"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F&amp;h=Easy%20Blogger%20Tips" title="NewsVine"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://tailrank.com/share/?text=&amp;link_href=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F&amp;title=Easy%20Blogger%20Tips" title="TailRank"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/tailrank.png" title="TailRank" alt="TailRank" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Feasy-blogger-tips%2F&amp;Title=Easy%20Blogger%20Tips" title="BlinkList"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cashrevelations.com/magazine/2009/12/easy-blogger-tips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS Optimization Tutorial</title>
		<link>http://cashrevelations.com/magazine/2009/12/css-optimization-tutorial/</link>
		<comments>http://cashrevelations.com/magazine/2009/12/css-optimization-tutorial/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 17:04:51 +0000</pubDate>
		<dc:creator>Tommy Olovsson</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://cashrevelations.com/magazine/?p=3772</guid>
		<description><![CDATA[Nick and Michael from the Creare Group discuss the advantages of having a lean CSS file. They also go on to show you some simple optimization techniques.]]></description>
			<content:encoded><![CDATA[<p><a href="http://cashrevelations.com/magazine/2009/12/css-optimization-tutorial/"><em>Click here to view the embedded&nbsp;video.</em></a></p>
<p></p>
<p><a href="http://www.youtube.com/watch?v=ybeZ4MaUBbs" target="_blank">crearegroup</a>: Nick and Michael from the Creare Group discuss the advantages of having a lean CSS file. They also go on to show some simple optimization techniques followed by a song to remember the&nbsp;process. </p>
<p><a href="http://www.crearedesign.co.uk/" target="_blank">Creare Group</a> is a web design and Internet marketing studio that specializes in web design, website optimization and marketing. On their <a href="http://www.youtube.com/user/crearegroup" target="_blank"> YouTube channel</a> you can find more interesting video tutorials on web design, SEO and related&nbsp;topics.</p>
<h2>The Automated Online&nbsp;Alternative</h2>
<p>Like with so many other things nowadays, CSS optimization and cleaning up can be done automatically with some of those various online web services, completely free of course. Below you find some handy online CSS resources that will do the work for&nbsp;you.</p>
<p><strong>1.</strong> <a href="http://www.codebeautifier.com/" target="_blank"><strong>Code Beautifier</strong></a><br />
Code Beautifier  CSS Formatter and Optimizer - Online CSS parser and&nbsp;Optimizer.</p>
<p><strong>2.</strong> <a href="http://services.immike.net/css-checker/" target="_blank"><strong>CSS Redundancy Checker</strong></a><br />
Use this tool to find CSS selectors that aren’t used by any of your HTML files and may be redundant. Manually enter the URI for each page that you want to&nbsp;test.</p>
<p><strong>3.</strong> <a href="http://www.cssoptimiser.com/" target="_blank"><strong>Online CSS Optimizer</strong></a><br />
Online CSS Optimizer is a web tool for reducing the file size  of cascading style sheets. The result might look messy sometimes, so be sure to back up your original file before using the optimized&nbsp;one.</p>
<p><strong>4.</strong> <a href="http://www.lonniebest.com/FormatCSS/" target="_blank"><strong>Format CSS</strong></a><br />
Automatically format your CSS so they are easy to read and edit. You can use this tool to reorganize your CSS. Simply submit your cascading style sheet, and you will receive a suggested&nbsp;reorganization.</p>
<p><strong>5.</strong> <a href="http://jigsaw.w3.org/css-validator/" target="_blank"><strong>CSS Validation Service</strong></a><br />
Check CSS and (X)HTML documents with style sheets. The W3C CSS Validation Service is a free software created by the W3C to help Web designers and Web developers to check Cascading Style&nbsp;Sheets.  </p>
<p>If you are interested of further improvement of your CSS, Cashrevelations.com has collected some CSS resources you can use for free: <a href="http://cashrevelations.com/magazine/2009/08/60-tools-to-optimize-your-css/">60 Tools To Optimize Your&nbsp;CSS</a>.</p>






	<a rel="nofollow" href="javascript:window.print();" title="Print this article!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/printer.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=CSS%20Optimization%20Tutorial&amp;body=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F" title="E-mail this story to a friend!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F&amp;title=CSS%20Optimization%20Tutorial" title="Google"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F&amp;title=CSS%20Optimization%20Tutorial" title="Live"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F&amp;title=CSS%20Optimization%20Tutorial" title="del.icio.us"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F&amp;title=CSS%20Optimization%20Tutorial" title="Digg"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F" title="Technorati"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F&amp;t=CSS%20Optimization%20Tutorial" title="Facebook"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F&amp;title=CSS%20Optimization%20Tutorial" title="StumbleUpon"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F&amp;t=CSS%20Optimization%20Tutorial" title="MySpace"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F" title="TwitThis"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F" title="Propeller"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/propeller.gif" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F&amp;=CSS%20Optimization%20Tutorial" title="YahooMyWeb"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F&amp;h=CSS%20Optimization%20Tutorial" title="NewsVine"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://tailrank.com/share/?text=&amp;link_href=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F&amp;title=CSS%20Optimization%20Tutorial" title="TailRank"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/tailrank.png" title="TailRank" alt="TailRank" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Fcss-optimization-tutorial%2F&amp;Title=CSS%20Optimization%20Tutorial" title="BlinkList"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cashrevelations.com/magazine/2009/12/css-optimization-tutorial/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fresh MooTools News</title>
		<link>http://cashrevelations.com/magazine/2009/12/fresh-mootools-news/</link>
		<comments>http://cashrevelations.com/magazine/2009/12/fresh-mootools-news/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 17:17:27 +0000</pubDate>
		<dc:creator>Tommy Olovsson</dc:creator>
		
		<category><![CDATA[Resources]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[MooTools]]></category>

		<guid isPermaLink="false">http://cashrevelations.com/magazine/?p=3590</guid>
		<description><![CDATA[10+ new and fresh MooTools techniques with demos you can use for your site or blog. MooTools news items in this list are released or updated during the period October to December 2009. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hotajax.org/mootools/photos-other-plugins/653-floom-blinds-effect-mootools-slideshow.html" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/floom-slideshow.jpg" alt=" Floom - Blinds Effect MooTools Slideshow" title=" Floom - Blinds Effect MooTools Slideshow" width="550" height="247" class="aligncenter size-full wp-image-3650" /></a></p>
<p>News on different JavaScript techniques is coming often recently. In our article <a href="http://cashrevelations.com/magazine/2009/10/ajax-and-javascript/">100 Ajax And JavaScript Techniques</a> we tried to cover what we considered as the most useful techniques. But since then there is more fresh news on the MooTools horizon. For some time ago we did a follow up article on JavaScript techniques, <a href="http://cashrevelations.com/magazine/2009/11/new-jquery-techniques/">10 New jQuery Techniques</a>, and we decided to do something similar with MooTools - a short update on&nbsp;MooTools.</p>
<p>The MooTools news items in this list are released or updated during the period October to December 2009 - as far as we can understand. You are so welcome to update us if you think something is missing in the&nbsp;list. </p>
<p class="note"><a href="http://en.wikipedia.org/wiki/MooTools" target="_blank">Wikipedia</a>: MooTools is an open source, lightweight, modular object-oriented programming JavaScript web application framework released under the MIT&nbsp;License.</p>
<p>Cashrevelations.com presents 10+ New MooTools Techniques with demos you can use for your site or blog. It is also possible you might be interested to take a closer look at the MooTools JavaScript Framework  -&nbsp;<a href="http://mootools.net/" target="_blank">MooTools.net</a>.</p>
<h2>MooTools&nbsp;Techniques</h2>
<p><strong>1.</strong> <a href="http://davidwalsh.name/scroll-sidebar" target="_blank"><strong>MooTools ScrollSidebar</strong></a><br />
ScrollSidebar allows you to attach an element to a place on the screen and animate the menu to the current scroll position.<br /><a href="http://davidwalsh.name/dw-content/scrolling-sidebar.php" target="_blank">View&nbsp;Demo</a></p>
<p><strong>2.</strong> <a href="http://net.tutsplus.com/tutorials/html-css-techniques/learn-how-to-create-a-retro-animated-flip-down-clock/" target="_blank"><strong>Retro Animated Flip-Down Clock</strong></a><br />
In this tutorial, you will create an animated flip down clock inspired by the 70&#8217;s. Using the Mootools framework, Alexandru Pitea tried to replicate the flip action of the pads and make it as lifelike as possible. <br /><a href="http://nettuts.s3.amazonaws.com/470_clock/Source/index.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>3.</strong> <a href="http://pinoytech.org/blog/post/Add-Icons-to-External-Links-with-Mootools-and-CSS" target="_blank"><strong>Icons To External Links</strong></a><br />
A trend going on around on websites is putting icons on links that point to web pages externally. If you want that on your site, this simple script will dynamically take care of that for you with the help of Mootools and some CSS.<br /><a href="http://pinoytech.org/code/add_icons_to_external_links_with_mootools" target="_blank">View&nbsp;Demo</a></p>
<p><strong>4.</strong> <a href="http://davidwalsh.name/text-select-widget" target="_blank"><strong>New York Times-Style Text Selection Widget</strong></a><br />
NYT’s text selection widget listens for text selection and presents the user with a “search” icon they may click on to learn more about that term. Also available as jQuery.<br /><a href="http://davidwalsh.name/dw-content/selection-search.php" target="_blank">View&nbsp;Demo</a></p>
<p><strong>5.</strong> <a href="http://www.hotajax.org/mootools/photos-other-plugins/653-floom-blinds-effect-mootools-slideshow.html" target="_blank"><strong>Floom - Blinds Effect MooTools Slideshow</strong></a><br />
Floom is a Blinds-effect MooTolls slideshow plugin. There are two ways of setting up Floom. One is the object way, where you specify the image url and the caption using the key-value notation. The second one is by simply passing an element collection, ie. <code>$$('#blinds img')</code>, where the passed element has to be the actual image collection.<br /><a href="http://www.hotajax.org/demo/mootools/Floom%201.0/Floom%201.0.htm" target="_blank">View&nbsp;Demo</a></p>
<p><strong>6.</strong> <a href="http://youngdutchdesign.com/mootools-1-2-cvlinkselect-class" target="_blank"><strong>Mootools 1.2 cvLinkSelect Class</strong></a><br />
This class links the select boxes to each other. When you change the first select element the options for the following select boxes are loaded.<br /><a href="http://youngdutchdesign.com/examples/cvlinkselect.php" target="_blank">View&nbsp;Demo</a></p>
<p><a href="http://www.nitinh.com/2009/11/another-beautiful-thumbnail-hover-effect-using-mootools/" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/thumbnail-hover-effect-mootools.jpg" alt="Thumbnail Hover Effect Using Mootools" title="Thumbnail Hover Effect Using Mootools" width="450" height="450" class="aligncenter size-full wp-image-3648" /></a></p>
<p><strong>7.</strong> <a href="http://www.nitinh.com/2009/11/another-beautiful-thumbnail-hover-effect-using-mootools/" target="_blank"><strong>Thumbnail Hover Effect Using Mootools</strong></a><br />
Image is splitting in the middle using two instances of the same image. One instance goes toward left while second image goes right, in effect giving an illusion that image is splitting in middle.<br /><a href="http://www.nitinh.com/static/another_thumb/index.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>8.</strong> <a href="http://davidwalsh.name/mootools-pull-quotes" target="_blank"><strong>Pull Quotes With MooTools</strong></a><br />
Chris Coyier authored a post titled <a href="http://css-tricks.com/better-pull-quotes/" target="_blank">Better Pull Quotes: Don’t Repeat Markup</a> a while back. In his post he created great-looking pull quotes without repeating any content — instead he uses jQuery to dynamically create the pull quotes. The following is the MooTools method for doing so.<br /><a href="http://davidwalsh.name/dw-content/mootools-pull-quote.php" target="_blank">View&nbsp;Demo</a></p>
<p><strong>9.</strong> <a href="http://moojito.cz/index-man.htm" target="_blank"><strong>Animated TwitterReader</strong></a><br />
Animated TwitterReader class with MooTools. The MooTools plug-in for downloading and displaying Twitter status via Twitter Search API - created by Jakub Karlec.<br /><a href="http://moojito.cz/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>10.</strong> <a href="http://matte.ws/mootools-navigation-plugin" target="_blank"><strong>Mootools Navigation Plugin</strong></a><br />
The goal of this plugin is to create a complex navigation menu as seamless as possible. All you need to do is create a standard unordered list and the plugin will do the rest.<br /><a href="http://matte.ws/demos/mootools-navigation-plugin.php" target="_blank">View&nbsp;Demo</a></p>
<p><strong>11.</strong> <a href="http://mootools.net/docs/more/Core/Depender" target="_blank"><strong>Depender</strong></a><br />
A new plugin called Depender which uses MooTools dependency mappings to allow you to lazy load additional scripts on the fly based on what you need.<br /><a href="http://mootools.net/docs/more/Core/Depender#Depender:Example" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>12.</strong> <a href="http://mooshell.net/" target="_blank"><strong>MooShell - Shell Editor</strong></a><br />
MooShell Shell Editor allows you to paste your HTML, CSS, and MooTools JavaScript into the page and easy test your snippets before implementing.<br /><a href="http://mooshell.net/" target="_blank">View&nbsp;Demo</a> </p>
<p>The MooTools Techniques are not in any particular order and as usual you decide what fits best for your purposes and demands - and Cashrevelations.com is not affiliated with any of the plugin or tutorial&nbsp;authors.</p>
<p><strong>More about&nbsp;JavaScript:</strong></p>
<ul>
<li><a href="http://cashrevelations.com/magazine/2009/10/ajax-and-javascript/"><strong>100 Ajax And&nbsp;JavaScript&nbsp;Techniques</strong></a></li>
<li><a href="http://cashrevelations.com/magazine/2009/11/40-javascript-tools/"><strong>40&nbsp;JavaScript&nbsp;Tools</strong></a></li>
<li><a href="http://cashrevelations.com/magazine/2009/11/new-jquery-techniques/"><strong>10 New jQuery&nbsp;Techniques</strong></a></li>
</ul>






	<a rel="nofollow" href="javascript:window.print();" title="Print this article!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/printer.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Fresh%20MooTools%20News&amp;body=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F" title="E-mail this story to a friend!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F&amp;title=Fresh%20MooTools%20News" title="Google"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F&amp;title=Fresh%20MooTools%20News" title="Live"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F&amp;title=Fresh%20MooTools%20News" title="del.icio.us"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F&amp;title=Fresh%20MooTools%20News" title="Digg"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F" title="Technorati"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F&amp;t=Fresh%20MooTools%20News" title="Facebook"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F&amp;title=Fresh%20MooTools%20News" title="StumbleUpon"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F&amp;t=Fresh%20MooTools%20News" title="MySpace"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F" title="TwitThis"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F" title="Propeller"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/propeller.gif" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F&amp;=Fresh%20MooTools%20News" title="YahooMyWeb"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F&amp;h=Fresh%20MooTools%20News" title="NewsVine"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://tailrank.com/share/?text=&amp;link_href=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F&amp;title=Fresh%20MooTools%20News" title="TailRank"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/tailrank.png" title="TailRank" alt="TailRank" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F12%2Ffresh-mootools-news%2F&amp;Title=Fresh%20MooTools%20News" title="BlinkList"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cashrevelations.com/magazine/2009/12/fresh-mootools-news/feed/</wfw:commentRss>
		</item>
		<item>
		<title>10 New jQuery Techniques</title>
		<link>http://cashrevelations.com/magazine/2009/11/new-jquery-techniques/</link>
		<comments>http://cashrevelations.com/magazine/2009/11/new-jquery-techniques/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 19:14:54 +0000</pubDate>
		<dc:creator>Tommy Olovsson</dc:creator>
		
		<category><![CDATA[Resources]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://cashrevelations.com/magazine/?p=3425</guid>
		<description><![CDATA[10 New jQuery Techniques (developed between Oct - Nov 2009) with demos that can enhance and bring some interactivity to your website or blog and with that make them a bit more user friendly. ]]></description>
			<content:encoded><![CDATA[<p><em>Since we did our research and wrote the article <a href="http://cashrevelations.com/magazine/2009/10/ajax-and-javascript/">100 Ajax And JavaScript Techniques</a> some new jQuery techniques were born or updated with new features. Apart from being practical and good solutions to different presentation problems, they are also very funny to play around with - a bit like toys for grown-ups. So, we decided to list those new techniques we think could be most useful in a modern webdesign. </em></p>
<p><a href="http://tympanus.net/codrops/2009/11/23/jcapslide-a-jquery-image-caption-plugin/" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/jcapslide-image-caption-plugin.jpg" alt="jCapSlide - jQuery Image Caption Plugin" title="jCapSlide - jQuery Image Caption Plugin" width="437" height="274" class="aligncenter size-full wp-image-3478" /></a></p>
<p class="note"><a href="http://en.wikipedia.org/wiki/Jquery" target="_blank">Wikipedia</a>: jQuery is a lightweight JavaScript library that emphasizes interaction between JavaScript and HTML. Licensed under the MIT License and the GNU&nbsp;License. </p>
<p>Cashrevelations.com presents 10 New jQuery Techniques with demos that can enhance and bring some interactivity to your website or blog and with that make them a bit more user friendly. You might also be interested to visit <a href="http://jquery.com/" target="_blank">jQuery - The JavaScript&nbsp;Library</a>.</p>
<h2>jQuery&nbsp;Techniques</h2>
<p><strong>1.</strong> <a href="http://buildinternet.com/2009/11/making-an-interactive-picture-with-jquery/" target="_blank"><strong>Interactive Picture With jQuery</strong></a><br />
In this tutorial you will learn how to piece together an interactive picture – aka an image that contains tooltips and popup boxes. The original inspiration for this tutorial came from the <a href="http://www.ikea.com/us/en/catalog/categories/departments/living_room" target="_blank">IKEA website</a>.<br /><a href="http://static.buildinternet.com/live-tutorials/interactive-picture/index.html" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>2.</strong> <a href="http://tympanus.net/codrops/2009/11/23/jcapslide-a-jquery-image-caption-plugin/" target="_blank"><strong>jCapSlide - jQuery Image Caption Plugin</strong></a><br />
Plugin for creating nice sliding captions for images. When hovering over the image, the caption appears and the image gets a semi-transparent color overlay.<br /><a href="http://tympanus.net/jCapSlide/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>3.</strong> <a href="http://gettopup.com/" target="_blank"><strong>TopUp - JavaScript Pop Up</strong></a><br />
TopUp is an easy to use JavaScript library for unobtrusively displaying images and webpages in a Web 2.0 approach of popups. The library is jQuery and jQuery UI driven in order to maintain cross-browser compatibility and compactness. Beta release.<br /><a href="http://gettopup.com/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>4.</strong> <a href="http://tutorialzine.com/2009/10/jquery-twitter-ticker/" target="_blank"><strong>jQuery Twitter Ticker</strong></a><br />
In this tutorial you will learn how to create a jQuery &#038; CSS twitter ticker which utilizes Twitter’s Search API. It will show your or your friends’ latest tweets, and will not require any server side code or databases.<br /><a href="http://demo.tutorialzine.com/2009/10/jquery-twitter-ticker/demo.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>5.</strong> <a href="http://www.moretechtips.net/2009/11/twitter-trackbacks-widget-jquery-plugin.html" target="_blank"><strong>Twitter Trackbacks Widget - jQuery Plugin </strong></a><br />
Highly customizable Twitter trackbacks widget to integrate tweets that mention your post into your blog. Each tweet comes with reply and retweet links to get more readers engaged in your story conversation. Display tweets as a bar with transition effects or as a fixed list. Many transition options like opacity, height and font-size.<br /><a href="http://twitter-trackbacks-widget.googlecode.com/svn/v1/demo3.htm" target="_blank">View&nbsp;Demo</a></p>
<p><a href="http://buildinternet.com/2009/11/making-an-interactive-picture-with-jquery/" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/interactive-picture-with-query.jpg" alt="Interactive Picture With jQuery" title="Interactive Picture With jQuery" width="548" height="415" class="aligncenter size-full wp-image-3482" /></a></p>
<p><strong>6.</strong> <a href="http://jwf.us/projects/jQSlickWrap/" target="_blank"><strong>jQSlickWrap - Slick Text Wrapping For jQuery</strong></a><br />jQSlickWrap is a plugin for jQuery which allows you to wrap content around irregularly shaped images, easily. Use float and padding CSS styles to specify how the wrapping will work. Written with Progressive Enhancement in mind.<br /><a href="http://jwf.us/projects/jQSlickWrap/#examples" target="_blank">View&nbsp;Demo</a></p>
<p><strong>7.</strong> <a href="http://tympanus.net/codrops/2009/11/24/jfeedback/" target="_blank"><strong>jFeedback - Minimal jQuery Notification Plugin</strong></a><br />
A minimal way to notify users of success or error, based on Twitter&#8217;s bar and jBar. The notification consists of a simple “OK” or “Error” icon which the user can decide to click if he is interested in the details of the notification.<br /><a href="http://tympanus.net/jFeedback/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>8.</strong> <a href="http://tympanus.net/codrops/2009/11/17/jpaginate-a-fancy-jquery-pagination-plugin/" target="_blank"><strong>jPaginate - Fancy jQuery Pagination Plugin</strong></a><br />
jPaginate is a jQuery pagination plugin that comes with a twist: animated page numbers. The user can slide through the available page numbers by clicking or just hovering over the arrows. Shortlinks to the first and last page are available as well.<br /><a href="http://tympanus.net/jPaginate/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>9.</strong> <a href="http://plugins.jquery.com/project/flips" target="_blank"><strong>Flips - jQuery Plugin</strong></a><br />
Plugin for creating sliding boxes, that allows to show more boxes on one place. There is arrows to control which box is shown, many options like speed, auto-change interval, sides, button labels can be set.<br /><a href="http://www.ornyx.com/projects/jquery.flips/demo.html" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>10.</strong> <a href="http://blog.egorkhmelev.com/2009/11/jquery-slider-safari-style/" target="_blank"><strong>jQuery Slider Plugin - Safari Style</strong></a><br />
jQuery Slider is easy to use and multifunctional jQuery plugin. Helps you to build a range slider with Safari Style. Useful and usable on for example real estate websites.<br /><a href="http://blog.egorkhmelev.com/2009/11/jquery-slider-safari-style/" target="_blank">View&nbsp;Demo</a> </p>
<p>The jQuery Techniques are not in any particular order and as usual you decide what fits best for your purposes and demands - and Cashrevelations.com is not affiliated with any of the plugin or tutorial&nbsp;authors.</p>
<p><strong>More about JavaScript and&nbsp;AJAX:</strong></p>
<ul>
<li><a href="http://cashrevelations.com/magazine/2009/10/ajax-and-javascript/"><strong>100 Ajax And JavaScript&nbsp;Techniques</strong></a></li>
<li><a href="http://cashrevelations.com/magazine/2009/11/40-javascript-tools/"><strong>40 JavaScript&nbsp;Tools</strong></a></li>
</ul>






	<a rel="nofollow" href="javascript:window.print();" title="Print this article!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/printer.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=10%20New%20jQuery%20Techniques&amp;body=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F" title="E-mail this story to a friend!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F&amp;title=10%20New%20jQuery%20Techniques" title="Google"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F&amp;title=10%20New%20jQuery%20Techniques" title="Live"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F&amp;title=10%20New%20jQuery%20Techniques" title="del.icio.us"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F&amp;title=10%20New%20jQuery%20Techniques" title="Digg"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F" title="Technorati"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F&amp;t=10%20New%20jQuery%20Techniques" title="Facebook"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F&amp;title=10%20New%20jQuery%20Techniques" title="StumbleUpon"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F&amp;t=10%20New%20jQuery%20Techniques" title="MySpace"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F" title="TwitThis"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F" title="Propeller"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/propeller.gif" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F&amp;=10%20New%20jQuery%20Techniques" title="YahooMyWeb"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F&amp;h=10%20New%20jQuery%20Techniques" title="NewsVine"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://tailrank.com/share/?text=&amp;link_href=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F&amp;title=10%20New%20jQuery%20Techniques" title="TailRank"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/tailrank.png" title="TailRank" alt="TailRank" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fnew-jquery-techniques%2F&amp;Title=10%20New%20jQuery%20Techniques" title="BlinkList"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cashrevelations.com/magazine/2009/11/new-jquery-techniques/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Create A Blog With Blogger</title>
		<link>http://cashrevelations.com/magazine/2009/11/create-a-blog-with-blogger/</link>
		<comments>http://cashrevelations.com/magazine/2009/11/create-a-blog-with-blogger/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 18:54:28 +0000</pubDate>
		<dc:creator>Tommy Olovsson</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Blogger]]></category>

		<guid isPermaLink="false">http://cashrevelations.com/magazine/?p=3411</guid>
		<description><![CDATA[Need help getting started with Blogger? Then check out this quick tutorial - The BloggerHelp’s Channel has a couple of easy-to-follow tutorials covering the basic on how to manage your Blogger account.]]></description>
			<content:encoded><![CDATA[<p><a href="http://cashrevelations.com/magazine/2009/11/create-a-blog-with-blogger/"><em>Click here to view the embedded&nbsp;video.</em></a></p>
<p></p>
<p><a href="http://www.youtube.com/watch?v=BnploFsS_tY" target="_blank">BloggerHelp</a>: Need help getting started with Blogger? Check out this quick tutorial! Please help The Blogger Team improve their videos by filling out this short survey: <a href="https://spreadsheets.google.com/viewform?key=pDGYK68-cO4v6X1lnzRuQeQ" target="_blank">Blogger Help Video Satisfaction&nbsp;Survey</a>.</p>
<p>The BloggerHelp&#8217;s Channel on YouTube also has a couple of easy-to-follow tutorial videos covering the very basic on how to manage your Blogger account. The videos are made for absolute beginners of Blogger blogging platform, and they describe in a very easy and straight forward way different managing tasks in&nbsp;Blogger.</p>
<ul>
<li><a href="http://www.youtube.com/user/BloggerHelp" target="_blank"><strong>BloggerHelp&#8217;s&nbsp;Channel</strong></a></li>
</ul>






	<a rel="nofollow" href="javascript:window.print();" title="Print this article!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/printer.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Create%20A%20Blog%20With%20Blogger&amp;body=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F" title="E-mail this story to a friend!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F&amp;title=Create%20A%20Blog%20With%20Blogger" title="Google"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F&amp;title=Create%20A%20Blog%20With%20Blogger" title="Live"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F&amp;title=Create%20A%20Blog%20With%20Blogger" title="del.icio.us"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F&amp;title=Create%20A%20Blog%20With%20Blogger" title="Digg"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F" title="Technorati"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F&amp;t=Create%20A%20Blog%20With%20Blogger" title="Facebook"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F&amp;title=Create%20A%20Blog%20With%20Blogger" title="StumbleUpon"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F&amp;t=Create%20A%20Blog%20With%20Blogger" title="MySpace"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F" title="TwitThis"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F" title="Propeller"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/propeller.gif" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F&amp;=Create%20A%20Blog%20With%20Blogger" title="YahooMyWeb"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F&amp;h=Create%20A%20Blog%20With%20Blogger" title="NewsVine"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://tailrank.com/share/?text=&amp;link_href=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F&amp;title=Create%20A%20Blog%20With%20Blogger" title="TailRank"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/tailrank.png" title="TailRank" alt="TailRank" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Fcreate-a-blog-with-blogger%2F&amp;Title=Create%20A%20Blog%20With%20Blogger" title="BlinkList"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cashrevelations.com/magazine/2009/11/create-a-blog-with-blogger/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Tutorials And Tips</title>
		<link>http://cashrevelations.com/magazine/2009/11/twitter-tutorials-and-tips/</link>
		<comments>http://cashrevelations.com/magazine/2009/11/twitter-tutorials-and-tips/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 17:19:42 +0000</pubDate>
		<dc:creator>Tommy Olovsson</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[marketing]]></category>

		<category><![CDATA[social]]></category>

		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://cashrevelations.com/magazine/?p=3312</guid>
		<description><![CDATA[Respected names in business give you free guidance  - a series of Twitter video tutorials that covers some of the basics and also gives you some ideas on extended use of Twitter.]]></description>
			<content:encoded><![CDATA[<p><a href="http://cashrevelations.com/magazine/2009/11/twitter-tutorials-and-tips/"><em>Click here to view the embedded&nbsp;video.</em></a></p>
<p></p>
<p><a href="http://www.yourbusinesschannel.com/" target="_blank">YourBusinessChannel.com</a> is an online TV channel where respected names in business give you free guidance on almost every aspect of business. The tutorials are promoted to a global audience of business people who can access the shows through their own site and syndicator sites. Many of the tutorials and shows are also available on&nbsp;<a href="http://www.youtube.com/user/yourBusinessChannel" target="_blank">YouTube</a>. </p>
<p><a href="http://www.youtube.com/user/yourBusinessChannel#g/u" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/twitter-tutorials.jpg" alt="Twitter Video Tutorials - yourBusinessChannel.com" title="Twitter Video Tutorials - yourBusinessChannel.com" width="440" height="300" class="aligncenter size-full wp-image-3318" /></a></p>
<p>They produce a series of easy to follow Twitter video tutorials that covers some of the basics and also gives you some ideas on extended use of Twitter - fully in line with their commitment &#8220;to always have the latest tips and advice from market leaders, innovators and the people who have really made a difference in&nbsp;business&#8221;.</p>
<p>The video above, <a href="http://www.youtube.com/watch?v=ekFg2crjx-A" target="_blank">Twitter Tutorial - How To Attract More Followers</a>, is an example of the straight forward and visually appealing video tutorials they offer. This specific video gives you some basic Twitter profile tips, but there are some video tutorials that cover more advanced social marketing&nbsp;techniques.</p>
<p>To access the Twitter video tutorials, use <a href="http://www.youtube.com/user/yourBusinessChannel#g/u" target="_blank">The links</a> provided in this article and search for &#8220;Twitter&#8221;. Take also a quick look on the other video tutorials while you are&nbsp;there.</p>
<p>By the way, I would like to take this opportunity to promote our <a href="http://twitter.com/cashrevelations" target="_blank">Twitter profile</a>. Follow us and get the most important updates on Cashrevelations and general webdesign tips and more: <a href="http://twitter.com/cashrevelations" target="_blank">Cashrevelations.com on&nbsp;Twitter</a>.</p>
<ul>
<li><a href="http://www.youtube.com/user/yourBusinessChannel#g/u" target="_blank"><strong>Twitter Video&nbsp;Tutorials</strong></a></li>
<li><a href="http://www.yourbusinesschannel.com/" target="_blank"><strong>YourBusinessChannel.com</strong></a></li>
</ul>






	<a rel="nofollow" href="javascript:window.print();" title="Print this article!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/printer.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Twitter%20Tutorials%20And%20Tips&amp;body=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F" title="E-mail this story to a friend!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F&amp;title=Twitter%20Tutorials%20And%20Tips" title="Google"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F&amp;title=Twitter%20Tutorials%20And%20Tips" title="Live"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F&amp;title=Twitter%20Tutorials%20And%20Tips" title="del.icio.us"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F&amp;title=Twitter%20Tutorials%20And%20Tips" title="Digg"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F" title="Technorati"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F&amp;t=Twitter%20Tutorials%20And%20Tips" title="Facebook"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F&amp;title=Twitter%20Tutorials%20And%20Tips" title="StumbleUpon"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F&amp;t=Twitter%20Tutorials%20And%20Tips" title="MySpace"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F" title="TwitThis"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F" title="Propeller"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/propeller.gif" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F&amp;=Twitter%20Tutorials%20And%20Tips" title="YahooMyWeb"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F&amp;h=Twitter%20Tutorials%20And%20Tips" title="NewsVine"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://tailrank.com/share/?text=&amp;link_href=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F&amp;title=Twitter%20Tutorials%20And%20Tips" title="TailRank"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/tailrank.png" title="TailRank" alt="TailRank" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F11%2Ftwitter-tutorials-and-tips%2F&amp;Title=Twitter%20Tutorials%20And%20Tips" title="BlinkList"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cashrevelations.com/magazine/2009/11/twitter-tutorials-and-tips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>100 Ajax And JavaScript Techniques</title>
		<link>http://cashrevelations.com/magazine/2009/10/ajax-and-javascript/</link>
		<comments>http://cashrevelations.com/magazine/2009/10/ajax-and-javascript/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 15:10:48 +0000</pubDate>
		<dc:creator>Tommy Olovsson</dc:creator>
		
		<category><![CDATA[Resources]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://cashrevelations.com/magazine/?p=2938</guid>
		<description><![CDATA[100+ Ajax and JavaScript techniques with demos that can make your websites visually and interactively more interesting. MooTools, jQuery and Prototype are among the techniques represented in this list]]></description>
			<content:encoded><![CDATA[<ul>
<li><strong>New! Updated list: <a href="http://cashrevelations.com/magazine/2010/01/150-javascript-techniques/">150 JavaScript&nbsp;Techniques</strong></a></li>
</ul>
<p>JavaScript is becoming more common in modern web designs and when it is done with taste and moderation it can enhance the user’s experience and provide interactivity to your website. The secret is balance. To not have too much JavaScript and to use the right techniques for your&nbsp;purposes.</p>
<p class="note"><a href="http://en.wikipedia.org/wiki/Javascript" target="_blank">Wikipedia</a>: JavaScript is an object-oriented scripting language used to enable programmatic access to objects within the client application and other&nbsp;applications.</p>
<p>There is a lot you can do with JavaScript - form validation, stylish navigation, amazing slideshows, tool tips, interactivity and more can be achieved with some JavaScript&nbsp;code.</p>
<p>Cashrevelations.com presents 100+ Ajax and JavaScript techniques with demos that can make your websites visually and interactively more interesting or user friendly. They are all more or less easy to configure, but perhaps this is not the first thing you should do if you just have learned to build websites - but on the other hand, It doesn&#8217;t harm to&nbsp;try.</p>
<p><a name="top"></a><strong>LIST&nbsp;CONTENT</strong></p>
<ul>
<li><a href="#general">General&nbsp;Navigation</a></li>
<li><a href="#menu">Traditional&nbsp;Menus</a></li>
<li><a href="#form">Forms And&nbsp;Auto-Complete</a></li>
<li><a href="#validation">Form Validation And&nbsp;Hints</a></li>
<li><a href="#upload">File&nbsp;Upload</a></li>
<li><a href="#table">Tables</a></li>
<li><a href="#boxes">Tool Tips And&nbsp;Boxes</a></li>
<li><a href="#calendar">Calendars And&nbsp;Timelines</a></li>
<li><a href="#prev">Image&nbsp;Previewing</a></li>
<li><a href="#show">Slideshow</a></li>
<li><a href="#light">Lightbox</a></li>
<li><a href="#effects">Image&nbsp;Effects</a></li>
<li><a href="#cropping">Image&nbsp;Cropping</a></li>
<li><a href="#csliders">Content&nbsp;Sliders</a></li>
<li><a href="#comm">Interactivity And&nbsp;Communication</a></li>
<li><a href="#misc">Miscellaneous</a></li>
</ul>
<p>MooTools, jQuery, Prototype and script.aculo.us are among the techniques represented in this list and we have tried to categorize them in a practical and easy searchable&nbsp;way.</p>
<h2>Navigation</h2>
<p><a href="http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/sliding-boxes-and-captions.jpg" alt="Sliding Boxes And Captions with jQuery" title="Sliding Boxes And Captions with jQuery" width="500" height="362" /></a></p>
<p><a name="general"></a><strong>General&nbsp;Navigation</strong></p>
<p><strong>1.</strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/creating-a-filterable-portfolio-with-jquery/" target="_blank"><strong>Filterable Portfolio with jQuery</strong></a><br />
In this tutorial, Trevor Davis, a 25 year old front-end developer, will show you how to make &#8220;filtering by category&#8221; a little more interesting with just a little bit of jQuery.<br />
<a href="http://nettuts.s3.amazonaws.com/196_jquery/index.htm" target="_blank">View&nbsp;Demo</a></p>
<p><strong>2.</strong> <a href="http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx" target="_blank"><strong>jQuery ListNav Plugin</strong></a><br />
This jQuery plugin supplies an easy way to unobtrusively add a letter-based navigation widget to any UL or OL list. An easily stylable nav bar appears above the list, showing the user the letters A-through-Z. Clicking one of the letters filters the list to show only the items in the list that start with that letter. <br />
<a href="http://www.ihwy.com/Labs/Demos/Current/jquery-listnav-plugin.aspx" target="_blank">View&nbsp;Demo</a></p>
<p><strong>3.</strong> <a href="http://aariadne.com/accordion/" target="_blank"><strong>Ext Accordion</strong></a><br />
The Accordion widget and its InfoPanel are components that use the Ext JS Library. It can be used for page navigation, tool windows, hide-able details, log-in forms, options dialogs, sticky notes and more.<br />
<a href="http://aariadne.com/accordion/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>4.</strong> <a href="http://www.kminek.pl/lab/yetii/" target="_blank"><strong>Yetii – Yet (E)Another JavaScript Tab Interface</strong></a><br />
Yetii is a functional tab interface implementation. It has lightweight, object-oriented code and degrades gracefully in browsers without JavaScript-support. You can have many independent tab interfaces on a single page, specify initial tab, turn on automatic tabs rotation, add next/previous navigation, nest one tab interface inside another and define custom function to run after certain tab is clicked.<br />
<a href="http://www.kminek.pl/lab/yetii/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>5.</strong> <a href="http://www.kriesi.at/archives/apple-menu-improved-with-jquery" target="_blank"><strong>Apple Style Menu Improved With jQuery</strong></a><br />
How to create a similar main navigation like the one of kriesi.at - a so called kwicks menu. Build an Apple-flavored Leopard-text-indent style menu from scratch in Photoshop, then create the needed HTML and CSS and last but not least improve it via jQuery.<br /><a href="http://www.kriesi.at/wp-content/extra_data/kwicks_tutorial/kwicks_final.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>6.</strong> <a href="http://hv-designs.co.uk/2009/01/19/jquery-fade-infade-out/" target="_blank"><strong>Jquery Fade In And Fade Out</strong></a><br />
A fade in fade out effect - the effect fades an element to 30% on arrival of the website, then when you hover over it, it fades to 100%. The effect can be assigned to basically anything in a website whatever it be an image, text, a link or even a div.<br />
<a href="http://www.hv-designs.co.uk/tutorials/jquery/image.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>7.</strong> <a href="http://web-kreation.com/index.php/tutorials/morph-effect-on-mouseenter-mouseleave-with-mootools-12/" target="_blank"><strong>Morph Effect On Mouseenter And Mouseleave With Mootools 1.2</strong></a><br />
In this tutorial, you will see how to add some amazing effects to an unordered list on mouseover with the Element Method: morph and to make the whole list item region clickable with Mootools - and turn it into something fun to click.<br /><a href="http://www.web-kreation.com/demos/mootools-1.2_mouseenter-mouseleave/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>8.</strong> <a href="http://maxblog.me/ajaxify/" target="_blank"><strong>Ajaxify - JQuery Plugin</strong></a><br />
Ajaxify can convert all links in a web page into an ajax load and submit requests. You can build a complex ajax website with one single line. Some features are Ajax GET and POST requests, history and bookmarking support, animations and more.<br /><a href="http://maxblog.me/ajaxify/demo.php" target="_blank">View&nbsp;Demo</a></p>
<p><strong>9.</strong> <a href="http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/" target="_blank"><strong>Sliding Boxes And Captions With JQuery</strong></a><br />
All of these sliding box animations work on the same basic idea. There is a div tag (.boxgrid in my css) that essentially acts as a window where two other items of your choosing “peek” through.<br />
<a href="http://buildinternet.com/live/boxes/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>10.</strong> <a href="http://jqueryfordesigners.com/jquery-look-tim-van-damme/" target="_blank"><strong>Accordion And Hover Effects With JQuery</strong></a><br />
This tutorial video (QuickTime version is 60Mb - flash version is streaming) explains how the accordion and hover effects on <a href="http://timvandamme.com/" target="_blank">Tim Van Damme’s</a> site can be achieved using jQuery.<br />
<a href="http://jqueryfordesigners.com/demo/timvandamme.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>11.</strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/jquery-os-x-style-dock-and-stack-navigation/" target="_blank"><strong>Outside The Box - Navigation </strong></a><br />
Just about every website uses the regular navigation concepts we&#8217;re all used to. After a while this can get pretty boring, especially for designers who thrive on creativity. While mimicking the OS X dock and stacks isn&#8217;t new, it&#8217;s certainly not common.<br />
<a href="http://nettuts.s3.amazonaws.com/358_jquery/example%20files/all-examples.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>12.</strong> <a href="http://net.tutsplus.com/site-builds/create-a-simple-powerful-product-highlighter-with-mootools/" target="_blank"><strong>Powerful Product Highlighter With MooTools</strong></a><br />
This tutorial will help you to create a flexible tool for highlighting your sites products or services using the MooTools JavaScript framework - a clever rollover mechanism that works well as a product highlighter.<br />
<a href="http://nettuts.s3.amazonaws.com/022_Mootools/example.html" target="_blank">View&nbsp;Demo</a></p>
<p align="right"><a href="#top">Top</a></p>
<p><a name="menu"></a><strong>Traditional&nbsp;Menus</strong></p>
<p><strong>13.</strong> <a href="http://abeautifulsite.net/notebook/80" target="_blank"><strong>jQuery Context Menu Plug-In</strong></a><br />
A context menu plugin for jQuery that features easy implementation, keyboard shortcuts, CSS styling, and control methods. It was designed to make implementing context menu functionality easy and requires minimal effort to configure.<br />
<a href="http://abeautifulsite.net/notebook_files/80/demo/jqueryContextMenu.html" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>14.</strong> <a href="http://buildinternet.com/2009/01/how-to-make-a-smooth-animated-menu-with-jquery/" target="_blank"><strong>Smooth Animated Menu With jQuery</strong></a><br />
In this tutorial Zach Dunn will teach you how to build a nice jQuery menu with a smooth transition animation effect.<br />
<a href="http://buildinternet.com/live/smoothmenu/animated-menu.html" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>15.</strong> <a href="http://css-tricks.com/learning-jquery-fading-menu-replacing-content/" target="_blank"><strong>Fading Menu – Replacing Content</strong></a><br />
When a menu item is selected, its graphic is shown at full opacity and its corresponding content area is shown, while the other menu items are faded and their content areas hidden. With jQuery, you can fade in the menu item being clicked, fade out all other menu items, display the corresponding content area and hide all the other.<br />
<a href="http://css-tricks.com/examples/MenuFader/" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>16.</strong> <a href="http://www.flash-free.org/en/2008/04/05/e24tabmenu-%E2%80%93-menu-desplegable-ajax/" target="_blank"><strong>e24TabMenu – Drop down AJAX Menu</strong></a><br />
e24TabMenu is a plugin written for scriptaculous. In this tutorial Alfredo Artiles teaches you how to make a nice tab menu that expands and collapses smoothly.<br /><a href="http://www.flash-free.org/wp-content/files/e24tabmenu/index2.html" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>17.</strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/a-different-top-navigation/" target="_blank"><strong>A Different Top Navigation</strong></a><br />
In this tutorial you will use jQuery to create a different multi-layered horizontal navigation system that is still intuitive enough for anyone to use for the first time.<br />
<a href="http://nettuts.s3.amazonaws.com/386_navigation/top-nav-demo/index.html" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>18.</strong> <a href="http://www.distinctcorp.com.au/jquery/spritemenu.html" target="_blank"><strong>SpriteMenu</strong></a><br />
This is a method of putting together a nice-looking menu in a very quick and easy way. It uses a technique known as CSS Sprites. The menu is displayed by manipulating the background-position property to display individual sprites in the image.<br />
<a href="http://www.distinctcorp.com.au/jquery/spritemenu.html" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>19.</strong> <a href="http://www.phatfusion.net/imagemenu/" target="_blank"><strong>Image Menu</strong></a><br />
A horizontal menu that reveals more of the image as you rollover it. Features 2 optional onClick events (open and close), href passed to onClick events, stays open when clicked, closes when clicked and selects item to pre-open.<br />
<a href="http://www.phatfusion.net/imagemenu/" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>20.</strong> <a href="http://yura.thinkweb2.com/scripting/contextMenu/" target="_blank"><strong>Proto.Menu - Prototype Based Context Menu</strong></a><br />
Proto.Menu is a simple and lightweight prototype-based solution for context menu functionality on your page. Plays nice with JS turned off and menu styling can be easily defined in external stylesheet.<br />
<a href="http://yura.thinkweb2.com/scripting/contextMenu/" target="_blank">View&nbsp;Demo</a> </p>
<p align="right"><a href="#top">Top</a></p>
<h2>Forms And&nbsp;Tables</h2>
<p><a href="http://net.tutsplus.com/javascript-ajax/build-a-top-panel-with-jquery/" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/sliding-panel.jpg" alt="Sliding Panel - Incredible login form with jQuery" title="Sliding Panel - Incredible login form with jQuery" width="500" height="361" /></a></p>
<p><a name="form"></a><strong>Forms And&nbsp;Auto-Complete</strong></p>
<p><strong>21.</strong> <a href="http://buildinternet.com/2009/01/changing-form-input-styles-on-focus-with-jquery/" target="_blank"><strong>Changing Form Input Styles On Focus With jQuery</strong></a><br />
This tutorial will show you how to spice them up with CSS classes and default values that change according to which form item is selected. All with just a splash of jQuery.<br />
<a href="http://buildinternet.com/live/jqueryform/jqueryform1.php" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>22.</strong> <a href="http://lipidity.com/fancy-form/" target="_blank"><strong>FancyForm</strong></a><br />
FancyForm is a powerful checkbox replacement script used to provide the ultimate flexibility in changing the appearance and function of HTML form elements. It&#8217;s accessible, easy to use and degrades gracefully on all older, non-supporting browsers.<br />
<a href="http://lipidity.com/fancy-form/demo/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>23.</strong> <a href="http://net.tutsplus.com/javascript-ajax/build-a-top-panel-with-jquery/" target="_blank"><strong>Incredible Login Form With jQuery</strong></a><br />
One struggle that still remains today in web design is displaying all of the redundant information on every page. For example, a login form. What if there was a way to easily make the content accessible on every page, but keep it hidden until needed? Well you can, by making a top panel that when clicked, will reveal its self and its content.<br />
<a href="http://nettuts.s3.amazonaws.com/041_TopPanelWithJquery/demo/index.html" target="_blank">View&nbsp;Demo</a></p>
<p> <strong>24.</strong> <a href="http://arashkarimzadeh.com/index.php/jquery/7-editable-jquery-plugin.html" target="_blank"><strong>Editable - JQuery Editable Plugin</strong></a><br />
This is a real customizable jQuery editable plugin. Currently it can convert any tag to text input, password, textarea, drop-down list. You can easily extend it by adding your own input type using its editableFactory object.<br />
<a href="http://arashkarimzadeh.com/index.php/jquery/7-editable-jquery-plugin.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>25.</strong> <a href="http://mattberseth.com/blog/2007/12/creating_a_google_suggest_styl.html" target="_blank"><strong>Google Suggest Style Filter - AutoComplete Control</strong></a><br />
Create a Google Suggest-style filter with AutoComplete Control. AjaxControlToolkit&#8217;s AutoComplete control can be used with a data grid.<br />
<a href="http://mattberseth2.com/demo/Default.aspx?Name=Creating+a+Google+Suggest+Style+Filter+with+the+AutoComplete+Control&#038;Filter=All" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>26.</strong> <a href="http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/" target="_blank"><strong>Autocomplete - JQuery Plugin</strong></a><br />
Autocomplete an input field to enable users quickly finding and selecting some value, leveraging searching and filtering. By giving an autocompleted field focus or entering something into it, the plugin starts searching for matching entries and displays a list of values to choose from.<br />
<a href="http://jquery.bassistance.de/autocomplete/demo/" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>27.</strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/adding-a-jquery-auto-complete-to-your-google-custom-search-engine/" target="_blank"><strong>Auto Complete To Your Google Custom Search Engine</strong></a><br />
This tutorial will show you how to use the &#8220;Popular Queries&#8221; feed from your Google Custom Search Engine (CSE) as a data source for a jQuery autocomplete.<br /><a href="http://nettuts.com/demos/15_searchTut/search.html" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>28.</strong> <a href="http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin" target="_blank"><strong> Ajax Fancy Captcha - JQuery Plugin</strong></a><br />
Ajax Fancy Captcha is a jQuery plugin that helps you protect your web pages from bots and spammers. Captcha’s security level is medium, with the emphasis on nice looking and user friendly qualities while still offering reasonable protection from unwanted “guests”. Basic design and its elements are easy to change and customize.<br /><a href="http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>29.</strong> <a href="http://www.interiders.com/2008/02/11/prototextboxlist-meets-autocompletion/" target="_blank"><strong>Proto! - TextboxList Meets Autocompletion</strong></a><br />
This is the Prototype version of the extended script by Guillermo Rauch. As with the previous script, this script has been converted and operates like the original.<br /><a href="http://www.interiders.com/wp-content/demos/ProtoAutocompleteList/test.html" target="_blank">View Demo</a>
<p align="right"><a href="#top">Top</a></p>
<p><a name="validation"></a><strong>Form Validation And&nbsp;Hints</strong></p>
<p><strong>30.</strong> <a href="http://mir.aculo.us/2009/1/7/using-input-values-as-hints-the-easy-way/" target="_blank"><strong>Using Input Values As Hints</strong></a><br />
Give your visitors a hints on what to write in textfields. Each of the fields auto-clear when the user clicks it. If nothing at all is entered, the hint reappears once the visitor decides to move away.<br />
<a href="http://mir.aculo.us/2009/1/7/using-input-values-as-hints-the-easy-way/" target="_blank">No&nbsp;Demo</a></p>
<p><strong>31.</strong> <a href="http://mootools.floor.ch/en/demos/formcheck/index.htm" target="_blank"><strong>FormCheck</strong></a><br />
FormCheck is a MooTools class that allows you to validate a form by performing different tests before submission - installation tutorial and examples.<br /><a href="http://mootools.floor.ch/en/demos/formcheck/index.htm" target="_blank">View&nbsp;Demo</a></p>
<p><strong>32.</strong> <a href="http://zendold.lojcomm.com.br/fvalidator/" target="_blank"><strong>fValidator</strong></a><br />
fValidator is a free, open-source and unobtrusive JavaScript tool for handling form validation easily.<br />
<a href="http://zendold.lojcomm.com.br/fvalidator/exampleA.asp" target="_blank">View&nbsp;Demo</a></p>
<p><strong>33.</strong> <a href="http://customformelements.net/" target="_blank"><strong>Custom Form Elements</strong></a><br />
This CFE script enhances form elements including radio buttons, checkboxes, file upload, textfield, textarea, images and the select, submit and reset buttons.<br /><a href="http://customformelements.net/demopage.php" target="_blank">View&nbsp;Demo</a></p>
<p align="right"><a href="#top">Top</a></p>
<p><a name="upload"></a><strong>File&nbsp;Upload</strong></p>
<p><strong>34.</strong> <a href="http://digitarald.de/project/fancyupload/" target="_blank"><strong>FancyUpload - Swiff Meets Ajax</strong></a><br />
FancyUpload is a file-input replacement which features an unobtrusive, multiple-file selection menu and queued upload with an animated progress bar. It is easy to setup and styleable via CSS and XHTML and uses MooTools to work in all modern browsers.<br />
<a href="http://digitarald.de/project/fancyupload/3-0/showcase/photoqueue/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>35.</strong> <a href="http://www.uploadify.com/" target="_blank"><strong>Uploadify - JQuery File Upload Plugin Script</strong></a><br />
Uploadify is a jQuery plugin that allows the easy integration of a multiple (or single) file uploads on your website. An array of options allow for full customization for advanced users, but basic implementation is so easy that even coding novices can do it.<br />
<a href="http://www.uploadify.com/demo/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>36.</strong> <a href="http://the-stickman.com/web-development/javascript/multiple-file-uploader-mootools-version/" target="_blank"><strong>Multiple File Uploader - Mootools Version</strong></a><br />
A script that allows you to create a form in which your visitors can upload more than one file using MooTools.<br />
<a href="http://the-stickman.com/files/mootools/multiupload/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>37.</strong> <a href="http://www.extjs.com/learn/Extension:UploadForm" target="_blank"><strong>Extension - UploadForm</strong></a><br />
The Ext UploadForm is Ext.form.BasicForm extension for easy upload of (multiple) files to a server. The files are added to a queue first then they are uploaded to the server. Files can be removed from queue individually before upload or whole queue can be cleared. Result of upload is shown for each file by the success or failure icon.<br />
<a href="http://aariadne.com/uploadform/" target="_blank">View&nbsp;Demo</a></p>
<p align="right"><a href="#top">Top</a></p>
<p><a name="table"></a><strong>Tables</strong></p>
<p><strong>38.</strong> <a href="http://www.leigeber.com/2009/03/table-sorter/" target="_blank"><strong>TinyTable JavaScript Table Sorter</strong></a><br />
Easy to use JavaScript table-sorting script. Features column highlighting, optional pagination, support for links, date/link parsing, alternate row highlighting, header class toggling, auto data type recognition and selective column sorting.<br />
<a href="http://sandbox.leigeber.com/table-sorter/index.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>39.</strong> <a href="http://www.barelyfitz.com/projects/tabber/" target="_blank"><strong>JavaScript Tabifier</strong></a><br />
Automatically creates an HTML tab interface using plug-and-play JavaScript. Does not require you to set up a list of links, or anchors for the tabs, and you can use CSS to customize the appearance of the tabs.<br />
<a href="http://www.barelyfitz.com/projects/tabber/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>40.</strong> <a href="http://www.filamentgroup.com/lab/jquery_visualize_plugin_accessible_charts_graphs_from_tables_html5_canvas/" target="_blank"><strong>Accessible Charts And Graphs From Table Elements </strong></a><br />
The plugin 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.<br />
<a href="http://www.filamentgroup.com/examples/charting_v2/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>41.</strong> <a href="http://www.askthecssguy.com/2007/08/creating_a_table_with_dynamica.html" target="_blank"><strong>Table With Dynamically Highlighted Columns</strong></a><br />
When you click on &#8220;Sign Up&#8221; for an option on Crazy Egg&#8217;s pricing table, that plan&#8217;s column highlights, the other plans vanish, and a signup form takes their place. There is a number of impressive things happening within this small area. The CSS Guy wanted to try and recreate the behavior step by step, and share the power of combining CSS, JavaScript, and images in clever ways.<br />
<a href="http://www.askthecssguy.com/examples/crazyegg/example10.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>42.</strong> <a href="http://www.andrewplummer.com/code/tablegear/" target="_blank"><strong>TableGear</strong></a><br />
TableGear is a software package for working with data on the web. It is designed get your data into a web page, and let you work with it quickly and easily, the way you would in powerful desktop applications like Excel.<br />
<a href="http://www.andrewplummer.com/demos/tablegear/" target="_blank">View&nbsp;Demo</a></p>
<p align="right"><a href="#top">Top</a></p>
<p><a name="boxes"></a><br />
<h2>Tool Tips And&nbsp;Boxes</h2>
<p><a href="http://www.nickstakenburg.com/projects/prototip2/" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/prototip-2.jpg" alt="Prototip 2 - Create beautiful tooltips with ease" title="Prototip 2 - Create beautiful tooltips with ease" width="500" height="361" class="alignnone size-full wp-image-3104" /></a></p>
<p><strong>43.</strong> <a href="http://davidwalsh.name/jquery-homepage-mootools" target="_blank"><strong>Duplicate the jQuery Homepage Tooltips Using MooTools</strong></a><br />
The jQuery home page has a pretty suave tool tip-like effect, as seen above. Here’s how to accomplish the same effect using MooTools.<br />
<a href="http://davidwalsh.name/dw-content/jquery-home.php" target="_blank">View&nbsp;Demo</a></p>
<p><strong>44.</strong> <a href="http://craigsworks.com/projects/qtip/" target="_blank"><strong>qTip - The jQuery Tooltip Plugin</strong></a><br />
qTip is an advanced tooltip plugin for the jQuery JavaScript framework. Built from the ground up to be user friendly, feature rich, qTip provides you with tonnes of features like rounded corners and speech bubble tips.<br />
<a href="http://craigsworks.com/projects/qtip/demos/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>45.</strong> <a href="http://www.php-help.ro/examples/mootooltips-javascript-tooltips/" target="_blank"><strong>MooTooltips - JavaScript Tooltips With MooTools</strong></a><br />
MooTooltips can display tooltip messages from HTML elements, Ajax calls or text added manually. Tooltip parameters can be passed either when instantiating the class or on the rel element parameter.<br />
<a href="http://www.php-help.ro/examples/mootooltips-javascript-tooltips/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>46.</strong> <a href="http://jqueryfordesigners.com/coda-popup-bubbles/" target="_blank"><strong>Coda Popup Bubbles</strong></a><br />
In this tutorial you will learn how to create Coda’s ‘puff’ pop-up bubbles, shown when you mouse over a downloadable image. This effect can be perfected by changing the initial reset code to read from the trigger element and approximate it’s position. <br />
<a href="http://jqueryfordesigners.com/demo/coda-bubble.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>47.</strong> <a href="http://www.nickstakenburg.com/projects/prototip2/" target="_blank"><strong>Prototip 2</strong></a><br />
Prototip allows you to easily create both simple and complex tooltips using the Prototype JavaScript framework. You can easily customize it, control the tool tip position and get configurable rounded corners (with no PNG images required).<br />
<a href="http://www.nickstakenburg.com/projects/prototip2/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>48.</strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/build-a-better-tooltip-with-jquery-awesomeness/" target="_blank"><strong>Better Tooltip With JQuery</strong></a><br />
Browsers will automatically display a tooltip when you provide a title attribute. In this tutorial Jon Cazier is going to show you how to quickly write a jQuery plugin that will replace the typical browser tooltip with something a little flashier.<br />
<a href="http://nettuts.s3.amazonaws.com/234_tooltip/Demo/index.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>49.</strong> <a href="http://yellowgreen.de/morecss" target="_blank"><strong>MoreCSS</strong></a><br />
An easy to use, lightweight and fast JavaScript toolkit/library with CSS syntax for common things. With only 8 KB and it&#8217;s CSS like syntax MoreCSS is perfect for all the daily JavaScript things: popups, tabs, tooltips and more.<br />
<a href="http://morecss.yellowgreen.de/target-selectors-demo" target="_blank">View&nbsp;Demo</a></p>
<p><strong>50.</strong> <strong>- Link is deactivated due to hacker attack on Web2Ajax.com</strong><br />
FaceBook Like – jQuery and autosuggest Search Engine. Features autosuggest and ajax support, support search plugins, support cache and cross browser support.<br />View&nbsp;Demo</p>
<p><strong>51.</strong> <a href="http://davidwalsh.name/facebook-modal-mootools" target="_blank"><strong>Facebook-Style Modal Box Using MooTools</strong></a><br />
Facebook’s Modal box is one the best modal box around. It’s lightweight, subtle, and very stylish. David Walsh has taken Facebook’s imagery and CSS and combined it with MooTools’ awesome functionality to duplicate the effect.<br />
<a href="http://davidwalsh.name/dw-content/facebook-modal.php" target="_blank">View&nbsp;Demo</a></p>
<p><strong>52.</strong> <a href="http://www.glassbox-js.com/" target="_blank"><strong>GlassBox</strong></a><br />
GlassBox is a lightweight JavaScript User Interface (UI) library, which uses Prototype and Script.aculo.us for some effects. GlassBox lets you easily build lucent borders, colorful layouts and &#8220;Flash-like&#8221; effects.<br />
<a href="http://www.glassbox-js.com/#examples" target="_blank">View&nbsp;Demo</a></p>
<p align="right"><a href="#top">Top</a></p>
<p><a name="calendar"></a><br />
<h2>Calendars And&nbsp;Timelines</h2>
<p><a href="http://dansnetwork.com/mootools/events-calendar/" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/mootools-event-calendar.jpg" alt="Mootools Events Calendar" title="Mootools Events Calendar" width="500" height="361" class="alignnone size-full wp-image-3106" /></a></p>
<p><strong>53.</strong> <a href="http://woork.blogspot.com/2009/01/elegant-animated-weekly-timeline-for.html" target="_blank"><strong>Elegant Animated Weekly Timeline</strong></a><br />
This tutorial explains how to design an elegant and animated weekly timeline, with daily annotations, you can customize and reuse quickly in your web projects.<br />
<a href="http://woorktuts.110mb.com/weeklytimeline/timeline.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>54.</strong> <a href="http://www.frequency-decoder.com/2009/02/03/unobtrusive-date-picker-widget-v4" target="_blank"><strong>Unobtrusive Date-Picker Widget V4</strong></a><br />
This unobtrusive datePicker (calendar), which is accessible using the keyboard, requires no embedded JavaScript blocks, uses no pop-up windows and is suitable for use within documents served as application/XHTML+XML.<br />
<a href="http://www.frequency-decoder.com/demo/date-picker-v4/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>55.</strong> <a href="http://www.eyecon.ro/datepicker/" target="_blank"><strong>Date Picker - jQuery Plug-In</strong></a><br />
Date Picker component with a lot of options. Date Picker allows users to easily select a date or range of dates. Some features are: multiple calendars; single, multiple and range selection; marking of special, weekend and special dates; an easy-to-customize look via CSS and more<br /><a href="http://www.eyecon.ro/datepicker/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>56.</strong> <a href="http://www.filamentgroup.com/lab/date_range_picker_using_jquery_ui_16_and_jquery_ui_css_framework/" target="_blank"><strong>JQuery Interactive Date Range Picker With Shortcuts</strong></a><br />
Date Range Picker plugin uses jQuery UI 1.7 and the new jQuery UI CSS Framework. This plugin wraps the jQuery UI datepicker into an interactive component specifically designed for choosing date ranges.<br />
<a href="http://www.filamentgroup.com/examples/daterangepicker_v2/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>57.</strong> <a href="http://www.electricprism.com/aeron/calendar/" target="_blank"><strong>Calendar - A JavaScript Class For Mootools</strong></a><br />
Calendar is a JavaScript class that adds accessible and unobtrusive date-pickers to your form elements. Features highly configurable inputs and selects, multi-calendar support, variable navigation options and multi-lingual and fancy date formatting.<br />
<a href="http://www.electricprism.com/aeron/calendar/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>58.</strong> <a href="http://jqueryfordesigners.com/fun-with-overflows/" target="_blank"><strong>Scrollable Timelines</strong></a><br />
Making use of the overflow and scrollLeft DOM property to scroll elements is a much more effective use of the CPU, over animating using CSS top/left. This tutorial demonstrates the same effect used in two completely different ways.<br />
<a href="http://jqueryfordesigners.com/demo/scrollable-timelines.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>59.</strong> <a href="http://www.moonkiki.com/moonkiki/moogenda/" target="_blank"><strong>MooGenda - JavaScript Calendar Based On MooTools</strong></a><br />
MooGenda is a calendar based on MooTools, that reads events from JSON requests. Supports double click on event to see the deafult event view and features also drag and drop event in month view, drag and drop and resize event in diary view and every change send a request to back end (to store when and what changed in the event).<br />
<a href="http://www.moonkiki.com/moogenda/moogenda.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>60.</strong> <a href="http://dansnetwork.com/mootools/events-calendar/" target="_blank"><strong>MooTools Events Calendar</strong></a><br />
The MooTools Events Calendar is a JavaScript calendar class that was built using the MooTools framework - the calendar supports week/day/month view and the addition of events.<br />
<a href="http://dansnetwork.com/mootools/events-calendar/demo/" target="_blank">View&nbsp;Demo</a></p>
<p align="right"><a href="#top">Top</a></p>
<h2>Image Handling And&nbsp;Sliders</h2>
<p><a href="http://www.sohtanaka.com/web-design/fancy-thumbnail-hover-effect-w-jquery/" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/fancy-thumbnail-hover-effect.jpg" alt="Fancy Thumbnail Hover Effect -  jQuery" title="Fancy Thumbnail Hover Effect -  jQuery" width="500" height="361" class="alignnone size-full wp-image-3108" /></a><br />
<a name="prev"></a><strong>Image&nbsp;Previewing</strong></p>
<p><strong>61.</strong> <a href="http://james.padolsey.com/javascript/new-jquery-plugin-imgpreview/" target="_blank"><strong>imgPreview - jQuery Plug-In</strong></a><br />
The ‘imgPreview’ plugin allows your users to preview an image before clicking on it and, out of necessity, will preload the image so when a user does click through to it there is no waiting time. The image preview shows up in a tooltip-like box appearing alongside the user’s cursor when hovering over a link.<br />
<a href="http://james.padolsey.com/demos/imgPreview/full/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>62.</strong> <a href="http://www.php-help.ro/mootools-12-javascript-examples/slideitmoo-v11-image-slider/" target="_blank"><strong>SlideItMoo - Image Slider</strong></a><br />
SlideItMoo is a banner and image slider developed with MooTools. The image slider supports continuous sliding when navigating, offers the possibility to set how the slider will slide (from left or from right) when used with the auto slide feature on, offers the possibility to give it the item width (width of the slider’s items) and let it display the elements according to that width and the visible items parameter.<br />
<a href="http://www.php-help.ro/examples/slideitmoo_1.1/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>63.</strong> <a href="http://www.sohtanaka.com/web-design/fancy-thumbnail-hover-effect-w-jquery/" target="_blank"><strong>Fancy Thumbnail Hover Effect With JQuery</strong></a><br />
This is a thumbnail hover effect jquery and CSS tutorial. If you switch up the absolute potion coordinates, you can create various ways the hover effect pops out as well.<br />
<a href="http://www.sohtanaka.com/web-design/examples/image-zoom/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>64.</strong> <a href="http://orderedlist.com/articles/fancyzoom-meet-prototype" target="_blank"><strong>FancyZoom Meet Prototype</strong></a><br />
FancyZoom uses Apple’s rounded corners and supports pretty much any HTML you can throw in a div (images, text, Flash, etc.). It was built using script.aculo.us and Prototype - it now works with any HTML already included on the page.<br /><a href="http://orderedlist.com/demos/fancy-zoom/" target="_blank">View&nbsp;Demo</a></p>
<p align="right"><a href="#top">Top</a></p>
<p><a name="show"></a><strong>Slideshow</strong></p>
<p><strong>65.</strong> <a href="http://css-tricks.com/moving-boxes/" target="_blank"><strong>Moving Boxes</strong></a><br />
A jQuery slider with buttons to change panels, and the panels zoom in and out.<br />
<a href="http://css-tricks.com/examples/MovingBoxes/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>66.</strong> <a href="http://www.buildinternet.com/project/supersized/" target="_blank"><strong>Supersized – Full Screen Background/Slideshow jQuery Plugin</strong></a><br />
Supersized features include: cycles Images/backgrounds via slideshow with transitions and preloading, navigation controls allow for pause/play and forward/back, resizes images to fill browser while maintaining image dimension ratio.<br />
<a href="http://www.buildinternet.com/project/supersized/default.php" target="_blank">View&nbsp;Demo</a></p>
<p><strong>67.</strong> <a href="http://www.leigeber.com/2008/12/javascript-slideshow/" target="_blank"><strong>Animated JavaScript Slideshow</strong></a><br />
This dynamic JavaScript slideshow is feature packed and under 5KB. A few features include description support, link support, no naming restrictions, portrait image support, graceful degradation and active thumbnail status.<br />
<a href="http://sandbox.leigeber.com/javascript-slideshow/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>68.</strong> <a href="http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider" target="_blank"><strong>Easy Slider 1.7 - JQuery Plugin</strong></a><br />
JQuery plugin for sliding images and content. Easy Skider features include: auto-slide, continuous sliding, “Go to first” and “Go to last” buttons, hiding controls, optional wrapping markup for control buttons, vertical sliding, multiple sliders on one page.<br />
<a href="http://cssglobe.com/lab/easyslider1.7/03.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>69.</strong> <a href="http://designm.ag/tutorials/image-rotator-css-jquery/" target="_blank"><strong>Image Rotator With Description </strong></a><br />
Although there are many great plugins already, this tutorial will help you understand how the image rotator works and helps you create your own from scratch.<br />
<a href="http://www.sohtanaka.com/web-design/examples/image-rotator/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>70.</strong> <a href="http://devthought.com/projects/mootools/barackslideshow/" target="_blank"><strong>BarackSlideshow</strong></a><br />
BarackSlideshow is a very tiny and lightweight slideshow script, that takes the power of MorphList to enhance visualization and navigation of the images.<br />
<a href="http://devthought.com/wp-content/projects/mootools/barackslideshow/Demo/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>71.</strong> <a href="http://www.efectorelativo.net/laboratory/noobSlide/" target="_blank"><strong>noobSlide - MooTools</strong></a><br />
An easy to install and flexible slider plug-in created by using MooTools. The download includes a ready page example.<br /> <a href="http://www.efectorelativo.net/laboratory/noobSlide/" target="_blank">View&nbsp;Demo</a></p>
<p align="right"><a href="#top">Top</a></p>
<p><a name="light"></a><strong>Lightbox</strong></p>
<p><strong>72.</strong> <a href="http://www.nickstakenburg.com/projects/lightview/" target="_blank"><strong>Lightview - Overlay Anything With Style</strong></a><br />
Lightview was built to change the way you overlay content on a website. Designed to complement your content, and features include: smart image preloading, customization without CSS, adjustable rounded corners, no PNG required, resizing to always fit the screen and one-click slideshow.<br />
<a href="http://www.nickstakenburg.com/projects/lightview/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>73.</strong> <a href="http://stickmanlabs.com/lightwindow/" target="_blank"><strong>LightWindow</strong></a><br />
The ultimate modal window system, LightWindow, allows you to build your own theme, create mixed media galleries including flash, quictkime and images.<br /><a href="http://stickmanlabs.com/lightwindow/" target="_blank">View&nbsp;Demo</a></p>
<p align="right"><a href="#top">Top</a></p>
<p><a name="effects"></a><strong>Image&nbsp;Effects</strong></p>
<p><strong>74.</strong> <a href="http://webdev.stephband.info/parallax.html" target="_blank"><strong>jParallax</strong></a><br />
jParallax turns a selected element into a &#8216;window&#8217;, 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.<br />
<a href="http://webdev.stephband.info/parallax_demos.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>75.</strong> <a href="http://www.swfir.com/" target="_blank"><strong>swfIR - swf Image Replacement</strong></a><br />
Using JavaScript and Flash, swfIR gives you the ability to apply an assortment of visual effects to any or all images on your website.<br />
<a href="http://www.swfir.com/examples/elastic/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>76.</strong> <a href="http://buildinternet.com/2009/08/crafting-an-animated-postcard-with-jquery/" target="_blank"><strong>Animated Postcard With jQuery</strong></a><br />
In this tutorial we will learn the basics of setting up a continuous animation which can be applied pretty much anywhere. Sam Dunn will teach you the art of looping animations using setTimeout(), how to take advantage of the Easing plugin and a new way to spice up your banner.<br />
<a href="http://buildinternet.com/live/postcard/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>77.</strong> <a href="http://jqueryfordesigners.com/bbc-radio-1-zoom-tabs/" target="_blank"><strong>BBC Radio 1 Zoom Tabs</strong></a><br />
How to achieve the effect on the latest BBC Radio 1 website, where the mouse rolls over the image block, tabs slide up and the image zooms a little to reveal more of the picture.<br />
<a href="http://jqueryfordesigners.com/demo/radio1.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>78.</strong> <a href="http://buildinternet.com/2009/06/animate-image-filling-up-using-jquery/" target="_blank"><strong>Animate Image Filling Up Using jQuery</strong></a><br />
Spruce up your website&#8217;s header by letting Sam Dunn teach you how to make an image appear to fill up with just a splash of jQuery and Photoshop.<br />
<a href="http://buildinternet.com/live/imagefill/" target="_blank">View&nbsp;Demo</a></p>
<p align="right"><a href="#top">Top</a></p>
<p><a name="cropping"></a><strong>Image&nbsp;Cropping</strong></p>
<p><strong>79.</strong> <a href="http://uvumitools.com/crop.html" target="_blank"><strong>UvumiTools Crop</strong></a><br />
This simplified tool gives your users the ability to create a selection area that can be used to crop an image live on your web site. This is an extremely useful tool for any site that provides image hosting, for example.<br /> <a href="http://uvumitools.com/crop.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>80.</strong> <a href="http://deepliquid.com/content/Jcrop.html" target="_blank"><strong> Jcrop - The jQuery Image Cropping Plugin</strong></a><br />
Jcrop is the quick and easy way to add image cropping functionality to your web application. It combines the ease-of-use of a typical jQuery plugin with a powerful cross-platform DHTML cropping engine that is faithful to familiar desktop graphics applications.<br /> <a href="http://deepliquid.com/projects/Jcrop/demos.php" target="_blank">View&nbsp;Demo</a></p>
<p align="right"><a href="#top">Top</a></p>
<p><a name="csliders"></a><strong>Content&nbsp;Sliders</strong></p>
<p><strong>81.</strong> <a href="http://woork.blogspot.com/2009/01/ultra-versatile-slider-for-websites.html" target="_blank"><strong>Ultra Versatile Slider</strong></a><br />
In this tutorial Antonio Lupetti explains a simple step-by-step way to implement an ultra versatile slider with horizontal scrolling and animated effects using MooTools.<br />
<a href="http://woorktuts.110mb.com/art_of_reuse_code/index4.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>82.</strong> <a href="http://developer.expressionz.in/blogs/2008/10/24/mootools-slider-with-two-knobs-double-pinned-slider-with-range-indicator/" target="_blank"><strong>Mootools Slider With Two Knobs</strong></a><br />
Mootools slider with two knobs (double pinned slider) with range indicator. You can easily change the look and feel of the range indicator, slider knob, the slider track by modifying the slider.css.<br /> <a href="http://developer.expressionz.in/downloads/mootools_double_pinned_slider_with_clipped_gutter_image_v2.2/slider_using_mootols_1.2.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>83.</strong> <a href="http://solutoire.com/2008/03/10/mootools-css-styled-scrollbar/" target="_blank"><strong>Mootools CSS Styled Scrollbar</strong></a><br />
A small piece of JavaScript that creates a CSS-styled scroll bar from the MooTools “slider” class.<br />
<a href="http://www.solutoire.com/experiments/scrollbar/index.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>84.</strong> <a href="http://css-tricks.com/anythingslider-jquery-plugin/" target="_blank"><strong>AnythingSlider - JQuery Plugin</strong></a><br />
This new AnythingSlider is an attempt at bringing together the functionality of all of those previous sliders Chris Coyier created and adding new features. In other words, to create a really “full featured” slider that could be widely useful.<br />
<a href="http://css-tricks.com/examples/AnythingSlider/" target="_blank">View&nbsp;Demo</a></p>
<p> <strong>85.</strong> <a href="http://woork.blogspot.com/2008/07/fantastic-news-ticker-newsvine-like.html" target="_blank"><strong>Fantastic News Ticker Newsvine-Like Using Mootools</strong></a><br />
In this tutorial Antonio Lupetti teachs you how to in a simple way implement a Newsvine-like News Ticker (with news vertical scrolling) on your website.<br />
<a href="http://woorktuts.110mb.com/newsticker/index.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>86.</strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/create-an-amazoncom-books-widget-with-jquery-and-xml/" target="_blank"><strong>Amazon Books Widget With jQuery And XML</strong></a><br />
It makes sense to forgo database tables and server-side code when you need to store a limited amount of non-sensitive data. Accessing this data can be a snap with jQuery because the library was built to traverse XML documents with ease. With some custom JavaScript and jQuery magic you can create some interesting widgets. A good way to demonstrate this functionality is by building a browsable Amazon.com books widget.<br />
<a href="http://nettuts.s3.amazonaws.com/152_jqueryBook/source/source/index.html" target="_blank">View&nbsp;Demo</a></p>
<p align="right"><a href="#top">Top</a></p>
<p><a name="comm"></a><br />
<h2>Interactivity And&nbsp;Communication</h2>
<p><a href="http://www.newmediacampaigns.com/page/a-jquery-plugin-for-zoomable-interactive-maps" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/zoomable-and-interactive-maps.jpg" alt="Zoomable And Interactive Maps - jQuery plugin" title="Zoomable And Interactive Maps - jQuery plugin" width="500" height="361" class="alignnone size-full wp-image-3112" /></a></p>
<p><strong>87.</strong> <a href="http://www.nickstakenburg.com/projects/starbox/" target="_blank"><strong>Starbox - Rating Stars For Prototype</strong></a><br />
Starbox allows you to easily create all kinds of rating boxes using just one PNG image. The library is build on top of the Prototype JavaScript framework. For some extra effects you can add Scriptaculous as well. <br />
<a href="http://www.nickstakenburg.com/projects/starbox/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>88.</strong> <a href="http://www.newmediacampaigns.com/page/a-jquery-plugin-for-zoomable-interactive-maps" target="_blank"><strong>JQuery Plugin For Zoomable And Interactive Maps</strong></a><br />
A jQuery plugin for zoomable and interactive maps - the map was made to be as appealing as possible by using crisp graphics and smooth animations.<br />
<a href="http://www.newmediacampaigns.com/page/a-jquery-plugin-for-zoomable-interactive-maps#demos" target="_blank">View&nbsp;Demo</a></p>
<p><strong>89.</strong> <a href="http://www.queness.com/post/309/create-a-digg-style-post-sharing-tool-with-jquery" target="_blank"><strong>Digg-Style Post Sharing Tool With JQuery</strong></a><br />
Kevin Liew will show you how to create a social bookmarking tool that looks similar to digg&#8217;s. He also includes the komodomedia&#8217;s social bookmarking icons and a long list of submission URL for one click bookmark.<br />
<a href="http://www.queness.com/resources/html/shareit/index.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>90.</strong> <a href="http://www.ajaxim.com/" target="_blank"><strong>Ajax IM</strong></a><br />
Ajax im is a browser-based instant messaging client. It uses AJAX to create a near real-time IM environment that can be used in conjunction with community, intranet, and social websites. Demo usernames are &#8220;test&#8221;, and &#8220;test (1 to 4)&#8221;. Password is &#8220;test&#8221;.<br /><a href="http://www.ajaxim.net/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>91.</strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/drag-to-share/" target="_blank"><strong>Drag To Share</strong></a><br />
We’ve all seen the brilliant functionality on Mashable where news stories and interesting articles can be shared to social networking sites; the functionality is driven by the images accompanying the articles; you click and hold on an image and can then drag it into a toolbar to share it. In this tutorial Dan Wellman is going to show you how you can replicate this behavior with jQuery and jQuery UI.<br /><a href="http://nettuts.s3.amazonaws.com/467_dragtoShare/source/dragToShare.html" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>92.</strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/building-a-better-blogroll-dynamic-fun-with-simplepie-and-jquery/" target="_blank"><strong>Better Blogroll - Dynamic Fun With SimplePie And JQuery</strong></a><br />
A traditional blogroll is a simple list of other sites, often in the sidebar. Let&#8217;s improve upon the concept of a blogroll by not just listing sites, but dynamically pulling recent headlines from them, and using some fun jQuery animation.<br />
<a href="http://nettuts.s3.amazonaws.com/036_BetterBlogRoll/sourceFiles/index.html" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>93.</strong> <a href="http://www.moretechtips.net/2009/10/twitter-friends-followers-widget-jquery.html" target="_blank"><strong>Twitter Friends And Followers Widget - JQuery Plugin</strong></a><br />
Here is a jQuery plugin that you can embed anywhere to display pictures of your Twitter followers or friends (whom you follow) and their latest tweets if you like.<br />
<a href="http://twitter-friends-widget.googlecode.com/svn/v1/demo4.htm" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>94.</strong> <a href="http://www.latentmotion.com/search-and-share/" target="_blank"><strong>Search And Share</strong></a><br />
Search and Share makes highlighting text to a more functional action. More specifically, it attempts to understand the intention of a user’s text selection and presents a variety of options accordingly.<br />
<a href="http://www.latentmotion.com/search-and-share/" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>95.</strong> <a href="http://www.moretechtips.net/2009/09/realtime-related-tweets-bar-another.html" target="_blank"><strong>Realtime Related Tweets Bar - JQuery Plugin</strong></a><br />
A real-time tweets bar related to your posts from your twitter timeline or from anybody or even limit it by a geocode coordinates. Features; show realtime related tweets based on your post tags, show your twitter timeline (related to your post or not), return only tweets with links or return all and more.<br /><a href="http://realtime-related-tweets-bar.googlecode.com/svn/v1/html-realtime-users.htm" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>96.</strong> <a href="http://jsdraw2d.jsfiction.com/" target="_blank"><strong>jsDraw2D - 2D Graphics Library For JavaScript</strong></a><br />
This is a pure JavaScript library to draw 2D graphics on web pages inside web browser without using SVG or VML. JavaScript developers, web developers and webmasters can take advantage of the library to add graphics drawing functionality to their web applications or websites using the library.<br /><a href="http://jsdraw2d.jsfiction.com/#demo" target="_blank">View&nbsp;Demo</a> </p>
<p align="right"><a href="#top">Top</a></p>
<p><a name="misc"></a><br />
<h2>Miscellaneous</h2>
<p><a href="http://yensdesign.com/2008/12/create-an-amazing-music-player-using-mouse-gestures-hotkeys-in-jquery/" target="_blank"><img src="http://cashrevelations.com/magazine/wp-content/media/music-player-in-jquery.jpg" alt="Music Player in jQuery" title="Music Player in jQuery" width="500" height="361" class="alignnone size-full wp-image-3114" /></a></p>
<p><strong>97.</strong> <a href="http://typeface.neocracy.org/" target="_blank"><strong>Typeface.js - Rendering Text With JavaScript, &lt;canvas&gt;, And VML</strong></a><br />
Instead of creating images or using flash just to show your site&#8217;s graphic text in the font you want, you can use typeface.js and write in plain HTML and CSS, just as if your visitors had the font installed locally.<br />
<a href="http://typeface.neocracy.org/examples.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>98.</strong> <a href="http://www.iofo.it/jquery/fonteffect/" target="_blank"><strong>FontEffect - JQuery Plugin</strong></a><br />
Font effect is a jQuery plugin that adds some effect to html text. The available effects are Outline, Shadow, Gradient and Mirror. No images are used for these effects and no additional CSS is necessary. All effects are contained in the plugin and do not interfere with page rendering in older browser or browser with JavaScript disabled.<br />
<a href="http://www.iofo.it/jquery/fonteffect/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>99.</strong> <a href="http://davidwalsh.name/ajax-mootools-fx-explode" target="_blank"><strong>Ajax Page Loads Using MooTools Fx.Explode</strong></a><br />
When you click on any of the designated Fx.Explode elements, the elements “explode” off of the screen. Click again and they magically reappear.<br />
<a href="http://davidwalsh.name/dw-content/fx.explode.php" target="_blank">View&nbsp;Demo</a></p>
<p><strong>100.</strong> <a href="http://icant.co.uk/sandbox/stepbystep/" target="_blank"><strong>Step By Step - Show And Explain Visitors What Your Page Has For Them</strong></a><br />
You might have encountered interactive demos created with screencasting and screengrabbing software that explain an interface to users in a step-by-step manner. This is exactly what this script does for web sites.<br />
<a href="http://icant.co.uk/sandbox/stepbystep/fullautoexample.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>101.</strong> <a href="http://yensdesign.com/2008/12/create-an-amazing-music-player-using-mouse-gestures-hotkeys-in-jquery/" target="_blank"><strong>Music Player In JQuery</strong></a><br />
In this tutorial you create an amazing music player coded in xHTML and jQuery that made use of mouse gestures and hotkeys. You can click and drag with mouse to interact with interface’s music player or use directional keys and spacebar instead of mouse.<br />
<a href="http://yensdesign.com/tutorials/musicplayer/" target="_blank">View&nbsp;Demo</a></p>
<p><strong>102.</strong> <a href="http://davidwalsh.name/skype-mootools" target="_blank"><strong>Skype-Style Buttons Using MooTools</strong></a><br />
JQuery expert Janko Jovanovic dropped a sweet tutorial showing you how to create a Skype-like button using jQuery. David Walsh was impressed by Janko’s article so he decided to port the effect to MooTools.<br />
<a href="http://davidwalsh.name/dw-content/mootools-skype.php" target="_blank">View&nbsp;Demo</a></p>
<p><strong>103.</strong> <a href="http://www.impressivewebs.com/javascript-folder-collapser-for-dynamic-content-tutorial/" target="_blank"><strong>Folder Collapser For Dynamic Content </strong></a><br />
How to create a group of collapsible folders using pure JavaScript and some JQuery added to the final product to give it a little bit of flare. The code will be structured in such a way that allows for implementation into a dynamic page - wherein the number of folders may be unknown.<br /><a href="http://www.impressivewebs.com/demo-files/javascript-folder-collapser-demo.html" target="_blank">View&nbsp;Demo</a></p>
<p><strong>104.</strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/create-a-twitter-like-load-more-widget/" target="_blank"><strong>Twitter-Like Load More Widget</strong></a><br />
Twitter uses a brilliant technique for loading more information; you click the link and fresh items magically appear on the screen. This tutorial teaches you to use AJAX, CSS, JavaScript, JSON, PHP, and HTML to create that magic. This tutorial will also feature both jQuery and MooTools versions of the script.<br /><a href="http://davidwalsh.name/dw-content/load-more.php" target="_blank">View&nbsp;Demo</a> </p>
<p><strong>105.</strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/build-a-web-20-document-search-engine/" target="_blank"><strong>Web 2.0 Document Search Site</strong></a><br />
In this tutorial we will create a document searching site with jQuery. This site will be used to search documents by specifying an extension (file type). The data is then filtered and sent to Google.<br />
<a href="http://nettuts.s3.amazonaws.com/352_documentSearch/demo/index.html" target="_blank">View&nbsp;Demo</a> </p>
<p align="right"><a href="#top">Top</a></p>
<p>The resources are not in any particular order and as usual you decide what resource fits best for your purposes. Cashrevelations.com is not affiliated with any of the&nbsp;authors.</p>
<ul>
<li><strong>Part Two:</strong> <a href="http://cashrevelations.com/magazine/2009/11/40-javascript-tools/"> <strong>40 JavaScript&nbsp;Tools</strong></a></li>
</ul>






	<a rel="nofollow" href="javascript:window.print();" title="Print this article!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/printer.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=100%20Ajax%20And%20JavaScript%20Techniques&amp;body=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F" title="E-mail this story to a friend!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F&amp;title=100%20Ajax%20And%20JavaScript%20Techniques" title="Google"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F&amp;title=100%20Ajax%20And%20JavaScript%20Techniques" title="Live"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F&amp;title=100%20Ajax%20And%20JavaScript%20Techniques" title="del.icio.us"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F&amp;title=100%20Ajax%20And%20JavaScript%20Techniques" title="Digg"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F" title="Technorati"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F&amp;t=100%20Ajax%20And%20JavaScript%20Techniques" title="Facebook"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F&amp;title=100%20Ajax%20And%20JavaScript%20Techniques" title="StumbleUpon"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F&amp;t=100%20Ajax%20And%20JavaScript%20Techniques" title="MySpace"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F" title="TwitThis"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F" title="Propeller"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/propeller.gif" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F&amp;=100%20Ajax%20And%20JavaScript%20Techniques" title="YahooMyWeb"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F&amp;h=100%20Ajax%20And%20JavaScript%20Techniques" title="NewsVine"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://tailrank.com/share/?text=&amp;link_href=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F&amp;title=100%20Ajax%20And%20JavaScript%20Techniques" title="TailRank"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/tailrank.png" title="TailRank" alt="TailRank" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fajax-and-javascript%2F&amp;Title=100%20Ajax%20And%20JavaScript%20Techniques" title="BlinkList"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cashrevelations.com/magazine/2009/10/ajax-and-javascript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Change Blogger Template</title>
		<link>http://cashrevelations.com/magazine/2009/10/how-to-change-blogger-template/</link>
		<comments>http://cashrevelations.com/magazine/2009/10/how-to-change-blogger-template/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 10:31:58 +0000</pubDate>
		<dc:creator>Tommy Olovsson</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Blogger]]></category>

		<category><![CDATA[freebie]]></category>

		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://cashrevelations.com/magazine/?p=2630</guid>
		<description><![CDATA[Change the look of your Blogger blog by using an extern template - It is not a complicated procedure and everybody with some basic Internet knowledge can do it.]]></description>
			<content:encoded><![CDATA[<p><img src="http://cashrevelations.com/magazine/wp-content/media/blogger.jpg" alt="Blogger - Blogspot" title="Blogger - Blogspot" width="131" height="131" class="alignleft size-full wp-image-2699" />Blogger is an excellent platform for beginners or people that are not so much into the technical aspects of blogging. It has many benefits - it&#8217;s free, easy to handle, nothing complicated to install and an extensive support. You sacrifice some of the flexibility other platforms like for example Wordpress has, but on the other hand, less functions is less&nbsp;problems.</p>
<p>People use Blogger in different ways and for various purposes. Many of the bloggers on Blogger don&#8217;t get the attention they deserve although they have very appealing blogs (see some examples below) with great and interesting&nbsp;content.</p>
<ul>
<li><a href="http://sarahscovenanthomes.blogspot.com/" target="_blank">Sarah&#8217;s Covenant&nbsp;Homes</a></li>
<li><a href="http://theseeker77.blogspot.com/" target="_blank">The&nbsp;Seeker</a></li>
<li><a href="http://chiaroscurochiaroscuro.blogspot.com/" target="_blank">Dolce far&nbsp;niente</a></li>
<li><a href="http://the-v-factor-paranormal.blogspot.com/" target="_blank">The V&nbsp;Factor</a></li>
<li><a href="http://18thccuisine.blogspot.com/" target="_blank">18thC&nbsp;Cuisine</a></li>
</ul>
<p>Changing the look of your blog does not guarantee automatic success, but it does give you some advantage to build upon. And if changing the look of the blog is free and easy, why not giving it a&nbsp;try?</p>
<p>In this article we will change the appearance of your Blogger blog by using an extern template (not provided by Blogger). If you are a driven blogger, there&#8217;s no reason for you to continue to read - you could find something else to read on <a href="http://www.cashrevelations.com/magazine/">Cashrevelations.com</a>. But if you just have begun to use Blogger, then this article could be for&nbsp;you.</p>
<h2>Preparations</h2>
<p>Remember to backup a copy of your current Blogger template. If something goes wrong or if the new template isn&#8217;t that great after all, it is possible you might like to change back to your current&nbsp;template. </p>
<p><strong>How To Backup Your&nbsp;Template</strong></p>
<ol>
<li>Login to&nbsp;Blogger</li>
<li>After entering the Dashboard page - click&nbsp;Layout.</li>
<li>Then click edit HTML&nbsp;tab.</li>
<li>Click the Download Full Template&nbsp;link.</li>
<li>Choose where to save and name the file - click the Save&nbsp;button.</li>
<li>Finished - you have now a backup of your&nbsp;template</li>
</ol>
<p>You could create a folder on your computer called &#8220;Blog Templates - Back-Up&#8221;  and &#8220;Blog Widgets - Back-Up&#8221; or something similar. The important is to have some kind of system - templates and backups have a habit to be mysteriously absent when you really are in need of them. Do the same with all files which belong to your&nbsp;blog.</p>
<p>Bare in mind that once you upload a new template, all your widgets configurations can be lost. You can use Notepad and save your widgets configurations by the &#8220;copy and past&#8221; method. A tip is to take a screenshot of your widget configuration in the Layout section of your Dashboard - it will not save your configuration but at least it will help you to remember what widgets you use before you change the&nbsp;template.</p>
<p><strong>Read More:</strong><br />
<a href="http://hubpages.com/hub/Back-up-Blogger-Widgets-How-to-Back-up-Your-Blogger-Widgets" target="_blank">How to Back up Your Blogger Widgets</a><br />
<a href="http://www.geckoandfly.com/2009/05/29/how-to-download-or-backup-blogger-blogspot-posts-and-comments/" target="_blank">How To Download Or Backup Blogger Blogspot Posts And&nbsp;Comments</a></p>
<h2>Find A New Blogger&nbsp;Template</h2>
<p>If you search for &#8220;free blogger template&#8221; in Google you will get more results than you ever will have strength to go through. You have to ask yourself seriously what your practical and aesthetic needs are - and then choose from&nbsp;that. </p>
<p>A good idea is to keep it as clean as possible - cluttered templates with many widgets take time to load and can be extremely annoying and&nbsp;confusing. </p>
<p><strong>Some Blogger Templates You Can Use For&nbsp;Free</strong></p>
<p><strong>1. </strong><a href="http://www.bloggertricks.com/2008/08/3-column-vector-blogger-template.html" target="_blank"><strong>Butterfly by Blogger Tricks</strong></a><br />
Butterfly is originally a Wordpress theme designed by Templates4all.com converted into Blogger format. The template comes with two sidebars in the left and the main column in the right side. The highlight of the template is the mind blowing vector&nbsp;header. </p>
<p><strong>2.</strong> <a href="http://www.bloggertricks.com/2008/06/3-column-blogger-template-pepper.html" target="_blank"><strong>Pepper by Web2Feel</strong></a><br />
Pepper is a 3 column Blogger Template. The template was orginally a Wordpress theme designed by Jinsona of <a href="http://web2feel.com" target="_blank">web2feel.com</a> and then converted into Blogger format. The template has built-in spots for 125&#215;125 ads. Suitable for personal and affiliate&nbsp;blogging.</p>
<p><strong>3. </strong><a href="http://btemplates.com/2009/09/30/portfolio-press/" target="_blank"><strong>Portfolio Press by Blog Oh! Blog</strong></a><br />
2 Columns and fixed width template. Designed for Wordpress by <a href="http://www.blogohblog.com/" target="_blank">Blog Oh Blog</a> and adapted for Blogger by  	<a href="http://www.anshuldudeja.com/" target="_blank">Anshul Dudeja</a>. A dark and clean Blogger template suitable for photography and personal pages. Could also be used for product&nbsp;portfolios.</p>
<p><strong>4. </strong><a href="http://btemplates.com/2009/08/19/just-news/" target="_blank"><strong>Just News by Dhampire</strong></a><br />
2 Columns Blogger template with fixed width. Originally designed for Wordpress by <a href="http://newwpthemes.com/wordpress-theme/just-news/" target="_blank">New WordPress Themes</a> and adapted for Blogger by Dhampire. The template has built-in spots for 125&#215;125 and 468&#215;60 ads and is suitable for affiliate&nbsp;marketers.</p>
<p><strong>5. </strong><a href="http://btemplates.com/2009/03/23/whiteness/" target="_blank"><strong>Whiteness by Quite Random</strong></a><br />
A minimalist and white 2 columns Blogger template with fixed width. The template is good looking and loads very fast - which is important if you want your visitors return on a regular basis. Developed by <a href="http://fernandocoello.com/" target="_blank">Fernando Coello</a> on Quite&nbsp;Random.</p>
<p>Of course you can search for some other templates if you don&#8217;t like those above, there is a huge selection of both free and premium templates out on Internet. Just type in “free blogger template” in Google and you will have a lot to choose&nbsp;from.</p>
<p>Remember to extract (unzip) the archive with the Blogger template you just&nbsp;downloaded.</p>
<p><strong>Read More:</strong><br />
<a href="http://btemplates.com/" target="_blank">Blogger Templates - Free Blogger Templates for your Blog</a><br />
<a href="http://www.bloggertemplatesfree.com/" target="_blank">Free Blogger Templates - An extensive gallery of the best blog themes </a></p>
<h2>Upload A New&nbsp;Template</h2>
<p>Now when you have chosen a template you would like to use it&#8217;s time to upload the template to Blogger. It is not at all a complicated procedure and everybody with some basic Internet knowledge can do&nbsp;it.</p>
<p><a href="http://cashrevelations.com/magazine/2009/10/how-to-change-blogger-template/"><em>Click here to view the embedded&nbsp;video.</em></a></p>
<p></p>
<p>Watch the tutorial video above and follow the instructions or read below (or do both). You can also watch the video on the <a href="http://www.youtube.com/watch?v=daxffswK9Hk" target="_blank">Original YouTube Video&nbsp;Page</a>.</p>
<p><strong>How To Upload A New&nbsp;Template</strong></p>
<ol>
<li>Download and unzip the template&nbsp;file.</li>
<li>Login to your Blogger&nbsp;Dashboard.</li>
<li>Go to Layout, click Edit&nbsp;HTML.</li>
<li>Browse for the XML template file that you have just&nbsp;downloaded.</li>
<li>Click on the Upload&nbsp;button.</li>
<li>Confirm and save&nbsp;template</li>
</ol>
<p>If you now view your blog you should see that the appearance has changed. Now you can add some widgets - but remember, do not add too much of them. A cluttered and slow blog is a sure way to scare off&nbsp;visitors.</p>
<p>If you really want a unique look on your blog then customizing the template is the option for you - small changes can make a surprisingly big difference. Amanda Fazani at Blogger Buster has a serial of articles on how to customize your Blogger Template. The tutorials explain in a fairly simple way how to do the customizations  - you find the link&nbsp;below.</p>
<p><strong>Read More:</strong><br />
<a href="http://www.bloggerbuster.com/2008/01/cheats-guide-to-customising-blogger.html" target="_blank">A cheats&#8217; guide to customising Blogger templates</a><br />
<a href="http://www.bloggertemplatesblog.com/instructions-upload-blogger-template-blogger-blog/" target="_blank">How to Upload a Blogger Template on your Blogger&nbsp;Blog?</a></p>






	<a rel="nofollow" href="javascript:window.print();" title="Print this article!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/printer.png" title="Print this article!" alt="Print this article!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=How%20To%20Change%20Blogger%20Template&amp;body=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F" title="E-mail this story to a friend!"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F&amp;title=How%20To%20Change%20Blogger%20Template" title="Google"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F&amp;title=How%20To%20Change%20Blogger%20Template" title="Live"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F&amp;title=How%20To%20Change%20Blogger%20Template" title="del.icio.us"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F&amp;title=How%20To%20Change%20Blogger%20Template" title="Digg"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F" title="Technorati"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F&amp;t=How%20To%20Change%20Blogger%20Template" title="Facebook"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F&amp;title=How%20To%20Change%20Blogger%20Template" title="StumbleUpon"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F&amp;t=How%20To%20Change%20Blogger%20Template" title="MySpace"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F" title="TwitThis"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F" title="Propeller"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/propeller.gif" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F&amp;=How%20To%20Change%20Blogger%20Template" title="YahooMyWeb"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F&amp;h=How%20To%20Change%20Blogger%20Template" title="NewsVine"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://tailrank.com/share/?text=&amp;link_href=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F&amp;title=How%20To%20Change%20Blogger%20Template" title="TailRank"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/tailrank.png" title="TailRank" alt="TailRank" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fcashrevelations.com%2Fmagazine%2F2009%2F10%2Fhow-to-change-blogger-template%2F&amp;Title=How%20To%20Change%20Blogger%20Template" title="BlinkList"><img src="http://cashrevelations.com/magazine/wp-content/plugins/sociable/images/blinklist.png" title="BlinkList" alt="BlinkList" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://cashrevelations.com/magazine/2009/10/how-to-change-blogger-template/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
