<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Tutorials, Resources, Web Trends, Code Snippets, Php scripts, Opensource, Ecommerce, Cms, Html, Xhtml scripts, Themes, Templates, Css, Psd tuts, Photoshop,tuts,web,website,tutorial,web tutorial &#187; 2009</title>
	<atom:link href="http://www.freshtuts.net/tag/2009/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freshtuts.net</link>
	<description>Web design resources snippets of codes like php css html xml xhtml and tutorials on howto design sites and freebies of icons templates psd files psd templates themes</description>
	<lastBuildDate>Fri, 16 Dec 2011 19:44:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Getting Started with most popular jQuery libraries</title>
		<link>http://www.freshtuts.net/getting-started-with-jquery/</link>
		<comments>http://www.freshtuts.net/getting-started-with-jquery/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:12:51 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=2574</guid>
		<description><![CDATA[The web development scene is moving forward at a lightning-fast ...]]></description>
			<content:encoded><![CDATA[<p>The web development scene is moving forward at a lightning-fast  pace, and it’s imperative that developers continue to keep their  skills fresh. If you’ve been involved in front-end design or  development in any form over the past five years or so, then it’s very  likely that you’ve experimented at some point with one of the popular  JavaScript libraries, many of which have become quite prominent and are  now used on a number of large commercial websites.</p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/40dda558aaimage.jpg.jpg" alt="Getting Started with jQuery" width="550" height="250" /></p>
<p><span> </span></p>
<p>In this article, I’ll be introducing and laying the groundwork for  advanced JavaScript development with one of the most popular JavaScript  libraries available: <a href="http://jquery.com">jQuery</a>.</p>
<p>Although there are many beginning tutorials online that can provide a  great starting point for jQuery development, in this article I’m hoping  to go beyond just quick-start syntax and instead provide a solid  overview of jQuery and discuss the benefits of using such a library. Of  course, much of this information–outside of the syntax and other  jQuery-specific details–will be applicable to any JavaScript library.</p>
<h3>Why a JavaScript library?</h3>
<p>To quote the official jQuery slogan: &#8220;Write less, do more.&#8221; The role  of a web developer is to create code that determines what will result  from a user’s interaction with a web page. Web developers should not  have to spend hours debugging browser quirks. Instead, they should be  free to deal solely with the actions and the results. This is where a JavaScript library comes into play.</p>
<h4>Overcoming browser differences</h4>
<p>Different browsers handle DOM manipulation, transparency effects,  and animation in different ways, requiring, in some cases, reams of  code just to create a simple effect. Using a JavaScript library allows  you to completely bypass all of those challenges, giving you access to  an API (Application Programming Interface) that deals directly with the  tasks you actually want to accomplish. All the challenges and issues  common to JavaScript are dealt with behind the scenes, allowing you  to integrate functionality without wondering whether or not it will  work in a particular browser.</p>
<h4>Unobtrusive JavaScript</h4>
<p>Another impelling reason to use a JavaScript library is that all  libraries allow you to include JavaScript in your pages unobtrusively,  thus keeping your <em>behavior</em> layer (the JavaScript) separate from the <em>content</em> and <em>presentation</em> layers (the XHTML and CSS).</p>
<h4>Accomplishing complex tasks with ease</h4>
<p>Finally, a very powerful feature of any JavaScript library is its  ability to manipulate any element or set of elements on a web page with  just one line of code. Take, for example, the following HTML:</p>
<pre>
<div class="container">
<ul class="list">
<li>Text Here</li>
<li>Text Here</li>
<li>Text Here</li>
<li>Text Here</li>
<li>Text Here</li>
</ul>
</div>
</pre>
<p>Let’s say you wanted to use JavaScript to change the background  color of the first list item element (<code> </code></p>
<li>) in the unordered list above.  Using pure JavaScript, your code would look something like this:
<pre>var myListCollection = document.getElementsByTagName("ul");
  for (var i = 0; i &lt; myListCollection.length; i++) {
    if (myListCollection[i].className === "list") {
      myListCollection[i].childNodes[0].style.backgroundColor = "blue";
    }
  }</pre>
<p>Using jQuery, you can accomplish the same thing with just one, easy-to-maintain line of code:</p>
<pre>$("ul.list li:first-child").css("background-color, "blue");</pre>
<h4>Further reading</h4>
<ul>
<li><a href="http://javascript.about.com/od/hintsandtips/a/liborself.htm">JavaScript Library or Code Yourself</a></li>
<li><a href="http://simonwillison.net/static/2008/xtech/">Unobtrusive JavaScript with jQuery – Presentation</a></li>
</ul>
<h3>Understand CSS concepts</h3>
<p>One area that is imperative to powerful jQuery development, is  strong knowledge of CSS. The reason for this is because jQuery often  utilizes CSS-based syntax to manipulate DOM elements. Here are some  concepts that you should be quite familiar with before diving into  extensive jQuery development:</p>
<ul>
<li>Type selectors</li>
<li>Class selectors</li>
<li>ID selectors</li>
<li>Descendant Selectors</li>
<li>Child Selectors</li>
<li>Attribute Selectors</li>
<li>CSS Specificity</li>
<li>The Cascade &amp; Inheritance</li>
</ul>
<p>Most of the above CSS concepts should already be very familiar to  any modern-day front-end developer, since any CSS layout would utilize  these. jQuery not only incorporates the basic selectors (type, class,  and ID), but it also uses descendant and child selectors, which aren’t  supported by all currently-used browsers. But with jQuery, due to its  built-in browser normalization, all selectors are supported equally.</p>
<p>Understanding that jQuery incorporates CSS syntax when accessing  elements will greatly enhance your ability to quickly and easily create  powerful JavaScript applications with jQuery.</p>
<ul>
<li><a href="http://www.w3.org/TR/CSS2/selector.html">CSS Selectors at W3.org</a></li>
<li><a href="http://www.smashingmagazine.com/2009/08/17/taming-advanced-css-selectors/">Taming Advanced CSS Selectors</a></li>
</ul>
<h3>Understand JavaScript concepts</h3>
<p>In order to make full use of jQuery, it is a good idea to learn  certain JavaScript concepts. Sure, you can do a ton of stuff in jQuery  without knowing much about some of the concepts listed below, but  you’ll have a bigger advantage in your jQuery development if you take  the time to understand a few fundamentals, including:</p>
<ul>
<li>Object creation</li>
<li>Properties of objects</li>
<li>Object literals</li>
<li>Functions as methods</li>
<li>Anonymous functions</li>
<li>Closures</li>
</ul>
<p>Again, it is not necessary to fully understand any of the above  concepts in order to start working with jQuery, but your abilities with  jQuery’s API will increase greatly if you understand one or more of the  above concepts.</p>
<ul>
<li><a href="http://www.devarticles.com/c/a/JavaScript/ObjectOriented-JavaScript-An-Introduction-to-Core-Concepts/">Object-Oriented JavaScript: An Introduction to Core Concepts</a></li>
<li><a href="http://www.webreference.com/programming/javascript/object-oriented_javascript/">Object-Oriented Javascript</a> at Webreference.com</li>
</ul>
<h3>The jQuery source code</h3>
<p>Before getting started with any jQuery development, you’ll first have to <a href="http://docs.jquery.com/Downloading_jQuery">download the latest version</a> of the jQuery library and include it in your pages:</p>
<pre><script src="js/jquery-1.3.2.min.js" type="text/javascript"><!--mce:0--></script></pre>
<p>The above line of HTML should appear before any actual jQuery code, otherwise you’ll get errors.</p>
<p>Alternatively, instead of hosting the source code yourself, you could link directly to the most recent version on the <a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery">Google Ajax Libraries API</a> which can save you some server resources. (read <a href="http://sixrevisions.com/web-applications/website-features-that-you-can-easily-offload/">more ways to offload website features</a>).</p>
<h3>jQuery syntax</h3>
<p>Now that you have an overview of the benefits of jQuery, along with  some understanding of concepts involved, let’s take a look at some  syntax to get us started with this powerful library.</p>
<h4>The jQuery wrapper</h4>
<p>The jQuery wrapper is the function that is at the core of all jQuery  commands. I used it earlier in one of the examples above. Here it is  again:</p>
<pre>$("li a");</pre>
<p>The <code>$</code> symbol is an alias for the jQuery function, so the above line of code could alternatively be written:</p>
<pre>jQuery("li a");</pre>
<p>But, for obvious reasons (e.g. to keep your code terse), you’ll rarely see that syntax.</p>
<p>The jQuery function shown in the above two examples  returns an object containing an array of the DOM elements specified  inside the parentheses (in this case, all anchor tags that are nested  inside of <code> </code></li>
<li> tags). Of course, in both examples  above, we haven’t specified an action; all we’re doing is returning  those DOM elements, which does nothing. In the next section, we’ll add  methods that will act on the group of elements we’re targeting.<br />
<h4>jQuery commands</h4>
<p>jQuery’s API includes easy access to effects and other actions via  built-in methods that would normally take dozens of lines of code to  accomplish in a cross-browser fashion with pure JavaScript. For  example, let’s add a &#8220;fade out&#8221; method to the code from the previous  examples:</p>
<pre>$("li a")<strong>.fadeOut()</strong>;</pre>
<p>The above line of code &#8220;fades out&#8221; all anchor tags on the page that are nested inside of <code> </code></li>
<li> tags. If we want to fade the anchors back in again, we just use the <code>fadeIn()</code> method:
<pre>$("li a")<strong>.fadeIn()</strong>;</pre>
<h4>Chaining commands</h4>
<p>jQuery also allows developers to chain commands, stringing one after  another. So, we could combine the previous two examples, as follows:</p>
<pre>$("li a").fadeOut().fadeIn();</pre>
<p>The above code will fade out all anchor tags nested within list  items, then immediately fade them back in. The number of chained items  is infinite (or within reasonably set limits), allowing for numerous  commands to work on the same group of elements, each happening in  succession.</p>
<p>That’s just a small sampling of what’s possible with jQuery, and how  easy it is to accomplish tasks that would normally take many lines of  code, and a lot of browser testing. Although you’ll still do browser  testing when running jQuery code, the results will virtually always be  the same: cross-browser, unobtrusive JavaScript that’s easy to write  and easy to maintain.</p>
<h4>Running code when the DOM is ready</h4>
<p>Earlier we touched on the concept of unobtrusive JavaScript, and how  jQuery is written to allow your scripts to remain separate from content  and presentation. So far, the code examples we’ve discussed would run  fine as long as they were included at the bottom of an HTML page. If,  on the other hand, they were included in the head of the document, they  would fail to work because, at that point, the document tree has not  yet rendered.</p>
<p>jQuery allows us to run our code only when the DOM is ready. This is done by means of the <code>$(document).ready</code> handler. The beauty of this handler is that it doesn’t make the code  wait until the entire page finishes loading, as would be the case with  a typical <code>window.onload</code> event. With the (document).ready  handler, your code will run as soon as the DOM tree is finished  rendering, before all images and other media have finished loading,  thus minimizing load time.</p>
<p>Let’s try running our previous code example when the DOM is ready:</p>
<pre>$(document).ready(function(){
  $("li a").fadeOut().fadeIn();
});</pre>
<p>The above code tells jQuery to run an anonymous function when the  document tree is done rendering. The anonymous function contains the  code we saw previously, which faded our anchors out, then immediately  faded them back in again. This code could be included in the  of the document, near the bottom of the page, or anywhere else, and it would run exactly the same way.</p>
<p>The &#8220;ready&#8221; event is just one of the many events available through jQuery’s API. Others include <code>click</code>, <code>dblclick</code>, <code>load</code>, <code>blur</code>, <code>keydown</code>, <code>submit</code>, and more.</p>
<h4>Further reading</h4>
<ul>
<li><a href="http://docs.jquery.com/Main_Page">jQuery Documentation</a></li>
<li><a href="http://docs.jquery.com/Events">Event-Related Functions in the jQuery API</a></li>
<li><a href="http://docs.jquery.com/Events/ready">The jQuery Ready Event</a></li>
</ul>
<h3>Conclusion</h3>
<p>jQuery is capable of so much more, and I’ve only just begun  demonstrating its power and simplicity. But I think this suffices to  provide a good overview, with some syntax basics, thus preparing  beginning jQuery developers for easy-to-write and practical JavaScript  code.</p>
<h3>Further reading</h3>
<ul>
<li><a href="http://docs.jquery.com/Tutorials">jQuery General Tutorials</a></li>
<li><a href="http://www.noupe.com/tutorial/51-best-of-jquery-tutorials-and-examples.html">51+ jQuery Tutorials</a></li>
<li><a href="http://webitect.net/coding/30-jquery-tutorials-for-complete-beginners/">30 jQuery Tutorials for Complete Beginners</a></li>
</ul>
<h3>Related Content</h3>
<ul>
<li><a href="http://sixrevisions.com/tutorials/javascript_tutorial/create-a-slick-and-accessible-slideshow-using-jquery/">Create a Slick and Accessible Slideshow Using jQuery</a></li>
<li><a href="http://sixrevisions.com/resources/14-jquery-plugins-for-working-with-images/">14 jQuery Plugins for Working with Images</a></li>
<li><a href="http://sixrevisions.com/javascript/40-exceptional-jquery-interface-techniques-and-tutorials/">40 Exceptional jQuery Interface Techniques and Tutorials</a></li>
<li><em>Related categories</em>: <a href="http://sixrevisions.com/category/javascript/">JavaScript</a> and Web <a href="http://sixrevisions.com/category/web-development/">Development</a></li>
</ul>
<h3>About the Author</h3>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/5bbec270f6small.jpg.jpg" alt="" width="80" height="80" /><span><strong>Louis Lazaris</strong> is a writer and freelance web developer based in  Toronto, Canada. He has 9 years of experience in the web development  industry and posts <a href="http://www.impressivewebs.com/articles/">web design articles</a> and <a href="http://www.impressivewebs.com/tutorials/">tutorials</a> on his blog, <a href="http://www.impressivewebs.com">Impressive Webs</a>. Follow Louis on <a href="http://twitter.com/ImpressiveWebs">Twitter</a> or contact him through <a href="http://www.impressivewebs.com/contact/">this form</a>.</span></p>
<div><a href="http://feeds.feedburner.com/~ff/SixRevisions?a=gKcaKYvPWew:wj46Z0bw_qA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SixRevisions?i=gKcaKYvPWew:wj46Z0bw_qA:V_sGLiPBpWU" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=gKcaKYvPWew:wj46Z0bw_qA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=yIl2AUoC8zA" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=gKcaKYvPWew:wj46Z0bw_qA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=qj6IDK7rITs" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=gKcaKYvPWew:wj46Z0bw_qA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/SixRevisions?i=gKcaKYvPWew:wj46Z0bw_qA:gIN9vFwOqvQ" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=gKcaKYvPWew:wj46Z0bw_qA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=7Q72WNTAKBA" border="0" alt="" /></a></div>
<p><img src="http://feeds.feedburner.com/~r/SixRevisions/~4/gKcaKYvPWew" alt="" width="1" height="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/40dda558aaimage.jpg.jpg" alt="" /></p>
<p>Read more here:<br />
<a title="Getting Started with jQuery" href="http://feedproxy.google.com/~r/SixRevisions/~3/gKcaKYvPWew/" target="_blank">Getting Started with jQuery</a></li>
<div style='display:none' id="post-refEl-2574"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/getting-started-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 Free Christmas Desktop Wallpapers</title>
		<link>http://www.freshtuts.net/15-free-christmas-desktop-wallpapers/</link>
		<comments>http://www.freshtuts.net/15-free-christmas-desktop-wallpapers/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:02:17 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[wallpapers]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[festive]]></category>
		<category><![CDATA[festive-season]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[merry-christmas]]></category>
		<category><![CDATA[Vector Christmas Tree]]></category>
		<category><![CDATA[Wonderful Christmas]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=2563</guid>
		<description><![CDATA[ With Christmas only a week and a half away, I thought it would be a great idea to roundup some fantastic Christmas Desktop Wallpapers, to bring the festive season to your desktop. Compiled ...]]></description>
			<content:encoded><![CDATA[<p>
<p>With Christmas only a week and a half away, I thought it would be a great idea to roundup some fantastic Christmas Desktop Wallpapers, to bring the festive season to your desktop. Compiled here are 15 Christmas Desktop Wallpapers that are free to download in many different screen resolutions.</p>
<p>Let me know what Desktop Wallpaper you like the best. I will have to say my favorite is probably number 5 of number 13. Also, if you have found any other amazing Christmas Desktop Wallpapers, then please feel free to share them with us and the readers of WebDesignDev by leaving a comment. Thanks and enjoy the collection!</p>
<h3><span>#1</span> Christmas Snowman</h3>
<p><a href="http://www.ewallpapers.eu/Holidays/Christmas/Christmas-Snowman.html" target="_blank"><img class="alignnone size-full wp-image-4705" title="1" src="http://www.freshtuts.net/wp-content/uploads/2010/01/c9ea75bd0c116.jpg.jpg" alt="1" width="674" height="506" /></a></p>
<hr />
<h3><span>#2</span> Festive Christmas</h3>
<p><a href="http://www.wallcoo.net/holiday/wonderful_christmas_1920x1200/html/wallpaper10.html" target="_blank"><img class="alignnone size-full wp-image-4706" title="2" src="http://www.freshtuts.net/wp-content/uploads/2010/01/911365d19527.jpg.jpg" alt="2" width="674" height="422" /></a></p>
<hr />
<h3><span>#3</span> Merry Christmas</h3>
<p><a href="http://www.blirk.net/new-year-wallpaper/117/" target="_blank"><img class="alignnone size-full wp-image-4707" title="3" src="http://www.freshtuts.net/wp-content/uploads/2010/01/349704c08535.jpg.jpg" alt="3" width="674" height="421" /></a></p>
<hr />
<h3><span>#4</span> Merry Christmas</h3>
<p><a href="http://www.ewallpapers.eu/Holidays/Christmas/merry-christmas-2009.html" target="_blank"><img class="alignnone size-full wp-image-4708" title="4" src="http://www.freshtuts.net/wp-content/uploads/2010/01/1db25da45445.jpg.jpg" alt="4" width="674" height="395" /></a></p>
<hr />
<h3><span>#5</span> Colourful Christmas Lights</h3>
<p><a href="http://www.wallcoo.net/holiday/wonderful_christmas_1920x1200/html/wallpaper8.html" target="_blank"><img class="alignnone size-full wp-image-4709" title="5" src="http://www.freshtuts.net/wp-content/uploads/2010/01/9eb15a3e8255.jpg.jpg" alt="5" width="674" height="422" /></a></p>
<hr />
<h3><span>#6</span> Christmas Village</h3>
<p><a href="http://www.blirk.net/new-year-wallpaper/99/" target="_blank"><img class="alignnone size-full wp-image-4710" title="6" src="http://www.freshtuts.net/wp-content/uploads/2010/01/0e222dfdce65.jpg.jpg" alt="6" width="674" height="506" /></a></p>
<hr />
<h3><span>#7</span> Wonderful Christmas</h3>
<p><a href="http://www.wallcoo.net/holiday/wonderful_christmas_1920x1200/html/wallpaper1.html" target="_blank"><img class="alignnone size-full wp-image-4711" title="7" src="http://www.freshtuts.net/wp-content/uploads/2010/01/01557cfb3475.jpg.jpg" alt="7" width="674" height="422" /></a></p>
<hr />
<h3><span>#8</span> Grey Christmas</h3>
<p><a href="http://www.ewallpapers.eu/Holidays/Christmas/Grey-Christmas.html" target="_blank"><img class="alignnone size-full wp-image-4712" title="8" src="http://www.freshtuts.net/wp-content/uploads/2010/01/c380b744f085.jpg.jpg" alt="8" width="674" height="506" /></a></p>
<hr />
<h3><span>#9</span> Gold Christmas Tree</h3>
<p><a href="http://www.blirk.net/new-year-wallpaper/92/" target="_blank"><img class="alignnone size-full wp-image-4713" title="9" src="http://www.freshtuts.net/wp-content/uploads/2010/01/d86fc7f2f494.jpg.jpg" alt="9" width="674" height="421" /></a></p>
<hr />
<h3><span>#10</span> Vector Christmas Tree</h3>
<p><a href="http://www.blirk.net/new-year-wallpaper/119/" target="_blank"><img class="alignnone size-full wp-image-4714" title="10" src="http://www.freshtuts.net/wp-content/uploads/2010/01/a9e1ce9550104.jpg.jpg" alt="10" width="674" height="421" /></a></p>
<hr />
<h3><span>#11</span> Snowman Vector</h3>
<p><a href="http://www.wallcoo.net/holiday/christmas-2004/html/wallpaper1.html" target="_blank"><img class="alignnone size-full wp-image-4715" title="11" src="http://www.freshtuts.net/wp-content/uploads/2010/01/8aa287c735117.jpg.jpg" alt="11" width="674" height="506" /></a></p>
<hr />
<h3><span>#12</span> Merry Christmas</h3>
<p><a href="http://www.blirk.net/new-year-wallpaper/101/" target="_blank"><img class="alignnone size-full wp-image-4716" title="12" src="http://www.freshtuts.net/wp-content/uploads/2010/01/5285ab5f88123.jpg.jpg" alt="12" width="674" height="421" /></a></p>
<hr />
<h3><span>#13</span> Festive Christmas</h3>
<p><a href="http://www.wallcoo.net/holiday/wonderful_christmas_1920x1200/html/wallpaper4.html" target="_blank"><img class="alignnone size-full wp-image-4717" title="13" src="http://www.freshtuts.net/wp-content/uploads/2010/01/d04730a784133.jpg.jpg" alt="13" width="674" height="422" /></a></p>
<hr />
<h3><span>#14</span> Merry Christmas</h3>
<p><a href="http://www.blirk.net/new-year-wallpaper/126/" target="_blank"><img class="alignnone size-full wp-image-4718" title="14" src="http://www.freshtuts.net/wp-content/uploads/2010/01/65d94e7f32143.jpg.jpg" alt="14" width="674" height="421" /></a></p>
<hr />
<h3><span>#15</span> Blue Christmas Tree</h3>
<p><a href="http://wallpapers.diq.ru/en/11__Blue_Christmas.html" target="_blank"><img class="alignnone size-full wp-image-4719" title="15" src="http://www.freshtuts.net/wp-content/uploads/2010/01/292e88b933153.jpg.jpg" alt="15" width="674" height="506" /></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=NQvaWkwlhr0:HLMoAeCYp74:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=NQvaWkwlhr0:HLMoAeCYp74:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?i=NQvaWkwlhr0:HLMoAeCYp74:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=NQvaWkwlhr0:HLMoAeCYp74:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?i=NQvaWkwlhr0:HLMoAeCYp74:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=NQvaWkwlhr0:HLMoAeCYp74:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?i=NQvaWkwlhr0:HLMoAeCYp74:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=NQvaWkwlhr0:HLMoAeCYp74:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?d=TzevzKxY174" border="0"></img></a>
</div>
</p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/c9ea75bd0c116.jpg.jpg" /></p>
<p>Read the rest here:<br />
<a target="_blank" href="http://www.webdesigndev.com/roundups/15-free-christmas-desktop-wallpapers" title="15 Free Christmas Desktop Wallpapers">15 Free Christmas Desktop Wallpapers</a></p>
<div style='display:none' id="post-refEl-2563"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/15-free-christmas-desktop-wallpapers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Free Newspaper &amp; Magazine WordPress Themes</title>
		<link>http://www.freshtuts.net/10-free-newspaper-magazine-wordpress-themes/</link>
		<comments>http://www.freshtuts.net/10-free-newspaper-magazine-wordpress-themes/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:02:09 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[exactly-the-way]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[magazine-styled]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[newspaper-word]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Premium]]></category>
		<category><![CDATA[small-magazine]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ZinePress]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=2547</guid>
		<description><![CDATA[ Have you ever looked at a newspaper and thought I wonder what that would ...]]></description>
			<content:encoded><![CDATA[<p>
<p>Have you ever looked at a newspaper and thought I wonder what that would look like in a web design, or I wonder how I would go about coding that out? Well I have put together showcase of the top 10 Free newspaper and magazine WordPress Themes to transform your blog.</p>
<p>These themes all look fairly nice and you can customize them exactly the way you like. Some of them you will need to download certain plugins that run alongside the theme. Let me know what theme you like best, and if you have found or are using any other newspaper and magazine styled WordPress themes on your site im sure we would love to hear it.</p>
<h3>Chronicle</h3>
<p><a href="http://themes.weboy.org/chronicle/" target="_blank"><img class="alignnone size-full wp-image-4754" title="1" src="http://www.freshtuts.net/wp-content/uploads/2010/01/dec7890065119.jpg.jpg" alt="1" width="674" height="303" /></a></p>
<p><span>* * * * *</span></p>
<h3>Hamasaki</h3>
<p><a href="http://www.jauhari.net/themes/hamasaki#tb" target="_blank"><img class="alignnone size-full wp-image-4755" title="2" src="http://www.freshtuts.net/wp-content/uploads/2010/01/773e679c4229.jpg.jpg" alt="2" width="674" height="315" /></a></p>
<p><span>* * * * *</span></p>
<h3>Magazeen</h3>
<p><a href="http://www.smashingmagazine.com/2009/02/23/magazeen-free-magazine-look-wordpress-theme/" target="_blank"><img class="alignnone size-full wp-image-4756" title="3" src="http://www.freshtuts.net/wp-content/uploads/2010/01/bde146580737.jpg.jpg" alt="3" width="674" height="241" /></a></p>
<p><span>* * * * *</span></p>
<h3>Small Magazine Theme</h3>
<p><a href="http://www.gabfire.com/small-magazine-wordpress-theme/" target="_blank"><img class="alignnone size-full wp-image-4757" title="4" src="http://www.freshtuts.net/wp-content/uploads/2010/01/c5ded0c0de47.jpg.jpg" alt="4" width="674" height="348" /></a></p>
<p><span>* * * * *</span></p>
<h3>ZinePress</h3>
<p><a href="http://wellmedicated.com/themes/zinepress/" target="_blank"><img class="alignnone size-full wp-image-4758" title="5" src="http://www.freshtuts.net/wp-content/uploads/2010/01/c4259ecdff57.jpg.jpg" alt="5" width="674" height="309" /></a></p>
<p><span>* * * * *</span></p>
<h3>Old News Theme</h3>
<p><a href="http://www.egracecreative.com/2009/07/01/old-news-wordpress-theme/" target="_blank"><img class="alignnone size-full wp-image-4759" title="6" src="http://www.freshtuts.net/wp-content/uploads/2010/01/3860f1e78967.jpg.jpg" alt="6" width="674" height="281" /></a></p>
<p><span>* * * * *</span></p>
<h3>Arras Theme</h3>
<p><a href="http://www.arrastheme.com" target="_blank"><img class="alignnone size-full wp-image-4760" title="7" src="http://www.freshtuts.net/wp-content/uploads/2010/01/ebc539af3277.jpg.jpg" alt="7" width="674" height="284" /></a></p>
<p><span>* * * * *</span></p>
<h3>Newspaper WordPress Theme</h3>
<p><a href="http://www.alltemplate.org/wordpress/wordpress-free-theme/premium-newspaper-free-wordpress-theme/" target="_blank"><img class="alignnone size-full wp-image-4761" title="8" src="http://www.freshtuts.net/wp-content/uploads/2010/01/61bc48475187.jpg.jpg" alt="8" width="674" height="287" /></a></p>
<p><span>* * * * *</span></p>
<h3>The Stars</h3>
<p><a href="http://divageekdesigns.com/2009/01/29/the-stars-a-free-premium-wordpress-theme/" target="_blank"><img class="alignnone size-full wp-image-4762" title="9" src="http://www.freshtuts.net/wp-content/uploads/2010/01/57c78f8aea96.jpg.jpg" alt="9" width="674" height="299" /></a></p>
<p><span>* * * * *</span></p>
<h3>The BlogTimes</h3>
<p><a href="http://id-templates.blogspot.com/2009/02/blogtimes-newspaper-style-wordpress.html" target="_blank"><img class="alignnone size-full wp-image-4763" title="10" src="http://www.freshtuts.net/wp-content/uploads/2010/01/47d298dabe106.jpg.jpg" alt="10" width="674" height="269" /></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=dFV5CLpnt1U:630Se3bJd9c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=dFV5CLpnt1U:630Se3bJd9c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?i=dFV5CLpnt1U:630Se3bJd9c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=dFV5CLpnt1U:630Se3bJd9c:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?i=dFV5CLpnt1U:630Se3bJd9c:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=dFV5CLpnt1U:630Se3bJd9c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?i=dFV5CLpnt1U:630Se3bJd9c:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=dFV5CLpnt1U:630Se3bJd9c:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?d=TzevzKxY174" border="0"></img></a>
</div>
</p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/dec7890065119.jpg.jpg" /></p>
<p>Original post:<br />
<a target="_blank" href="http://www.webdesigndev.com/web-development/10-free-newspaper-magazine-wordpress-themes" title="10 Free Newspaper &amp; Magazine WordPress Themes">10 Free Newspaper &amp; Magazine WordPress Themes</a></p>
<div style='display:none' id="post-refEl-2547"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/10-free-newspaper-magazine-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Most Popular Articles of 2009</title>
		<link>http://www.freshtuts.net/the-most-popular-articles-of-2009/</link>
		<comments>http://www.freshtuts.net/the-most-popular-articles-of-2009/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 12:46:15 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[Gradients]]></category>
		<category><![CDATA[SHOP]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=2151</guid>
		<description><![CDATA[ The end of 2009 marked WDL&#8217;s first full year in existence, and...]]></description>
			<content:encoded><![CDATA[<p>
<p>The end of 2009 marked WDL&#8217;s first full year in existence, and what a great year it was. We feel that we&#8217;ve put out a lot of valuable content that has been helpful to our readers who we greatly appreciate. So before we start publishing new content for 2010, we thought it would be interesting to take a look back at the year that was for WDL by listing some of our most popular articles from 2009.<span></span></p>
<p>These popular articles are not listed in order of popularity, but rather date of publication. </p>
<h3><a href="http://webdesignledger.com/freebies/30-most-incredible-textures-for-vintage-style-design" target="_blank">30 Most Incredible Textures for Vintage Style Design</a></h3>
<p><a href="http://webdesignledger.com/freebies/30-most-incredible-textures-for-vintage-style-design" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/3ea226f351intage.jpg.jpg" alt="web design" /></a></p>
<p>One of the most important aspects of a good vintage style design is the use of authentic looking textures. Since most of you probably don&#8217;t have time to browse the local antique shop, and your grandmother&#8217;s attic is miles away, we&#8217;ve put together a list of some of the best vintage textures we have ever seen.</p>
<h3><a href="http://webdesignledger.com/freebies/40-super-sleek-fonts-for-clean-web-design" target="_blank">40 Super Sleek Fonts for Clean Web Design</a></h3>
<p><a href="http://webdesignledger.com/freebies/40-super-sleek-fonts-for-clean-web-design" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/b8bcaf6f40fonts.jpg.jpg" alt="web design" /></a></p>
<p>Creating grungy designs can be fun, but sometimes a site requires a cleaner approach, one where artsy design elements take a back seat to clear presentation of content. Typography plays a big role in this type of design.</p>
<h3><a href="http://webdesignledger.com/freebies/the-best-social-media-icons-all-in-one-place" target="_blank">The Best Social Media Icons All In One Place</a></h3>
<p><a href="http://webdesignledger.com/freebies/the-best-social-media-icons-all-in-one-place" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/add8e9e328icons.jpg.jpg" alt="web design" /></a></p>
<p>The ability to easily bookmark or share content on popular social media platforms is now a must have feature for web sites. It&#8217;s also important that this feature isn&#8217;t over looked by web site visitors. So it&#8217;s always a good idea to use icons when linking to social media sites. They get peoples attention and the logos are immediately recognizable.</p>
<h3><a href="http://webdesignledger.com/freebies/all-the-small-icons-youll-ever-need" target="_blank">All the Small Icons You’ll Ever Need</a></h3>
<p><a href="http://webdesignledger.com/freebies/all-the-small-icons-youll-ever-need" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/6ef82fda94icons.jpg.jpg" alt="web design" /></a></p>
<p>Big highly detailed icons make great eye candy, but small icons can be very useful when designing websites. They are great for styling lists and giving links visual flair that is eye catching and meaningful. It&#8217;s amazing what can be said visually in a 16 x 16 pixel area. In this post, you will find a large collection of small icons that should fit most of your design needs.</p>
<h3><a href="http://webdesignledger.com/tools/10-best-content-management-systems-for-designers" target="_blank">10 Best Content Management Systems for Designers</a></h3>
<p><a href="http://webdesignledger.com/tools/10-best-content-management-systems-for-designers" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/663f0af5e0cms.jpg.jpg" alt="web design" /></a></p>
<p>There are a lot of content management systems out there, but many of them are overly complicated and require a certain level of technical expertise. However, there are a select few that focus on simplicity and ease-of-use, but still give the designer flexibility in templating features and customization. In this article, we have listed ten of these CMS&#8217;s. Some of them are well known, while others you may have never heard of, but deserve a look.</p>
<h3><a href="http://webdesignledger.com/tips/20-dos-and-donts-of-effective-web-design" target="_blank">20 Do’s and Don’ts of Effective Web Design</a></h3>
<p><a href="http://webdesignledger.com/tips/20-dos-and-donts-of-effective-web-design" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/03f9795360donts.jpg.jpg" alt="web design" /></a></p>
<p>When you are creating a website (or hiring a web/blog designer to create one for you), there are specific items you need to be aware of. Things that normally wouldn&#8217;t cross your mind. For the average person who wants a website or blog for their business, they are after one very important thing &#8211; <strong>sales</strong>. Now, they may tell you that they want the <em>big flashy logos</em>, or the <em>overdone textures/gradients</em>, but it is the job of a well skilled web designer to steer their clients in the right direction.</p>
<h3><a href="http://webdesignledger.com/inspiration/404-error-pages-for-your-viewing-pleasure" target="_blank">404 Error Pages for Your Viewing Pleasure</a></h3>
<p><a href="http://webdesignledger.com/inspiration/404-error-pages-for-your-viewing-pleasure" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/fb6f6261c2404.jpg.jpg" alt="web design" /></a></p>
<p>Error pages are easy to create, so there’s no excuse to avoid them. Even with the most solid website, you never know when someone might mis-spell a URL link and hit a page that doesn’t exist. Be prepared when that happens to you, even if by no fault of your own. Let these great error pages be your inspiration to creating your own.</p>
<h3><a href="http://webdesignledger.com/tips/most-used-and-abused-web-design-trends-of-all-time" target="_blank">Most Used and Abused Web Design Trends of All Time</a></h3>
<p><a href="http://webdesignledger.com/tips/most-used-and-abused-web-design-trends-of-all-time" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/2df6fc51edtrends.jpg.jpg" alt="web design" /></a></p>
<p>The year is 1999. You&#8217;ve just watched the Matrix, and it&#8217;s blown your mind. You sit down in front of your computer to work on a web design and then create or download an animated Matrix background for your Geocities website. You&#8217;re so cool. Fast forward 10 years, and you say to yourself, yikes, what was I thinking?! We&#8217;ve all been there. As a matter of fact, I&#8217;m personally guilty of copying many of following trends. </p>
<h3><a href="http://webdesignledger.com/tips/the-definitive-guide-to-about-me-pages" target="_blank">The Definitive Guide to About Me Pages </a></h3>
<p><a href="http://webdesignledger.com/tips/the-definitive-guide-to-about-me-pages" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/e0c3de8317pages.jpg.jpg" alt="web design" /></a></p>
<p>One of the most important and least used aspects of any website is the “About Me” page. It’s not enough to have an interesting site and great product if your visitor can’t find a way to relate to you.</p>
<h3><a href="http://webdesignledger.com/tips/web-design-trends-for-2010" target="_blank">Web Design Trends for 2010</a></h3>
<p><a href="http://webdesignledger.com/tips/web-design-trends-for-2010" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/638fa88abbtrends.jpg.jpg" alt="web design" /></a></p>
<p>Although this list isn’t a drastic departure from what was popular in 2009, it marks different trends that will be expanded upon and made better as a result. As you think of how you will incorporate new trends into your designs, focus on the main idea of each trend. Be encouraged to dabble into these trends so that you become part of the movement.</p>
<h3><a href="http://webdesignledger.com/tips/the-four-key-components-of-a-great-web-design" target="_blank">The Four Key Components of a Great Web Design</a></h3>
<p><a href="http://webdesignledger.com/tips/the-four-key-components-of-a-great-web-design" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/daf5d461d3layers.jpg.jpg" alt="web design" /></a></p>
<p>There’s a lot that goes into creating a web design, but I believe it can be broken down into four main components. If you’re able to execute on all four, you will have a hit web design on your hands. However, if you come up short on one, the entire design will suffer.</p>
<h3><a href="http://webdesignledger.com/inspiration/33-creative-and-beautiful-logos" target="_blank">33 Creative and Beautiful Logos</a></h3>
<p><a href="http://webdesignledger.com/tips/the-four-key-components-of-a-great-web-design" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/1b0c0b6dbdlogos.jpg.jpg" alt="web design" /></a></p>
<p>Logo design, like any other design process, sometimes requires some inspiration to spark creativity. If you’re in need of some logo design inspiration, here is a collection of 33 creative and beautiful logos. These all have varying styles, but possess the same high quality.</p>
<h3><a href="http://webdesignledger.com/inspiration/30-website-navigations-that-make-you-wanna-click-it" target="_blank">30 Website Navigations that Make You Wanna Click It</a></h3>
<p><a href="http://webdesignledger.com/inspiration/30-website-navigations-that-make-you-wanna-click-it" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/61c539f6b0gation.jpg.jpg" alt="web design" /></a></p>
<p>The navigation might be the single most important aspect of a web design’s usability. Without a navigation, you would be stuck on the home page for a very long time. I believe a navigation or menu must be easy to use, but this doesn’t mean it has to be boring. In fact, it helps to add a little flair to your navigation. It entices visitors to click and hang around your site a little longer.</p>
</p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/3ea226f351intage.jpg.jpg" /></p>
<p>Read more from the original source:<br />
<a target="_blank" href="http://webdesignledger.com/updates/the-most-popular-articles-of-2009" title="The Most Popular Articles of 2009">The Most Popular Articles of 2009</a></p>
<div style='display:none' id="post-refEl-2151"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/the-most-popular-articles-of-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

