<?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>Mitch Canter is [studionashvegas] &#187; WordPress Theme</title>
	<atom:link href="http://www.studionashvegas.com/tag/wordpress-theme/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.studionashvegas.com</link>
	<description>&#124; Nashville&#039;s Best WordPress Design, Web Development, and Marketing</description>
	<lastBuildDate>Sun, 20 Jun 2010 21:04:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Creating a WordPress Theme from a .PSD file &#8211; Part 3 (The WordPress Structure)</title>
		<link>http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/</link>
		<comments>http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 16:10:33 +0000</pubDate>
		<dc:creator>studionashvegas</dc:creator>
				<category><![CDATA[Old Posts]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress Theme]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/2008/11/06/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/</guid>
		<description><![CDATA[In our quest to take a WordPress theme from start to finish (Photoshop to Functional Theme), we have reached what most people would call the end of their journey.&#160; We’ve taken our Photoshop file, made the necessary slices and converted it to an .html file. If we wanted this page to remain a static web [...]]]></description>
			<content:encoded><![CDATA[<p>In our quest to take a WordPress theme from start to finish (Photoshop to Functional Theme), we have reached what most people would call the end of their journey.&#160; We’ve taken our <a href="http://www.studionashvegas.com/2008/10/30/creating-a-wordpress-theme-from-a-psd-file-part-1-background/">Photoshop file</a>, made the necessary slices and <a href="http://www.studionashvegas.com/2008/10/30/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/">converted it to an .html file.</a> If we wanted this page to remain a static web document, we’d stop here, head into the base camp, and drink our hot cocoa.&#160; But we’re not done quite yet, because we need this page to be able to handle the dynamic content that WordPress delivers.&#160; Before we make our ascent, however, we need to know what it is we’re dealing with.</p>
<h3></h3>
<h3>Theme Structure</h3>
<p><a href="http://www.studionashvegas.com/wp-content/uploads/2008/11/1.png"><img title="1" style="display: inline" height="409" alt="1" src="http://www.studionashvegas.com/wp-content/uploads/2008/11/1-thumb.png" width="500" /></a> </p>
<p>WordPress themes have three files (usually four) at minimum that are required in order to be considered a true WordPress theme: header.php, index.php, sidebar.php [optional] and footer.php.&#160; There are many more files that you can include (404.php, single.php, page.php; the list goes on) but those core files are what defines WordPress themes and how they are segmented out.</p>
<p>The best way to take our .html file and segment it into the various files we need is to use comments:</p>
<blockquote><div class="code">
<p>&lt;!—Header—&gt;</p>
<p>…header stuff is here…</p>
<p>&lt;!—End Header—&gt;</p>
<p>&lt;!—Main Content—&gt;</p>
<p>…main content goes here (this will be your index.php if you’ve been designing with blog postings in mind)…</p>
<p>&lt;!—End Main Content—&gt;</p>
<p>&lt;!—Sidebar—&gt;</p>
<p>…your sidebar contains badges, widgets, recent posts, comments, etc…</p>
<p>&lt;!—End Sidebar—&gt;</p>
<p>&lt;!—Footer—&gt;</p>
<p>…the footer contains a boilerplate, navigation, and design/copyright information…</p>
<p>&lt;!—End Footer—&gt;</p>
</p></div>
</blockquote>
<p>What we’ve basically done is taken our .html file from this:</p>
<p><a href="http://www.studionashvegas.com/wp-content/uploads/2008/11/2.png"><img title="2" style="display: inline" height="288" alt="2" src="http://www.studionashvegas.com/wp-content/uploads/2008/11/2-thumb.png" width="500" /></a> </p>
<p>to this:</p>
<p><a href="http://www.studionashvegas.com/wp-content/uploads/2008/11/3.png"><img title="3" style="display: inline" height="288" alt="3" src="http://www.studionashvegas.com/wp-content/uploads/2008/11/3-thumb.png" width="500" /></a> </p>
<p>Then, just cut and paste those sections into their respective files:</p>
<p><a href="http://www.studionashvegas.com/wp-content/uploads/2008/11/4.png"><img title="4" style="display: inline" height="57" alt="4" src="http://www.studionashvegas.com/wp-content/uploads/2008/11/4-thumb.png" width="220" /></a> </p>
<p>Finally, back on the .html page, replace the code that you just cut/pasted with these commands, respectively:</p>
<blockquote><div class="code">
<p>&lt;?php get_header(); ?&gt;</p>
<p>&lt;?php get_sidebar(); ?&gt;</p>
<p>&lt;?php get_footer(); ?&gt;</p>
</p></div>
</blockquote>
<p>These are WordPress specific commands that pull in the contents of header.php, sidebar.php, and footer.php into one page that is generated when you look at the wordpress theme in a browser.&#160; Save the remaining code as index.php, and you keep your .html file handy as a reference to check the design as you are going along.</p>
<p>We’re not nearly done, but we’ve laid the foundation for a killer WordPress theme by splitting up the files.&#160; When WordPress accesses the databases via one of the .php pages (index.php by default) it pulls in the header, sidebar, and footer as one page.&#160; This way, you can just include those &lt;?php commands to call the header whenever you want, instead of having to repeat code in every page.</p>
<p>I want to go into each of these files in more depth to give tips, tricks, and techniques for making sure the WordPress theme is the best it can be, so the next post will be focusing on header.php and footer.php.&#160; After that sidebar.php, then an in-depth look at the various other files (index, single, page, and archives) to make sure they work right with our created theme.&#160; Finally, we’ll look into comment styling and see ways we can make our comments look awesome (and match our theme!)</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/&amp;title=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+3+%28The+WordPress+Structure%29" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/&amp;title=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+3+%28The+WordPress+Structure%29" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/&amp;t=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+3+%28The+WordPress+Structure%29" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+3+%28The+WordPress+Structure%29&amp;link=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/&amp;imageurl=" rel="nofollow" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/&amp;title=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+3+%28The+WordPress+Structure%29" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/&amp;title=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+3+%28The+WordPress+Structure%29" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.studionashvegas.com%2Fold-posts%2Fcreating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure%2F&amp;t=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+3+%28The+WordPress+Structure%29" rel="nofollow" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+3+%28The+WordPress+Struct%5B..%5D+-+http://b2l.me/482cw&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.studionashvegas.com%2Fold-posts%2Fcreating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure%2F&amp;layout=standard&amp;show-faces=true&amp;width=600&amp;action=recommend&amp;font=verdana&amp;colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:600px; height:70px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-3-the-wordpress-structure/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating a WordPress Theme from a .PSD file &#8211; Part 2 (Photoshop File to HTML)</title>
		<link>http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/</link>
		<comments>http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 22:39:58 +0000</pubDate>
		<dc:creator>studionashvegas</dc:creator>
				<category><![CDATA[Old Posts]]></category>
		<category><![CDATA[Pray With Africa]]></category>
		<category><![CDATA[WordPress Theme]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/2008/10/30/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/</guid>
		<description><![CDATA[This is the 2nd part in a series on turning a design done in Photoshop into a WordPress theme.&#160; I’m documenting taking a client’s theme from concept to functional site, showing a brief overview of the steps that I take. When last we met, I had just put the final touches on the WordPress design [...]]]></description>
			<content:encoded><![CDATA[<p><em>This is the 2nd part in a series on turning a design done in Photoshop into a WordPress theme.&#160; I’m documenting taking a client’s theme from concept to functional site, showing a brief overview of the steps that I take.</em></p>
<p><a href="http://www.studionashvegas.com/2008/10/30/creating-a-wordpress-theme-from-a-psd-file-part-1-background/">When last we met,</a> I had just put the final touches on the WordPress design for “Pray With Africa”.&#160; With the design completed, it was now time to take that design and (using a combination of Dreamweaver and Photoshop) turn it into a fully functional WordPress theme.</p>
<p>Before we begin, I know that using the slice tool you can take a .PSD file (very easily) and turn it into a site without needing Dreamweaver.&#160; This method <strong>does</strong> give you the option of exporting CSS / HTML tables with images that do the trick pretty well.&#160; However, if you plan on using pure CSS to center the page, you may want to rethink and switch your slices to “images only”.&#160; Using the pre-rendered CSS puts everything into an “absolute” position, which doesn’t allow for even centering on any width monitor.</p>
<p>That being said, and having already switched my CSS slices to “images only” in my Photoshop settings, I pulled up the previously created file:</p>
<p><a href="http://www.studionashvegas.com/wp-content/uploads/2008/10/site1.jpg"><img title="Pray With Africa site" style="display: inline" height="674" alt="Pray With Africa site" src="http://www.studionashvegas.com/wp-content/uploads/2008/10/site-thumb1.jpg" width="500" /></a> </p>
<p>Now, in Dreamweaver, I set up my document space.&#160; That requires three things: </p>
<p>1) Creating a new index.html file – this will be sliced into the corresponding .php files later, but for now, I want to work on it as a whole.</p>
<p>2) Creating a blank .css file.&#160; This will be named “style.css”, as per standards, and will house the styles for the entire theme.</p>
<p>3) Attach (and copy into the directory) the “reset.css” file.&#160; This clears a lot of the browser-specific styling out of the document, and allows me to start with a blank canvas.&#160; For more information on “CSS Reset”, visit <a href="http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/">Eric Meyer’s site</a> where he documents the need for / use of a CSS Reset.</p>
<p><a href="http://www.studionashvegas.com/wp-content/uploads/2008/10/1.jpg"><img title="Index.html, style.css, and reset.css" style="display: inline" height="149" alt="Index.html, style.css, and reset.css" src="http://www.studionashvegas.com/wp-content/uploads/2008/10/1-thumb.jpg" width="213" /></a>&#160;</p>
<p>The first div I create is a #wrapper div container. I set the width to 960 (because I&#8217;ve used a spinoff of the <a href="http://960.gs/">960 grid system</a> to design my mockup) and set the margins to “auto”.&#160; This pushes the div horizontally into the center of the page, and allows me to center the theme no matter what screen resolution someone is using (my themes are all optimized for 1024&#215;768 and larger).</p>
<p>After that, I begin taking the image from the top down and pulling pictures (either through slicing or cropping) from Photoshop into Dreamweaver.&#160; I started with the header:</p>
<p><a href="http://www.studionashvegas.com/wp-content/uploads/2008/10/header.jpg"><img title="Pray With Africa header" style="display: inline" height="129" alt="Pray With Africa header" src="http://www.studionashvegas.com/wp-content/uploads/2008/10/header-thumb.jpg" width="500" /></a> </p>
<p>Notice there’s no logo?&#160; We’ll get to that in a second.&#160; This image will become the background for it’s own div (a #header div).&#160; Inside that div, I’ll position the logo and link it to &lt;?php bloginfo(&#8216;url&#8217;); ?&gt;, a template tag that will automatically insert the URL of the blog (even if it’s not on the root of the site).</p>
<p>Continuing on, I’ve divided my navigation (which I&#8217;m using images for to get a really nice hover effect) into slices in Photoshop:</p>
<p><a href="http://www.studionashvegas.com/wp-content/uploads/2008/10/2.jpg"><img title="2" style="display: inline" height="69" alt="2" src="http://www.studionashvegas.com/wp-content/uploads/2008/10/2-thumb.jpg" width="500" /></a> </p>
<p>Saving them (and their respective hover images) into the image folder, I then create an unordered list to display them.&#160; This puts them in a nice vertical line, but since I need them to display horizontally, there’s a few things left to do.</p>
<p>In the CSS code, I add:</p>
<p><font face="Courier New">.nav li {     <br />&#160;&#160;&#160; float: left;      <br />}</font></p>
<p>which causes the items to float next to each other in a horizontal line (if you’re not using the CSS Reset, you’ll also have to put:</p>
<p><font face="Courier New">.nav li {     <br />&#160;&#160;&#160; float: left;      <br />&#160;&#160; <em> <strong>list-style: none;</strong></em></font><font face="Courier New">     <br />}</font></p>
<p>to get the bullets removed.</p>
<p>So, basically, by taking the parts of the Photoshop file and slicing/cropping them in Photoshop, I end up with a web comp that is very close to the mockup.&#160; You can see a web comp (non-working) here:</p>
<p><a href="http://www.studionashvegas.com/test/pwa">http://www.studionashvegas.com/test/pwa</a></p>
<p>Tomorrow I’ll start switching the .html file over to .php files that are separated by their function (index, header, sidebar, footer). </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/&amp;title=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+2+%28Photoshop+File+to+HTML%29" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/&amp;title=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+2+%28Photoshop+File+to+HTML%29" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/&amp;t=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+2+%28Photoshop+File+to+HTML%29" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+2+%28Photoshop+File+to+HTML%29&amp;link=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/&amp;imageurl=" rel="nofollow" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/&amp;title=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+2+%28Photoshop+File+to+HTML%29" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/&amp;title=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+2+%28Photoshop+File+to+HTML%29" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.studionashvegas.com%2Fold-posts%2Fcreating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html%2F&amp;t=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+2+%28Photoshop+File+to+HTML%29" rel="nofollow" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Creating+a+WordPress+Theme+from+a+.PSD+file+%26ndash%3B+Part+2+%28Photoshop+File+to+HT%5B..%5D+-+http://b2l.me/49gvj&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.studionashvegas.com%2Fold-posts%2Fcreating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html%2F&amp;layout=standard&amp;show-faces=true&amp;width=600&amp;action=recommend&amp;font=verdana&amp;colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:600px; height:70px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-2-photoshop-file-to-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a WordPress Theme from a .PSD File &#8211; Part 1 (Background)</title>
		<link>http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-1-background/</link>
		<comments>http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-1-background/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 14:47:28 +0000</pubDate>
		<dc:creator>studionashvegas</dc:creator>
				<category><![CDATA[Old Posts]]></category>
		<category><![CDATA[WordPress Theme]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/2008/10/30/creating-a-wordpress-theme-from-a-psd-file-part-1-background/</guid>
		<description><![CDATA[A lot of people ask me what process I use to design themes for WordPress, and my answer to that question is the same answer I give to people who ask my design process “in general”: I start with a Photoshop mockup and take it into HTML via Dreamweaver.&#160; The only difference is that I [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of people ask me what process I use to design themes for WordPress, and my answer to that question is the same answer I give to people who ask my design process “in general”: I start with a Photoshop mockup and take it into HTML via Dreamweaver.&#160; The only difference is that I (quite literally) drop WordPress code in at the last minute, and separate a SINGLE .html file into .php files (header.php, sidebar.php, footer.php, and index.php). </p>
<p>So, to shed some insight into my process (and the process of creating a WordPress theme in general), I’m going to let you in on the creation of a theme for one of my current clients, Pray With Africa:</p>
<p><a href="http://www.studionashvegas.com/wp-content/uploads/2008/10/logo.png"><img title="logo" style="display: inline" height="167" alt="logo" src="http://www.studionashvegas.com/wp-content/uploads/2008/10/logo-thumb.png" width="500" /></a> </p>
<p>Pray With Africa is sending out a missions team to different cities in Africa in the next few weeks.&#160; They wanted a site that could be easily updated, have a blog element, and could be a place for pictures to be funneled in.</p>
<p>Of course, I chose WordPress (and not just because of my affinity for it).&#160; It’s super easy to blog with, has the ability to bring in Flickr galleries, and can be combined with Windows Live Writer to do posts offline while they are in the remote areas.&#160; Live Writer can then push the posts out all at once when they have access again.</p>
<p>So I set to work on a design.&#160; Here’s what I came up with:</p>
<p><a href="http://www.studionashvegas.com/wp-content/uploads/2008/10/site.jpg"><img title="Site" style="display: inline" height="678" alt="Site" src="http://www.studionashvegas.com/wp-content/uploads/2008/10/site-thumb.jpg" width="500" /></a> </p>
<p>Pretty straightforward, nothing too fancy, and just the right amount of grunge and clean to make it interesting.&#160; </p>
<p>So, that’s where I am right now.&#160; I’ll be documenting my progress as I turn this wireframe mockup into a WordPress theme.&#160; The next part will be the different parts to a theme and where those parts lie in the comp pictured above.</p>
<p><em>[Note: this project is due tomorrow for the client, so don’t expect it to be documented right away.&#160; Client first, then education <img src='http://www.studionashvegas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ]</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-1-background/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-1-background/&amp;title=Creating+a+WordPress+Theme+from+a+.PSD+File+%26ndash%3B+Part+1+%28Background%29" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-1-background/&amp;title=Creating+a+WordPress+Theme+from+a+.PSD+File+%26ndash%3B+Part+1+%28Background%29" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-1-background/&amp;t=Creating+a+WordPress+Theme+from+a+.PSD+File+%26ndash%3B+Part+1+%28Background%29" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Creating+a+WordPress+Theme+from+a+.PSD+File+%26ndash%3B+Part+1+%28Background%29&amp;link=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-1-background/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-1-background/&amp;imageurl=" rel="nofollow" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-1-background/&amp;title=Creating+a+WordPress+Theme+from+a+.PSD+File+%26ndash%3B+Part+1+%28Background%29" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-1-background/&amp;title=Creating+a+WordPress+Theme+from+a+.PSD+File+%26ndash%3B+Part+1+%28Background%29" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-1-background/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.studionashvegas.com%2Fold-posts%2Fcreating-a-wordpress-theme-from-a-psd-file-part-1-background%2F&amp;t=Creating+a+WordPress+Theme+from+a+.PSD+File+%26ndash%3B+Part+1+%28Background%29" rel="nofollow" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Creating+a+WordPress+Theme+from+a+.PSD+File+%26ndash%3B+Part+1+%28Background%29+-+http://b2l.me/482jv&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.studionashvegas.com%2Fold-posts%2Fcreating-a-wordpress-theme-from-a-psd-file-part-1-background%2F&amp;layout=standard&amp;show-faces=true&amp;width=600&amp;action=recommend&amp;font=verdana&amp;colorscheme=dark" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:600px; height:70px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/old-posts/creating-a-wordpress-theme-from-a-psd-file-part-1-background/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
