<?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>Webdevtuts &#187; Wordpress</title>
	<atom:link href="http://www.webdevtuts.net/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdevtuts.net</link>
	<description>Making tutorials fun and easy!</description>
	<lastBuildDate>Mon, 23 Jan 2012 11:36:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>WordPress multisite: How to run more than one blog on one wordpress installation</title>
		<link>http://www.webdevtuts.net/quicktips/how-to-run-more-than-one-blog-on-one-wordpress-installation/</link>
		<comments>http://www.webdevtuts.net/quicktips/how-to-run-more-than-one-blog-on-one-wordpress-installation/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 02:52:02 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Quicktips]]></category>
		<category><![CDATA[multiple themes wordpress]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress mu]]></category>
		<category><![CDATA[wordpress multisite]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=2190</guid>
		<description><![CDATA[If you&#8217;re a theme creator or an individual looking to run more then one wordpress blog without creating a new database every time then you&#8217;ve found the right quick tip. WordPress mu is now built into wordpress 3.0 core so &#8230; <a href="http://www.webdevtuts.net/quicktips/how-to-run-more-than-one-blog-on-one-wordpress-installation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a theme creator or an individual looking to run <strong>more then one wordpress blog</strong> without creating a new database every time then you&#8217;ve found the right quick tip. WordPress mu is now built into wordpress 3.0 core so you do not have to install wpmu anymore to run <strong>multiple blogs</strong>. </p>
<p>Place the code below into your wp-config.php file. Code can be placed anywhere within the file. </p>
<pre class="brush:php">define('WP_ALLOW_MULTISITE', true);
</pre>
<p>After you have successfully copy and pasted the code into the wp-config.php file then go to your wordpress admin panel>>Tools>>Network. Then follow the instructions. </p>
<p><b>Note:</b> When wordpress ask you to create a <b>blogs.dir</b> do not create a .php file. Create a folder and name it blogs.dir. Now you should be able to run multiple wordpress websites within the one wordpress installation. Also this is great for people who run theme websites or create themes because they can have many demos and have many setups using one installation. Hope you&#8217;ve enjoyed this quicktip. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/quicktips/how-to-run-more-than-one-blog-on-one-wordpress-installation/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0: How to create a new widget in your blog or website</title>
		<link>http://www.webdevtuts.net/wordpress/wordpress-3-0-how-to-create-a-new-widget-in-your-blog-or-website/</link>
		<comments>http://www.webdevtuts.net/wordpress/wordpress-3-0-how-to-create-a-new-widget-in-your-blog-or-website/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 20:01:53 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[how to add sidebar to wordpress]]></category>
		<category><![CDATA[how to create widget wordpress tutorial]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[wordpress 3.0]]></category>
		<category><![CDATA[wordpress 3.0 blog]]></category>
		<category><![CDATA[wordpress 3.0 tutorial]]></category>
		<category><![CDATA[wordpress 3.0 widget]]></category>
		<category><![CDATA[wordpress widget tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1627</guid>
		<description><![CDATA[Many of you by now are already using Wordpress 3.0 and if not then you should consider upgrading to 3.0 asap. In today's post I will teach you guys how to add a widget or custom widget to your wordpress blog. 
 <a href="http://www.webdevtuts.net/wordpress/wordpress-3-0-how-to-create-a-new-widget-in-your-blog-or-website/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Many of you by now are already using WordPress 3.0 and if not then you should consider upgrading to 3.0 asap. In today&#8217;s post I will teach you guys how to add a widget or custom widget to your wordpress blog. </p>
<h2>Widget Information</h2>
<p>With the new WordPress template structure(Same but revised) some of you may have notice the ability to have multiple widgets under different classes. I think that is great because it gives you the option to style each widget the same or style each widget individually. </p>
<h2>The Markup</h2>
<p>Before we write the function for our widget we need to write up the markup. Open up your sidebar.php file then insert this into the file.</p>
<pre>
<code>
&lt;div class=&quot;widget&quot;&gt;
&lt;?php
	// A second sidebar for widgets, just because.
	if ( is_active_sidebar( &#039;website-banner&#039; ) ) : ?&gt;

			&lt;ul class=&quot;custombox&quot;&gt;
				&lt;?php dynamic_sidebar( &#039;website-banner&#039; ); ?&gt;
			&lt;/ul&gt;

&lt;?php endif; ?&gt;
&lt;/div&gt;
<!--formatted--></code>
</pre>
<p>With the code above I have told WordPress to look for a widget named <i>website-banner</i>. I&#8217;ve also assigned a class name of <i>custombox</i> so I can later target that widget in the css(stylesheet).</p>
<h2>Creating the Function</h2>
<p>Open your functions.php file and insert the code below into the file.</p>
<pre>
<code>
	// Custom Area , located in the widget. Empty by default
	register_sidebar( array(
		&#039;name&#039; =&gt; __( &#039;website-banner&#039;, &#039;twentyten&#039; ),
		&#039;id&#039; =&gt; &#039;banner&#039;,
		&#039;description&#039; =&gt; __( &#039;Website banner goes here&#039;, &#039;twentyten&#039; ),
		&#039;before_widget&#039; =&gt; &#039;&lt;li id=&quot;%1$s&quot; class=&quot;widget-container %2$s&quot;&gt;&#039;,
		&#039;after_widget&#039; =&gt; &#039;&lt;/li&gt;&#039;,
		&#039;before_title&#039; =&gt; &#039;&lt;h3 class=&quot;widget-title&quot;&gt;&#039;,
		&#039;after_title&#039; =&gt; &#039;&lt;/h3&gt;&#039;,
	) );
<!--formatted--></code>
</pre>
<p>Now it might be a little bit confusing but i will try my best to explain everything to you all. With the code above I define the name I gave the widget in the markup which was <i>website-banner</i> then gave it a description(Description will appear on widget via admin panel) &#8220;Website banner goes here&#8221; and finally gave it an id of banner which I can later classify in the css(stylesheet).</p>
<p>There you have it a new widget for your wordpress blog or website. If you have any trouble, questions or suggestions just leave a comment below and I will try my best to respond to them. Hope this tutorial helped you. </p>
<p><a href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=19920527-"><img class="aligncenter" src="http://tracking.hostgator.com/img/Shared/468x60.gif" border=0></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/wordpress/wordpress-3-0-how-to-create-a-new-widget-in-your-blog-or-website/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Future of web design: What&#8217;s in it for designers in the near future</title>
		<link>http://www.webdevtuts.net/articles/future-of-web-design-whats-in-it-for-designers-in-the-near-future/</link>
		<comments>http://www.webdevtuts.net/articles/future-of-web-design-whats-in-it-for-designers-in-the-near-future/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 06:39:22 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[future of web design]]></category>
		<category><![CDATA[future web development]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[php frameworks]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Web designers]]></category>
		<category><![CDATA[web developers]]></category>
		<category><![CDATA[website builders]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1525</guid>
		<description><![CDATA[I have seen and heard many designers talk about the future of web design and it seems many designers and developers are frustrated with whats currently going on in the web design world. In this article I will give my opinion on where I think web design will be in the near future. 
 <a href="http://www.webdevtuts.net/articles/future-of-web-design-whats-in-it-for-designers-in-the-near-future/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have seen and heard many designers talk about the future of web design and it seems many designers and developers are frustrated with whats currently going on in the web design world. In this article I will give my opinion on where I think web design will be in the near future. </p>
<h2>More Content Management Systems Websites, Less HTML</h2>
<p><img class="alignright" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/07/wordpress.jpg" alt="Content Management System" title="Content Management System"/>When It comes to designing and developing for the web I have notice that more and more users are turning to CMS&#8217;s(Content Management Systems) and less towards HTML/static web pages. I can not remember the last time I&#8217;ve coded a HTML website for a client and that was final. With the functionality of CMS&#8217;s and the ability to manage everything via the control panel, what&#8217;s the need to edit an HTML page via a code editor? Many people use content management systems for the following.</p>
<ul>
<li><b>Blogging</b> &#8211; With the tremendous growth of blogging I can see there being over a millions blogs throughout the world in the near future. I mean its 2010 and who doesn&#8217;t have a blog? From a designer point of view we will all be running and designing websites for people who want or would like to start a blog.</b></li>
<li><b>CMS</b> &#8211; Unlike most people others like their websites to have the functional as a CMS. I can see designers developing more CMS&#8217;s for companies/personal projects and the near future.
</ul>
<h2>More Website builders</h2>
<p><img class="alignleft" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/07/webbuilder.jpg" alt="website builder" title="website builder">With the rise of technology I can see many people turning to website builders. Website builders gives users the ability to update and manage their website without having any knowledge of code. Many normal people have no knowledge of HTML, CSS, PHP, JAVASCRIPT and etc. Also many people are not willing to come out of pocket and pay developers for the work they are willing to do so offering clients a service that is too much will lead to website builders. Website builders are also becoming very complex and are allowing users to do things that might take developers 3 days to do really fast. </p>
<h2>Less Freelance, more corporate/personal work!</h2>
<p>The fact of many people being cheap will cause the rise of freelance work to drop. Many designers will say that freelancing will be around for good but in my opinion the fail is coming very soon. With others countries willing to do work for less many designers will decide to either go get a job at a firm or company or work on personal projects. The Great part about freelancing is being able to be your own boss but the con of freelancing is not having a stable income and having to find work from month to month. </p>
<p>This is just a fourth of my opinion on where I think web design will be in the near future. I&#8217;m not sure if I&#8217;ll be right or wrong but I know change is coming to the web design community and am not sure if we&#8217;re ready. All I can say is time will tell and its just a matter of time before well know. I hope you&#8217;ve all enjoyed this article and would like to know your inputs on this  topic. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/articles/future-of-web-design-whats-in-it-for-designers-in-the-near-future/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>FREE: WordPress Theme Hoover Blog (Theme Options Page)</title>
		<link>http://www.webdevtuts.net/freebies/free-wordpress-theme-hoover-blog-theme-options-page/</link>
		<comments>http://www.webdevtuts.net/freebies/free-wordpress-theme-hoover-blog-theme-options-page/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 03:08:38 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[hoover wordpress theme]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1305</guid>
		<description><![CDATA[Hey followers of Webdevtuts I figured you guys might like what I have in store for you all today. Today Webdevtuts is giving away its very first Hoover Blog Wordpress theme to you, The design community.  <a href="http://www.webdevtuts.net/freebies/free-wordpress-theme-hoover-blog-theme-options-page/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hey followers of Webdevtuts I figured you guys might like what I have in store for you all today. Today Webdevtuts is giving away its very first Hoover Blog WordPress theme to you, The design community. This theme was created using hard work and was tested to ensure you everything works correctly. This theme is great for blogging, travel, tutorial, and magazine type websites. </p>
<div class="block_dload">
<a class="dload" href="http://webdevtuts.s3.amazonaws.com/wp-content/uploads/2009/07/downloads/Hoover.zip" title="Download" target="_blank">Download</a> <a class="demo" href="http://cell-designs.com/envato/TFs/" title="demonstration" target="_blank">Demo</a>
</div>
<h2>Specs</h2>
<ul>
<li>3 Theme Colors</li>
<li>Theme Options Page</li>
<li>Cross Browser Compatibility</li>
<li>Thread Comments</li>
<li>Widget Ready</li>
<li>Ad Box Options</li>
<li>Fixed Layout</li>
<li>Drop down menu</li>
<li>WordPress 2.9 ready</li>
</ul>
<p><img class="aligncenter" src="http://webdevtuts.s3.amazonaws.com/wp-content/uploads/2010/06/black-sliver.jpg" alt="Hoover Blog WordPress Theme"></p>
<p><img class="aligncenter" src="http://webdevtuts.s3.amazonaws.com/wp-content/uploads/2010/06/hoover-blog-blue.jpg" alt="Hoover Blog WordPress Theme"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/freebies/free-wordpress-theme-hoover-blog-theme-options-page/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress: How to show most recent posts from a specific category</title>
		<link>http://www.webdevtuts.net/quicktips/wordpress-how-to-show-most-recent-posts-from-a-specific-category/</link>
		<comments>http://www.webdevtuts.net/quicktips/wordpress-how-to-show-most-recent-posts-from-a-specific-category/#comments</comments>
		<pubDate>Mon, 24 May 2010 01:35:52 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Quicktips]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[quick tip]]></category>
		<category><![CDATA[recent post wordpress]]></category>
		<category><![CDATA[recent post wordpress tutorial]]></category>
		<category><![CDATA[specific]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress snippet]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1246</guid>
		<description><![CDATA[so I decided to write a quick tip for you guys.  In this quick tip you will learn how to show your recent post from a specific category using a simple Wordpress hack. <a href="http://www.webdevtuts.net/quicktips/wordpress-how-to-show-most-recent-posts-from-a-specific-category/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ok so today I came across a client who wanted to show their recent posts in the sidebar but only from a specific category. I completed the job and later thought to myself that this might be very useful to the Webdevtuts community so I decided to write a quick tip for you guys.  In this quick tip you will learn how to show your recent post from a specific category using a simple WordPress hack.</p>
<h2>The Code</h2>
<p>Copy and paste the code below and I will explain it below. </p>
<pre class="brush:css">
&lt;?php $recent = new WP_Query(&quot;cat=26&amp;showposts=10&quot;); while($recent-&gt;have_posts()) : $recent-&gt;the_post();?&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
&lt;?php endwhile; ?&gt;
</pre>
<p>So basically the code above is telling WordPress to get category 26 most recent post and to show 10 post at the max(Can be higher or lower). To make the code work you will need to place it inside of a ul and li tag. Hope this works for you all. If you have a question leave a comment below and I will answer them. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/quicktips/wordpress-how-to-show-most-recent-posts-from-a-specific-category/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Quick tip: How to create a custom related post section with wordpress</title>
		<link>http://www.webdevtuts.net/wordpress/quick-tip-how-to-create-a-custom-related-post-section-with-wordpress/</link>
		<comments>http://www.webdevtuts.net/wordpress/quick-tip-how-to-create-a-custom-related-post-section-with-wordpress/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 02:57:53 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[quick tip]]></category>
		<category><![CDATA[related post]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1094</guid>
		<description><![CDATA[In this quick tip I will show you how you can create a custom related post section with wordpress. Very easy but efficient quick tip <a href="http://www.webdevtuts.net/wordpress/quick-tip-how-to-create-a-custom-related-post-section-with-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are many plug-ins to which help you create a related post area but you can add a related post to your theme without using a plug in which will give your site a break from loading too slow. </p>
<p>Open a blank document or txt pad then insert the following code below. </p>
<pre>
<code>
&lt;?php
$tags = wp_get_post_tags($post-&gt;ID);
if ($tags) {
	$tag_ids = array();
	foreach($tags as $individual_tag) $tag_ids[] = $individual_tag-&gt;term_id;

	$args=array(
		&#039;tag__in&#039; =&gt; $tag_ids,
		&#039;post__not_in&#039; =&gt; array($post-&gt;ID),
		&#039;showposts&#039;=&gt;5, // Number of related posts that will be shown.
		&#039;caller_get_posts&#039;=&gt;1
	);
	$my_query = new wp_query($args);
	if( $my_query-&gt;have_posts() ) {
		echo &#039;&lt;h3&gt;Related Posts&lt;/h3&gt;&lt;ul&gt;&#039;;
		while ($my_query-&gt;have_posts()) {
			$my_query-&gt;the_post();
		?&gt;
			&lt;li&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
		&lt;?php
		}
		echo &#039;&lt;/ul&gt;&#039;;
	}
}
?&gt;
<!--formatted--></code>
</pre>
<p>Now save file as related.php</p>
<p><b>Note:</b> To call the related post function please insert the code below into your single.php file.</p>
<pre>
<code>
&lt;?php include (TEMPLATEPATH . &#039;/related.php&#039;); ?&gt;
<!--formatted--></code>
</pre>
<p>You should now have a related post section. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/wordpress/quick-tip-how-to-create-a-custom-related-post-section-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PSD to WordPress Series Part 3: Final Tutorial</title>
		<link>http://www.webdevtuts.net/wordpress/psd-to-wordpress-series-part-3-final-tutorial/</link>
		<comments>http://www.webdevtuts.net/wordpress/psd-to-wordpress-series-part-3-final-tutorial/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 22:19:57 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[html to wordpress]]></category>
		<category><![CDATA[part 3]]></category>
		<category><![CDATA[photoshop to wordpress]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[psd to wordpress]]></category>
		<category><![CDATA[psd to wordpress part 3]]></category>
		<category><![CDATA[psd to wordpress tutorial]]></category>
		<category><![CDATA[series]]></category>
		<category><![CDATA[theme conversion tutorial]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[website tutorial]]></category>
		<category><![CDATA[wordpress theme development tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=635</guid>
		<description><![CDATA[I know there are many developers and normal people who want to know how to design a wordpress theme from scratch. Well today is your lucky day. In this series, PSD to Wordpress we will design a Mockup in Photoshop, then code it for wordpress.(part3) <a href="http://www.webdevtuts.net/wordpress/psd-to-wordpress-series-part-3-final-tutorial/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I know there are many developers and normal people who want to know how to design a wordpress theme from scratch. Well today is your lucky day. In this series, PSD to WordPress we will design a Mockup in Photoshop, then code it for wordpress.(part3)</p>
<div class="clear"></div>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/webdevtuts/uploads/2009/07/downloads/PSD TO WORDPRESS-Theme.rar" title="Download" target="_blank">Download</a>
</div>
<p>Ok Were finally on the last step on how to transform a photoshop mockup into a working wordpress theme. For this tutorial you will need</p>
<p>1.<a href="http://elliotjaystocks.com/blog/free-starkers-wordpress-theme/"><strong>Stalker Naked WordPress theme!</strong>-By Elliot Jay Stocks </a><br />
2. Local Server to run wordpress <a href="http://www.apachefriends.org/en/xampp.html"><strong>xxamp</strong></a><br />
3. The html file from<a href="http://www.webdevtuts.net/wordpress/psd-to-wordpress-series-part-2/"><strong>PSD to wordpress part 2</strong></a></p>
<p>Ok so now we will begin the final part to PSD to WordPress series. You should now have the stalkers wordpress downloaded and ready to use. Also before we begin make sure you have xxamp or a local server up and running so you can see changes we make to our wordpress theme.</p>
<p>Open up your primary code editor. I will used dreamweaver for this tutorial. If you do not have dreamweaver then you can download the free trial or use a free code editor like<br />
<a href="http://download.cnet.com/Notepad/3000-2352_4-10327521.html">notepad++</a> for windows and for <a href="http://www.activestate.com/komodo_edit/downloads/">Komondo</a> for mac</p>
<p>Now inside the stalker folder you should have 15 PHP files but we will only use 7 of them. The reason we will only use 7 because most of the steps we will cover today can be used on other pages. So after this tutorial you should have and idea or clear vision on what to do for the other wordpress pages.</p>
<p><strong>Note:</strong> You do not have to delete the ones we do not use</p>
<p>The files we will use/need for this tutorial are</p>
<ul>
<li>archive.php</li>
<li>footer.php</li>
<li>header.php</li>
<li>index.php</li>
<li>page.php</li>
<li>sidebar.php</li>
<li>single.php</li>
</ul>
<p><strong>archive.php</strong> &#8211; The page that shows after you&#8217;ve click on a category name<br />
<strong>header.php</strong> &#8211; for all JavaScript or Stylesheet imports<br />
<strong>index.php</strong> Main/Home page<br />
<strong>page.php</strong> Single page<br />
<strong>sidebar.php</strong> sidebar<br />
<strong>single.php</strong> after you click on a post its takes you to the single.php page</p>
<p>Since we&#8217;ve already coded the theme into xhtml/css we will just be copying and pasting a lot of things and changing some of our HTML markup into php functions.</p>
<h2>Step 1</h2>
<p>First thing is first. copy your entire <strong>style.css</strong> to your wordpress style.css</p>
<p><strong>Note:</strong> Copy everything after <strong>Code start</strong>. Everything above that is the css reset and has to go into another style sheet<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/1.copystyle.jpg" alt="copy style" /></p>
<h2>Step 2</h2>
<p>Now lets place the css reset code into the right file. Click on the <strong>Style&gt;&gt;Css&gt;&gt;Reset</strong>.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/2.stylefolder.jpg" alt="delete reset wordpress" /></p>
<p>Delete everything in the reset file.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/3.resetcodeb4.jpg" alt="reset before" /></p>
<p>Now copy everything above <strong>code starts</strong> and place it into the wordpress reset file then save it.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/3.resetcodeafter.jpg" alt="reset after" /></p>
<p>You should have something like this so far<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/preview.jpg" alt="preview" /></p>
<h2>Step 3</h2>
<p>Now that our css and reset files is taken care of its time to get the ball rolling and get our wordpress theme looking good. Open up your index.html file <em>(From part2 psd wordpress series)</em> and <strong>header.php</strong> file. Copy the highlighted code into your header.php file.</p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/copyheader.jpg" alt="copy code" /></p>
<pre class="brush:php">
&lt;div id=&quot;header&quot;&gt;

&lt;div id=&quot;main_nav&quot;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.webdevtuts.net&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
&lt;?php wp_list_categories('title_li='); ?&gt;
&lt;/ul&gt;
&lt;/div&gt;&lt;!--end main_nav--&gt;

&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;

&lt;div id=&quot;logo&quot;&gt;&lt;/div&gt;&lt;!--end logo--&gt;

&lt;/div&gt;&lt;!--end header--&gt;

&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;

&lt;div id=&quot;Container&quot;&gt;<!--formatted-->
</pre>
<h2>Step 4</h2>
<p>Now open your <strong>index.php</strong> file.</p>
<p>First thing you should do is add</p>
<div id="main_col">right below the header tag then close it right above the sidebar tag.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/wrapmaincol.jpg" alt="add wrap" /></p>
<p>This code below is our post section. We will substitute some XHTML markup into wordpress php functions</p>
<p><strong>Below is the entire section for the post area (Just the normal HTML)</strong><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/normalhtml.jpg" alt="normal html" /></p>
<p><strong>Below is the wordpress markup that we will be using</strong><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/wordpresshtml.jpg" alt="Wordpress html" /></p>
<p>Copy the code below into your index.php</p>
<pre class="brush:css">
&lt;div class=&quot;post_break&quot;&gt;
&lt;div id=&quot;post_thumb&quot;&gt;&lt;img src=&quot;&lt;?php echo get_post_meta($post-&gt;ID, 'Thumbnail',true) ?&gt;&quot; alt=&quot;Post Image&quot; id=&quot;postbreakimg&quot; /&gt;&lt;/div&gt;
&lt;h2&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;div id=&quot;post_info&quot;&gt;&lt;p&gt;Posted in &lt;?php the_category(', ') ?&gt; &lt;?php the_time('F jS, Y') ?&gt; by &lt;?php the_author_posts_link(); ?&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div id=&quot;post_text&quot;&gt;&lt;?php the_excerpt('Read the rest of this entry &amp;raquo;'); ?&gt;&lt;/div&gt;
&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot; class=&quot;post_more&quot;&gt;Read More&lt;/a&gt;
&lt;/div&gt;&lt;!--end post break--&gt;

&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
</pre>
<p><strong>Note:</strong> Below is information to help you better understand what I did and what changes I made.</p>
<p>So I will start off with the <strong>div class=&#8221;Post_break&#8221;</strong>. I used <strong>div class</strong> because there are multiple post, and when you have multiple things using the same styling then it is good to use class instead of id, plus it will keep your code valid.</p>
<p>For the image I kept the <strong>div id=&#8221;post_thumb</strong> but I changed the inside to</p>
<pre class="brush:php">&lt;img src=&quot;&lt;?php echo get_post_meta($post-&gt;ID, 'Thumbnail',true) ?&gt;&quot; alt=&quot;Post Image&quot; id=&quot;postbreakimg&quot; /&gt;
</pre>
<p>The code above tells wordpress to grab the thumbnail image. Whenever you would create a new post you would insert the word Thumbnail into your custom fields and link to the direct image and there is where your image will appear.</p>
<p>For the second level heading(H2) I change the inside of the h2 tags to</p>
<pre class="brush:php">&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;<!--formatted--></code>
</pre>
<p>For the post info section I changed the inside of the div to</p>
<pre class="brush:php">
&lt;p&gt;Posted in &lt;?php the_category(', ') ?&gt; &lt;?php the_time('F jS, Y') ?&gt; by &lt;?php the_author_posts_link(); ?&gt;&lt;/p&gt;<!--formatted-->
</pre>
<p>The code above basically tells wordpress to find out what category the post was written for then the date of publish and finally the author name that has written that post.</p>
<p>For <strong>div id=&#8221;post_text&#8221;</strong> I&#8217;ve added</p>
<pre class="brush:php">
&lt;?php the_excerpt('Read the rest of this entry &amp;raquo;'); ?&gt;</code>
</pre>
<p>which tells wordpress to get the short description of the post instead of the entire post</p>
<p>For the read more link I&#8217;ve added</p>
<pre class="brush:css">
&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot; class=&quot;post_more&quot;&gt;Read More&lt;/a&gt;
</pre>
<p>which tells wordpress that you would like to read more and it will take you to the single page.</p>
<p>Finally I ended the post section then cleared the floats.</p>
<p>The index.php page is finally completed in here is what your page should like.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/preview2.jpg" alt="preview 2" /></p>
<h2>Step 5</h2>
<p>Now that our <strong>header.php, index.php</strong> are completed we will now work on our <strong>sidebar.php</strong> page. Open your sidebar.php page.</p>
<p><strong>Note:</strong> remember that most of the divs and markup codes are codes/tags I grab are from the original <strong>index.html</strong> file</p>
<p>Scroll down the index.html page until you see the sidebar tag. Copy <strong>div id=&#8221;sidebar&#8221;</strong> into your <strong>sidebar.php</strong> file. Add the code right below the php header tag<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/sidebar5.jpg" alt="sidebar example" /></p>
<p>Now lets add our advertisement 125&#215;125 into our wordpress layout.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/sidebarhelp.jpg" alt="sidebar layout" /></p>
<p>Copy the code below</p>
<pre class="brush:php">
&lt;h2&gt;Sponsors&lt;/h2&gt;
&lt;ul id=&quot;adverts&quot;&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/ad125.jpg&quot; alt=&quot;125x125 banner ad&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/ad125.jpg&quot; alt=&quot;125x125 banner ad&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/ad125.jpg&quot; alt=&quot;125x125 banner ad&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/ad125.jpg&quot; alt=&quot;125x125 banner ad&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;!--adverts--&gt;

&lt;a class=&quot;side_more&quot; href=&quot;&quot;&gt;Advertise here&lt;/a&gt;

&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
</pre>
<p><strong>Note:</strong> Below is information to help you better understand what I did and what changes I made.</p>
<p>In the normal HTML I just linked the images to the image folder but with wordpress you have to use a custom php function which calls the images.</p>
<p>Now lets add the Flickr images to our theme. Copy the code below</p>
<pre class="brush:css">
&lt;h2&gt;Flickr&lt;/h2&gt;
&lt;ul id=&quot;flickr&quot;&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;!--end flickr--&gt;
</pre>
<p>The code above does the same thing as the ads. WordPress calls for the images. If you wanted to turn these images into live working images from your flickr account then the best thing to do is use a wordpress plugin.</p>
<p>You should now have something like this<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/preview3.jpg" alt="preview3" /></p>
<h2>Step 6</h2>
<p>Now that are <strong>header.php, index.php,</strong> and <strong>sidebar.php</strong> are completed it is time to complete our single.php page. The single.php is very simple to complete.</p>
<p>All we have to do is add the main col tag after the header tag(Very first tag at the top) then delete this tag</p>
<pre class="brush:css">
&lt;?php previous_post_link('&amp;laquo; %link') ?&gt; | &lt;?php next_post_link('%link &amp;raquo;') ?&gt;
</pre>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/step6topcode.jpg" alt="Code explanation" /></p>
<p>Finally lets add this code after the end tag of main col<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/step6btmcode.jpg" alt="bottom code" /></p>
<pre class="brush:css">
&lt;?php get_sidebar(); ?&gt;
</pre>
<p>Your single page should now look like this<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/preview4.jpg" alt="preview 4" /></p>
<h2>Step 7</h2>
<p>Open your <strong>archive.php</strong>. For our archive page we will just be adding the main col tags and using the post code from index.php. Hope that made sense!<br />
Below is the archive page <strong>untouched!</strong><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/archiveb4.jpg" alt="archive" /></p>
<p>Add the <strong>div id=&#8221;main_col&#8221;</strong> to the top of your <strong>archive.php</strong> page and place it right under the get header function. Then replace the post area code<br />
with the post area code from your <strong>index.php</strong> file. Do not forget to close the main col div.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/archivephptop.jpg" alt="Archive Top" /></p>
<p>Here is an example of what your <strong>archive.php</strong> should actually look like.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/archive-example.jpg" alt="archive example" /></p>
<h2>step 8</h2>
<p>Now we will work on the footer page Open your footer.php and copy the footer tag from the <strong>index.html</strong> into your footer.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/part3/setp8footer.jpg" alt="footer tag" /></p>
<p>CONGRATULATION! You are now finish and should have your first wordpress theme completed. I did not go over some of the pages because what you&#8217;ve learn from this tutorial can be applied to other pages in wordpress. If you would like for me to create a screencast for part 3 please leave a comment letting me know and will create a screen cast for part 3. Hard work was put into this series and I truly hope it helped you beginners out there understand wordpress better. I did not go over the <strong>comment.php</strong> page but you can check this <a href="http://www.darrenhoyt.com/2007/08/18/styling-your-wordpress-comments/">article</a> from Darren Hoyt and it will teach you all about the comment.php page. Thanks for following this tutorial, if you have any question leave a comment and I will respond asap.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/wordpress/psd-to-wordpress-series-part-3-final-tutorial/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Create a elegant wordpress theme design using photoshop</title>
		<link>http://www.webdevtuts.net/photoshop/create-a-elegant-wordpress-theme/</link>
		<comments>http://www.webdevtuts.net/photoshop/create-a-elegant-wordpress-theme/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 19:47:50 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[elegant]]></category>
		<category><![CDATA[how to create a website]]></category>
		<category><![CDATA[photoshop web design]]></category>
		<category><![CDATA[photoshop web layout]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[website design tutorial]]></category>
		<category><![CDATA[website layout tutorial]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress theme design tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=505</guid>
		<description><![CDATA[Create a clean elegant wordpress theme design using adobe photoshop.  <a href="http://www.webdevtuts.net/photoshop/create-a-elegant-wordpress-theme/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/webdevtuts/uploads/2009/07/downloads/Elegant WordPress.rar" title="Download" target="_blank">Download</a> <a class="demo" href="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/final.jpg" title="demonstration" target="_blank">Final</a>
</div>
<h2>Step 1</h2>
<p>Create new document 1360px x 1500px 72dpi. Background color: #000, ( Black )<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/1.new.jpg" alt="Create new document" /></p>
<p><strong>Note:</strong> Width is 960px out 1360. Leaving 200px on each side. So What I am saying is leave 200px space on both sides of your layer and the middle should come out to 960px.</p>
<h2>Step 2</h2>
<p>Select the paint brush( select brush with blur edges ) tool and create 4 circles. <strong>Circle 1:</strong>#308fab, <strong>Circle 2:</strong>#3f2e49, <strong>Circle 3:</strong>#58303d, <strong>Circle 4:</strong>#78372e,<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/2.brushes.jpg" alt="Paint brush" /></p>
<h2>Step 3</h2>
<p>Now Lets stretch our image. Go to edit&gt;&gt;free transform and make image bigger. Then move image upward when completed<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/3.strectcg.jpg" alt="Stretch downward" /></p>
<h2>Step 4</h2>
<p>Ok so we will now add a nice effect to our background. Select on layer with four colors and go to Filter&gt;&gt;Noise&gt;&gt;Add Noise.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/4.add-noise.jpg" alt="Add noise" /></p>
<p><strong>Amount:</strong>30%, <strong>Distribution:</strong>Gaussian, and select <strong>Monochromatic</strong>.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/4_2.add-noise-sett.jpg" alt="Noise Settings" /></p>
<h2>Step 5</h2>
<p>Go to Filter&gt;&gt;Blur&gt;&gt;Motion Blur<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/5.blur.jpg" alt="Select Motion Blur" /></p>
<p><strong>Angle:</strong>90, <strong>Distance:</strong>225.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/5_2.blursett.jpg" alt="Motion Blur Settings" /></p>
<h2>Step 6</h2>
<p>Now select the rectangle tool and create a rectangle at the very top ( About 50px high ) and change the layer <strong>opacity</strong> to 35%<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/6.top-bg.jpg" alt="Rectangle tool/box" /></p>
<p><strong>Note:</strong> Whenever I create dummy links I always have links on one text line so once you have the type tool selected <strong>Double click</strong> and one line should appear then type the words.</p>
<p>Select the type tool and create 4 links. <strong>Home, About, Contact, Services</strong>. ( 4 spaces after each word, hit spacebar 4 times after you type a word that way you do not have to make individual links.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/6.links.jpg" alt="links" /></p>
<h2>Step 7</h2>
<p>Now we will create a search form. Select the rectangle tool <strong>Color:</strong>#232224, then draw a box across the top right leaving room for a button. Then add the following text,<strong>Looking for something</strong><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/7.search-bg.jpg" alt="create search form" /></p>
<p>For our search button select the rounded rectangle tool and create a small rectangle to the right of our search form background.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/7_2.search-btn.jpg" alt="Search Button" /></p>
<p>Now right click on search <strong>button</strong> layer&gt;&gt;Blending Options&gt;&gt;Gradient overlay.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/7_3.search-btnset.jpg" alt="Button/Gradient" /></p>
<p><strong>Left color:</strong>#040404 , <strong>Right color:</strong>#292928;<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/7_3.search-btnset2.jpg" alt="Button/Gradient2" /></p>
<p>Now let&#8217;s add the following text to our search button. <strong>Search</strong><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/7_4.search-ex.jpg" alt="Search BTN" /></p>
<h2>Step 8</h2>
<p>Select the rectangle tool <strong>Color:</strong>#000. Now create a box 960px across the layout and about 325px height. Then change the layer opacity to 35%<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/8.featbox.jpg" alt="Featured box" /></p>
<h2>Step 9</h2>
<p>Now lets add a featured image, <strong>width:</strong>590px x <strong>height:</strong>295px;<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/9.feat-image.jpg" alt="Featured Image" /></p>
<h2>Step 10</h2>
<p>Select the type tool. Now you create a heading title of your own or use my current heading title.<strong>Font:</strong>Size:23px, Arial, Bold.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/10.heading.jpg" alt="Create heading" /></p>
<p>Then create an post information link. Select the type tool and type the following.<strong>Posted by Marcell on 10.16.09 in Tutorials</strong><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/10.postinfo.jpg" alt="Post Information Look" /></p>
<p>Now write the excerpt. I used dummy text. Google search <strong>Lorem Ispum</strong><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/10.excpt.jpg" alt="Excerpt" /></p>
<h2>Step 11</h2>
<p>Now we will create a button. Select the rectangle tool <strong>Color:</strong>#000; Now draw a rectangle button. Right click on layer&gt;&gt;Blending options&gt;&gt;Gradient Overlay <strong>Left Color:#1b1b1b</strong>,<strong>Right color:</strong>#0e0e0e<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/11.btn.jpg" alt="create button" /></p>
<p>Duplicate the button layer. Then select the paint bucket tool ,<strong>Color:</strong>#373737, and fill the <strong>second</strong> black layer button.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/11_2.btn.jpg" alt="grey button" /></p>
<p>Duplicate the first button layer. You should have 2 black button layers and 1 grey button layer.<br />
<img src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/11_3.btn.jpg" alt="3 buttons" /></p>
<p>Move buttons close together to give it that illusional look. ( zoom in to get best results )<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/11_4.btn3.jpg" alt="3 buttons" /><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/11_5.ex.jpg" alt="btn example" /></p>
<h2>Step 12</h2>
<p>Select the type tool and type following.<strong>Read More</strong>.  <strong>Font:</strong> Myraid pro, 29px, bold,. Now right click on text layer&gt;&gt;blending options&gt;&gt;Inner Shadow then copy current settings.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/12.textopt.jpg" alt="Copy current settings" /></p>
<h2>Step 13</h2>
<p>Select the rectangle tool, <strong>color:</strong>#000, Then create a rectangle under featured section to bottom. Layer opacity 35%.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/13.-main-bg.jpg" alt="Create Main background" /></p>
<h2>Step 14</h2>
<p>Now we will create our post area. First thing we will create are our thumbnails. Create a thumbnail <strong>Width:</strong>275px <strong>height:</strong>164px,<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/14_1post.jpg" alt="Create Thumbnail" /></p>
<p>then right click on thumbnail layer&gt;&gt;Blending options&gt;&gt;Stroke.<br />
<img src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/14.stroke.jpg" alt="Add a stroke" /></p>
<p><strong>Note:</strong>I do not cover the post area as well since it is the same as the featured area</p>
<h2>Step 15</h2>
<p>Copy current post area from image below. It is almost the same as the featured box. <strong>You can do it champ!</strong>. For the line I used the line tool, 1px <strong>Color:</strong>#3b2221<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/15.post.jpg" alt="Create Post" /></p>
<h2>Step 16</h2>
<p>Duplicate post area 3 times.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/16.duplic.jpg" alt="Duplicate post area" /></p>
<h2>Step 17</h2>
<p>Now we will create our sidebar. Google search rss icons( Icon used in tutorial is from <a href="http://wefunction.com/2008/07/function-free-icon-set/">Wefunction</a> ) Then place a rss button at the top of the sidebar. Now select the type tool in type the following, <strong>Subscribe Rss | Email | Feed</strong>. <strong>Font </strong>Arial, 15px, bold<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/17rss.jpg" alt="Sidebar rss" /></p>
<h2>Step 18</h2>
<p>Now we will add some sidebar widgets to our layout. Duplicate the read more button from the featured box and change the text to <strong>Sponsors</strong>. Drag box down to sidebar. Now Google search 125 ads or create your own and place it into the layout.<br />
<img src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/17rss.jpg" alt="Sponsor widget" /></p>
<h2>Step 19</h2>
<p>Duplicate the the read more button once more and change the font to <strong>Popular post</strong>. Then select the text tool and create a heading( <strong>Font:</strong> Arial, 14px, bold ). Then create a description for<br />
the post or known as the excerpt( <strong>Font:</strong> Arial, 10px ). Select the line tool <strong>Color:</strong>#3b2221 and create a line that separates each post. Once you have the first popular post article completed duplicate the group 2 times.<br />
<img class="aligncenter" class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/19.poppost.jpg" alt="Popular post" /></p>
<h2>Step 20</h2>
<p>For our last and final direction we will add a copyright to the bottom of our website mockup.<br />
<img class="aligncenter" class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/20.footer.jpg" alt="Footer" /></p>
<p>Final Image<br />
<a href="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/final.jpg"><img src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/elegant/final.jpg" alt="" width="550" height="500" /></a></p>
<p>Congratulations! You have finished this tutorial. I hope everything was clear and that you understood this tutorial.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/photoshop/create-a-elegant-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>How to find WordPress category ID</title>
		<link>http://www.webdevtuts.net/wordpress/how-to-find-wordpress-category-id/</link>
		<comments>http://www.webdevtuts.net/wordpress/how-to-find-wordpress-category-id/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 02:57:14 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[id]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=421</guid>
		<description><![CDATA[Just a few months ago I found myself frustrated with wordpress because I could not find the category id. It took me hours to actually figure out where it was actually located. After I found the category id I felt &#8230; <a href="http://www.webdevtuts.net/wordpress/how-to-find-wordpress-category-id/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just a few months ago I found myself frustrated with wordpress because I could not find the category id. It took me hours to actually figure out where it was actually located. After I found the category id I felt like I wasted 4 hours of my life, so to save 4 hours of your life I will show you how you can find the wordpress category id.</p>
<p><b>Note: <i>Make sure you do not have permalinks set to default or you will not see the category id</i></b></p>
<p>If permalink is set to default click on any category page and there is where you should find your category id.</p>
<p><img src="https://s3.amazonaws.com/webdevtuts/uploads/2009/09/cateid.jpg"  alt="Category Id"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/wordpress/how-to-find-wordpress-category-id/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>PSD to WordPress Series Part 2</title>
		<link>http://www.webdevtuts.net/wordpress/psd-to-wordpress-series-part-2/</link>
		<comments>http://www.webdevtuts.net/wordpress/psd-to-wordpress-series-part-2/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 02:49:13 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[html to wordpress]]></category>
		<category><![CDATA[part2]]></category>
		<category><![CDATA[photoshop to wordpress]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[psd to wordpress part 2]]></category>
		<category><![CDATA[psd to wp]]></category>
		<category><![CDATA[series]]></category>
		<category><![CDATA[wordpress theme development]]></category>
		<category><![CDATA[wordpress theme development tutorial]]></category>
		<category><![CDATA[wordpress theme tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=304</guid>
		<description><![CDATA[I know there are many developers and normal people who want to know how to design a Wordpress theme from scratch. Well today is your lucky day. In this series, PSD to Wordpress we will design a Mockup in Photoshop, then code it for Wordpress.(part2) <a href="http://www.webdevtuts.net/wordpress/psd-to-wordpress-series-part-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I know there are many developers and normal people who want to know how to design a wordpress theme from scratch. Well today is your lucky day. In this series, PSD to WordPress we will design a Mockup in Photoshop, then code it for wordpress. If everyone likes this tutorial then we will also do a theme option for it. So let&#8217;s get this thing started.</p>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/webdevtuts/uploads/2009/07/downloads/psdtowordpresspt2.rar" title="Download" target="_blank">Download</a> <a class="demo" href="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/final-preview.jpg" title="demonstration" target="_blank">Final</a>
</div>
<p>Welcome to part 2 of PSD to WordPress Series. In this part of the tutorial we&#8217;re going to slice and code our theme for valid Xhtml/css.</p>
<p><b>Note:</b> I do not slice my layouts because I end up having so many unused images so in this tutorial we&#8217;re going to crop everything. Also When you have a cropped image I will not go over how to save.</p>
<h2>Step 1</h2>
<p>Open Photoshop (Continue where we left of from previous tutorial)</p>
<h2>Step 2</h2>
<p>Select the crop tool<br />
<img class="aligncenter" class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/2.slicetool.jpg" alt="crop tool" /></p>
<h2>Step 3</h2>
<p>First thing we&#8217;re going to crop will be the header top. ( Press enter key when you feel you have the appropriate crop. ) Save as body-bg.jpg</p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/3.headertop.jpg" alt="crop header top" /></p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/3.headertopper.jpg" alt="after crop" /></p>
<p><b>Note:</b> After you crop an image go to File&gt;&gt;Revert or press F12 to go back to last save point</p>
<h2>Step 4</h2>
<p>Now we will crop our logo. ( save as logo.jpg )<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/4croplogo.jpg" alt="crop logo" /></p>
<h2>Step 5</h2>
<p>To speed things up so we can get to coding this thing, I will go over the next 3 objects we will need to crop.</p>
<p>Post Thumbnail: Save as Post_thumb.jpg<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/cropthumb.jpg" alt="crop thumbnail" /></p>
<p>Sample ad 125&#215;125: Save as ad125.jpg<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/cropad.jpg" alt="125 ad" /></p>
<p>Flickr image: Save as flk_samp.jpg<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/cropflick.jpg" alt="flickr thumb" /></p>
<p>Now that we&#8217;ve finished cropping the images that well need for our layout, we can get to coding it.( Woooooooooooooo! )</p>
<p><b>Note:</b> Before we begin this tutorial Make sure you create a new folder so you can store files.</p>
<h2>Step 1</h2>
<p>Open dreamweaver ( Other text editors are fine! ) File&gt;&gt;New&gt;&gt;HTML&gt;none<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/dreamweaver/1.new.jpg" alt="open dreamweaver" /></p>
<h2>Step 2</h2>
<p>We will first begin by creating our header section. Go ahead and copy &amp; paste it . I will explain it below.</p>
<pre class="brush:php">
&lt;div id=&quot;header&quot;&gt;
&lt;div id=&quot;main_nav&quot;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;Articles&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;Photoshop&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;Resources&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;Flash&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;Freebies&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;&lt;!--end main_nav--&gt;

&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;

&lt;div id=&quot;logo&quot;&gt;&lt;/div&gt;&lt;!--end logo--&gt;

&lt;/div&gt;&lt;!--end header--&gt;

&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
</pre>
<h2>Step 3</h2>
<p>For the navigation I used an unordered list with links inside. Also we will take care of the logo and clear class when we begin styling our theme.</p>
<p><b>Note:</b> If you&#8217;re not familiar with that it is basically a push down for our theme. For example if you do not clear the floats the theme and everything will be completely disorder.</p>
<h2>Step 4</h2>
<p>Now we will begin adding the content. First we will create the page wrap to contain all of our content.</p>
<pre class="brush:php">
&lt;div id=&quot;Container&quot;&gt;

&lt;/div&gt;&lt;!--end container--&gt;
</pre>
<h2>Step 5</h2>
<p>Now we will create our main column which will hold all of our post, thumbnails and etc. The code below will go inside of the container tags.</p>
<pre class="brush:php">
&lt;div id=&quot;main_col&quot;&gt;

&lt;/div&gt;&lt;!--end main_col--&gt;
</pre>
<h2>Step 6</h2>
<p>Ok so we have our main_col wrap created, we can now start to add our post to our theme. div class=&#8221;post_break&#8221; holds our posts information. When working with divs id can not be repeated so we used a class so that we can repeat it and have valid code.</p>
<p>div id=&#8221;post_thumb&#8221; is our thumbnail for our </p>
<p>div id=&#8221;post_info&#8221; is what we will used to define the author and tags. </p>
<p>div id=&#8221;post_text&#8221; will be used for our wordpress excerpt.<br />
div id=&#8221;post_more&#8221; will be used to link our front page to the actual post. The will keep everything from overlapping and pushed the divs down. Now it&#8217;s time to Add the code below inside of the main_col div.</p>
<pre class="brush:php">
&lt;div class=&quot;post_break&quot;&gt;
&lt;div id=&quot;post_thumb&quot;&gt;&lt;img src=&quot;images/post_thumb.jpg&quot; alt=&quot;thumbnail&quot;/&gt;&lt;/div&gt;&lt;!--end post_thumb--&gt;
&lt;h2&gt;10 WordPress Theme You Probably Won&#039;t Forget&lt;/h2&gt;
&lt;div id=&quot;post_info&quot;&gt;&lt;p&gt;Posted in &lt;a href=&quot;&quot;&gt;Articles&lt;/a&gt;, by &lt;a href=&quot;&quot;&gt;Marcell&lt;/a&gt;, on May 5th | &lt;a href=&quot;&quot;&gt;19 comments&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!--end post_info--&gt;
&lt;div id=&quot;post_text&quot;&gt;
&lt;p&gt;
vitae mattis turpis nunc sed lectus. Integer vitae massa nisi, sed adipiscing enim. Etiam semper suscipit nunc, vel condimentum elit mollis ut. Duis scelerisque lacus quis dui sodales tincidunt. Nulla consectetur imperdiet eros vitae vestibulum.
&lt;/p&gt;
&lt;a href=&quot;&quot; class=&quot;post_more&quot;&gt;Read More&lt;/a&gt;
&lt;/div&gt;&lt;!--end post_text--&gt;
&lt;/div&gt;&lt;!--end post_break--&gt;

&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
</pre>
<p><b>Note:</b> Copy and paste the code above 4 times.</p>
<h2>Step 7</h2>
<p>Now it&#8217;s time to create our sidebar. For the sidebar I used an unordered list for advertising since most people want to run ads on their blog. Copy &#038; paste the code below inside of the main_col div.</p>
<pre class="brush:php">
&lt;div id=&quot;sidebar&quot;&gt;
&lt;h2&gt;Sponsors&lt;/h2&gt;
&lt;ul id=&quot;adverts&quot;&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/ad125.jpg&quot; alt=&quot;ad&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/ad125.jpg&quot; alt=&quot;ad&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/ad125.jpg&quot; alt=&quot;ad&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/ad125.jpg&quot; alt=&quot;ad&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;!--adverts--&gt;

&lt;a class=&quot;side_more&quot; href=&quot;&quot;&gt;Advertise here&lt;/a&gt;

&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;

&lt;h2&gt;Flickr&lt;/h2&gt;
&lt;ul id=&quot;flickr&quot;&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot;/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;!--end flickr--&gt;

&lt;/div&gt;&lt;!--end sidebar--&gt;
&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
</pre>
<h2>Step 8</h2>
<p>For the last html markup we will now add the footer</p>
<pre class="brush:php">
&lt;div id=&quot;footer&quot;&gt;
&lt;p&gt;Copyright 2009 Your Website.com All rights reserved&lt;/p&gt;
&lt;/div&gt;&lt;!--end footer--&gt;
</pre>
<h2>Step 9</h2>
<p>Here is the final HTML code.</p>
<pre class="brush:php">
&lt;div id=&quot;header&quot;&gt;
&lt;div id=&quot;main_nav&quot;&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a&gt;Home&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;Articles&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;Photoshop&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;Resources&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;Flash&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;Freebies&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;!--end main_nav--&gt;

&lt;!--end logo--&gt;&lt;/div&gt;
&lt;!--end header--&gt;
&lt;div id=&quot;Container&quot;&gt;
&lt;div id=&quot;main_col&quot;&gt;
&lt;div class=&quot;post_break&quot;&gt;
&lt;div id=&quot;post_thumb&quot;&gt;&lt;img src=&quot;images/post_thumb.jpg&quot; alt=&quot;thumbnail&quot; /&gt;&lt;/div&gt;
&lt;!--end post_thumb--&gt;
&lt;h2&gt;10 WordPress Theme You Probably Won&#039;t Forget&lt;/h2&gt;
&lt;div id=&quot;post_info&quot;&gt;

Posted in &lt;a&gt;Articles&lt;/a&gt;, by &lt;a&gt;Marcell&lt;/a&gt;, on May 5th | &lt;a&gt;19 comments&lt;/a&gt;&lt;/div&gt;
&lt;!--end post_info--&gt;
&lt;div id=&quot;post_text&quot;&gt;

vitae mattis turpis nunc sed lectus. Integer vitae massa nisi, sed adipiscing enim. Etiam semper suscipit nunc, vel condimentum elit mollis ut. Duis scelerisque lacus quis dui sodales tincidunt. Nulla consectetur imperdiet eros vitae vestibulum.

&lt;a class=&quot;post_more&quot;&gt;Read More&lt;/a&gt;&lt;/div&gt;
&lt;!--end post_text--&gt;&lt;/div&gt;
&lt;!--end post_break--&gt;
&lt;div class=&quot;post_break&quot;&gt;
&lt;div id=&quot;post_thumb&quot;&gt;&lt;img src=&quot;images/post_thumb.jpg&quot; alt=&quot;thumbnail&quot; /&gt;&lt;/div&gt;
&lt;!--end post_thumb--&gt;
&lt;h2&gt;10 WordPress Theme You Probably Won&#039;t Forget&lt;/h2&gt;
&lt;div id=&quot;post_info&quot;&gt;

Posted in &lt;a&gt;Articles&lt;/a&gt;, by &lt;a&gt;Marcell&lt;/a&gt;, on May 5th | &lt;a&gt;19 comments&lt;/a&gt;&lt;/div&gt;
&lt;!--end post_info--&gt;
&lt;div id=&quot;post_text&quot;&gt;

vitae mattis turpis nunc sed lectus. Integer vitae massa nisi, sed adipiscing enim. Etiam semper suscipit nunc, vel condimentum elit mollis ut. Duis scelerisque lacus quis dui sodales tincidunt. Nulla consectetur imperdiet eros vitae vestibulum.

&lt;a class=&quot;post_more&quot;&gt;Read More&lt;/a&gt;&lt;/div&gt;
&lt;!--end post_text--&gt;&lt;/div&gt;
&lt;!--end post_break--&gt;
&lt;div class=&quot;post_break&quot;&gt;
&lt;div id=&quot;post_thumb&quot;&gt;&lt;img src=&quot;images/post_thumb.jpg&quot; alt=&quot;thumbnail&quot; /&gt;&lt;/div&gt;
&lt;!--end post_thumb--&gt;
&lt;h2&gt;10 WordPress Theme You Probably Won&#039;t Forget&lt;/h2&gt;
&lt;div id=&quot;post_info&quot;&gt;

Posted in &lt;a&gt;Articles&lt;/a&gt;, by &lt;a&gt;Marcell&lt;/a&gt;, on May 5th | &lt;a&gt;19 comments&lt;/a&gt;&lt;/div&gt;
&lt;!--end post_info--&gt;
&lt;div id=&quot;post_text&quot;&gt;

vitae mattis turpis nunc sed lectus. Integer vitae massa nisi, sed adipiscing enim. Etiam semper suscipit nunc, vel condimentum elit mollis ut. Duis scelerisque lacus quis dui sodales tincidunt. Nulla consectetur imperdiet eros vitae vestibulum.

&lt;a class=&quot;post_more&quot;&gt;Read More&lt;/a&gt;&lt;/div&gt;
&lt;!--end post_text--&gt;&lt;/div&gt;
&lt;!--end post_break--&gt;
&lt;div class=&quot;post_break&quot;&gt;
&lt;div id=&quot;post_thumb&quot;&gt;&lt;img src=&quot;images/post_thumb.jpg&quot; alt=&quot;thumbnail&quot; /&gt;&lt;/div&gt;
&lt;!--end post_thumb--&gt;
&lt;h2&gt;10 WordPress Theme You Probably Won&#039;t Forget&lt;/h2&gt;
&lt;div id=&quot;post_info&quot;&gt;

Posted in &lt;a&gt;Articles&lt;/a&gt;, by &lt;a&gt;Marcell&lt;/a&gt;, on May 5th | &lt;a&gt;19 comments&lt;/a&gt;&lt;/div&gt;
&lt;!--end post_info--&gt;
&lt;div id=&quot;post_text&quot;&gt;

vitae mattis turpis nunc sed lectus. Integer vitae massa nisi, sed adipiscing enim. Etiam semper suscipit nunc, vel condimentum elit mollis ut. Duis scelerisque lacus quis dui sodales tincidunt. Nulla consectetur imperdiet eros vitae vestibulum.

&lt;a class=&quot;post_more&quot;&gt;Read More&lt;/a&gt;&lt;/div&gt;
&lt;!--end post_text--&gt;&lt;/div&gt;
&lt;!--end post_break--&gt;&lt;/div&gt;
&lt;!--end main_col--&gt;
&lt;div id=&quot;sidebar&quot;&gt;
&lt;h2&gt;Sponsors&lt;/h2&gt;
&lt;ul id=&quot;adverts&quot;&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/ad125.jpg&quot; alt=&quot;ad&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/ad125.jpg&quot; alt=&quot;ad&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/ad125.jpg&quot; alt=&quot;ad&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/ad125.jpg&quot; alt=&quot;ad&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;!--adverts--&gt;

&lt;a class=&quot;side_more&quot;&gt;Advertise here&lt;/a&gt;
&lt;h2&gt;Flickr&lt;/h2&gt;
&lt;ul id=&quot;flickr&quot;&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a&gt;&lt;img src=&quot;images/flk_samp.jpg&quot; alt=&quot;flickr&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;!--end flickr--&gt;&lt;/div&gt;
&lt;!--end sidebar--&gt;&lt;/div&gt;
&lt;!--end Container--&gt;

&lt;div id=&quot;footer&quot;&gt;
&lt;p&gt;Copyright 2009 Your Website.com All rights reserved&lt;/p&gt;
&lt;/div&gt;&lt;!--end footer--&gt;
</pre>
<h2>Step 10</h2>
<p>Now it&#8217;s time to style our HTML. We will begin by linking our stylesheet with our HTML document. Place the following code in the head section of the HTML.<br />
<img src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/dreamweaver/10.style.jpg" alt="stylesheet" /></p>
<pre class="brush:css">
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;style.css&quot; /&#038;gt
</pre>
<h2>Step 11</h2>
<p>First let&#8217;s add our css reset into the top part of our stylesheet.</p>
<pre class="brush:css">
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre,
form, fieldset, input, p, blockquote, table, th, td, embed, object {
padding: 0;
margin: 0;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
fieldset, img, abbr {
border: 0;
}
address, caption, cite, code, dfn, em,
h1, h2, h3, h4, h5, h6, strong, th, var {
font-weight: normal;
font-style: normal;
}
ul {
list-style: none;
}
caption, th {
text-align: left;
}
h1, h2, h3, h4, h5, h6 {
font-size: 1.0em;
}
q:before, q:after {
content: &#039;&#039;;
}
a, ins {
text-decoration: none;
}
</pre>
<h2>Step 12</h2>
<p>Now lets add our basic typography into our stylesheet.</p>
<pre class="brush:css">
.clear							{ clear:both; }
a,a:hover,a:visited				{ color:#b8bab6; }
p							   { line-height:18px; }
</pre>
<h2>Step 13</h2>
<p>Ok we will now style our main divs.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/dreamweaver/13.maindivs.jpg" alt="style main div tags" /></p>
<pre class="brush:css">
body							{ background: #72434d url(images/body-bg.jpg) repeat-x ; font-family:arial; }
#Container						{ width:972px; margin:0 auto; }
#header							{ width:972px; margin:auto; }
#logo							{ width:317px; height:98px; background:url(images/logo.jpg); }
#main_col						{ width:640px; float:left; padding:15px; font-family:arial; }
#main_col p						{ font-size:12px; text-align:left; padding-bottom:2em }
</pre>
<h2>Step 14</h2>
<p>It&#8217;s time to style the navigation.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/dreamweaver/14.nav.jpg" alt="style navigation" /></p>
<pre class="brush:css">
/*
Navigation
*/
#main_nav						{ float:left; margin:10px 0 21px 0;}
#main_nav li						{ display:inline; font-weight:bold; font-size:12px;}
#main_nav li a					{ color:#fff;}
</pre>
<h2>Step 15</h2>
<p><strong>Post_break&gt;</strong>The code below will style our post.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/dreamweaver/15.postbreak.jpg" alt="style post area" /></p>
<pre class="brush:css">
/*
Post
*/
.post_break						{ float:left; margin:10px 0 10px 0; }
.post_break h2					{ color:#222226; font-family: arial; font-weight:bold; font-size:24px; }
#post_text						{ padding:40px 0; font-size:12px; font-family:arial; }
#post_info						{ background:#000; float:left; color:#fff; font-size:12px; padding:5px;  margin:5px 0 5px 0;}
#post_info p						{ padding:0;}
#post_thumb						{ float:right;}
a.post_more						{ font-size:12px; color:#fff; float:right; margin-right:20em;}
</pre>
<h2>Step 16</h2>
<p><strong>adverts</strong> This will style the code thumbnails in our sidebar<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/dreamweaver/16.adverts.jpg" alt="style thumbnails in sidebar" /></p>
<pre class="brush:css">
/*
Adverts
*/
#adverts						{ margin:0 0 0 10px;}
#adverts li						{ display:block; float:left; margin:5px 5px; }
#adverts 						{ }
#adverts						{ }
#flickr							{ margin:10px 0 0 10px;	}
#flickr li 						{ display:block; float:left; margin:5px;}
</pre>
<h2>Step 17</h2>
<p><strong>sidebar</strong> This will style out sidebar and sidebar headings<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/dreamweaver/17.sidebar.jpg" alt="style side heading" /></p>
<pre class="brush:css">
/*
sidebar
*/
#sidebar						{ width:290px; float:right; background:#000;  }
#sidebar  h2						{ color:#fff; font-family: arial; font-weight:bold; font-size:31px; background:#71434b; padding:5px; margin:30px 40px 0 0; }
.side_more						{ font-size:12px; color:#fff; margin:0 15px; float:right;}
</pre>
<h2>Step 18</h2>
<p><strong>footer</strong> The final code below will style our wonderful, but simple footer.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2009/08/psdwp/wppart2/dreamweaver/18.footer.jpg" alt="footer" /></p>
<pre class="brush:css">
/*
Footer
*/
#footer							{ margin: auto; background:#000; height:50px; color:#fff; text-align:center; font-size:12px; font-weight:bold; }
#footer p						{ padding:15px;}
</pre>
<p>Here is the final css code! Hope this tutorial helps. Please leave comments giving feedback</p>
<pre class="brush:css">
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre,
form, fieldset, input, p, blockquote, table, th, td, embed, object {
padding: 0;
margin: 0;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
fieldset, img, abbr {
border: 0;
}
address, caption, cite, code, dfn, em,
h1, h2, h3, h4, h5, h6, strong, th, var {
font-weight: normal;
font-style: normal;
}
ul {
list-style: none;
}
caption, th {
text-align: left;
}
h1, h2, h3, h4, h5, h6 {
font-size: 1.0em;
}
q:before, q:after {
content: &#039;&#039;;
}
a, ins {
text-decoration: none;
}

/*---------------------------------------------------------------Code starts--------------------------------------------------------------------------------------*/
.clear							{ clear:both; }
a,a:hover,a:visited				{ color:#b8bab6; }
p								{ line-height:18px; }

body							{ background: #72434d url(images/body-bg.jpg) repeat-x ; font-family:arial; }
#Container						{ width:972px; margin:0 auto; }
#header							{ width:972px; margin:auto; }
#logo							{ width:317px; height:98px; background:url(images/logo.jpg);}
#main_col						{ width:640px; float:left; padding:15px; font-family:arial;}
#main_col p						{ font-size:12px; text-align:left; padding-bottom:2em}

/*
Navigation
*/
#main_nav						{ float:left; margin:10px 0 21px 0;}
#main_nav li						{ display:inline; font-weight:bold; font-size:12px;}
#main_nav li a					{ color:#fff;}

/*
Post
*/
.post_break						{ float:left; margin:10px 0 10px 0; }
.post_break h2					{ color:#222226; font-family: arial; font-weight:bold; font-size:24px; }
#post_text						{ padding:40px 0; font-size:12px; font-family:arial; }
#post_info						{ background:#000; float:left; color:#fff; font-size:12px; padding:5px;  margin:5px 0 5px 0;}
#post_info p						{ padding:0;}
#post_thumb						{ float:right;}
a.post_more						{ font-size:12px; color:#fff; float:right; margin-right:20em;}

/*
Adverts
*/
#adverts						{ margin:0 0 0 10px;}
#adverts li						{ display:block; float:left; margin:5px 5px; }
#adverts 						{ }
#adverts						{ }
#flickr							{ margin:10px 0 0 10px;	}
#flickr li 						{ display:block; float:left; margin:5px;}

/*
sidebar
*/
#sidebar						{ width:290px; float:right; background:#000;  }
#sidebar  h2						{ color:#fff; font-family: arial; font-weight:bold; font-size:31px; background:#71434b; padding:5px; margin:30px 40px 0 0; }
.side_more						{ font-size:12px; color:#fff; margin:0 15px; float:right;}

/*
Footer
*/
#footer							{ margin: auto; background:#000; height:50px; color:#fff; text-align:center; font-size:12px; font-weight:bold; }
#footer p						{ padding:15px;}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/wordpress/psd-to-wordpress-series-part-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Content Delivery Network via Amazon Web Services: S3: webdevtuts.s3.amazonaws.com

Served from: www.webdevtuts.net @ 2012-02-04 03:14:51 -->
