<?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>GrandmasterB dot com &#187; layout</title>
	<atom:link href="http://www.grandmasterb.com/tag/layout/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.grandmasterb.com</link>
	<description>Wandering Thoughts of a Graphical Assassin</description>
	<lastBuildDate>Sat, 30 Jan 2010 17:55:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Q&amp;A with GrandmasterB &#8211; HTML/CSS Layout</title>
		<link>http://www.grandmasterb.com/qa-with-grandmasterb-htmlcss-layout/</link>
		<comments>http://www.grandmasterb.com/qa-with-grandmasterb-htmlcss-layout/#comments</comments>
		<pubDate>Wed, 27 May 2009 13:00:04 +0000</pubDate>
		<dc:creator>GrandmasterB</dc:creator>
				<category><![CDATA[Q&A with GMB]]></category>
		<category><![CDATA[coda]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.grandmasterb.com/?p=1093</guid>
		<description><![CDATA[
From time to time, I get questions about how I start designing websites, and how I build custom WordPress themes for my clients. I&#8217;ve spent the better part of the last year trying to streamline the process of designing and launching a blog theme. The problem that I have is I tend to get a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/08/q_a_gmb.png"><img class="aligncenter size-full wp-image-299" title="Q&amp;A with GrandmasterB" src="http://www.grandmasterb.com/wp-content/uploads/2008/08/q_a_gmb.png" alt="Q&amp;A with GrandmasterB" width="510" height="135" /></a></p>
<p>From time to time, I get questions about how I start designing websites, and how I build custom WordPress themes for my clients. I&#8217;ve spent the better part of the last year trying to streamline the process of designing and launching a blog theme. The problem that I have is I tend to get a little carried away with trying to be perfect. Like most designers I start out with the basic tools&#8230;<a title="GrandmasterB - My Web Development Tools (Part One)" href="http://www.grandmasterb.com/my-web-development-tools-part-one/" target="_self">pencil and paper</a>. I draw out the layout and figure out the basic positioning of all of the necessary elements before I even think about putting anything down in Photoshop. That drawing stays with me until the very end of the project, and sometimes even after just for reference.</p>
<h4>How Does GrandmasterB Layout a Site for WordPress?</h4>
<p>Recently, Forest from <a title="The Random Forest" href="http://therandomforest.com/" target="_blank">The Random Forest</a> and <a title="Frugal Zeitgeist" href="http://frugalzeitgeist.com/" target="_blank">Frugal Zeitgeist</a> hit me up on Google Chat to ask me how I build a Wordpress theme and how I go from Photoshop layout to coding everything for Wordpress. Well, I know that I&#8217;m not the only designer/developer that works this way, but I build a simple HTML/CSS file that will serve as a template for the coding of the WordPress theme. In my opinion, there&#8217;s no reason to mess with all of the WordPress options and variables unless you have already solidified the design in it&#8217;s simplest form. I break down the design into the most simplest elements first:</p>
<p><span id="more-1093"></span></p>
<ol>
<li>Header</li>
<li>Content Area
<ol>
<li>Left Column</li>
<li>Right Column</li>
<li>Any other Columns</li>
</ol>
</li>
<li>Footer</li>
</ol>
<p>In my experience, 99.95% of the websites you visit will be comprised of those elements. I have built a basic HTML layout and copied it over to a <a title="Coda Clips" href="http://coda-clips.com/category/wordpress" target="_blank">Clip in Coda</a> that I can use for every new site and add or subtract items as needed. If you don&#8217;t use Coda, you can still make a template file to copy and paste whenever you need. Below is the basic structure of the file that I use&#8230;minus the standard HTML code.</p>
<h4>Basic HTML Layout</h4>
<p><code> &lt;div id="wrapper"&gt; &lt;!-- wraps everything into one div tag --&gt;<br />
<span> </span>&lt;div id="header"&gt;&lt;/div&gt;<br />
<span> </span><br />
<span> </span>&lt;div id="content-area"&gt; &lt;!-- houses the columns --&gt;<br />
<span> </span>&lt;div id="left-column"&gt;&lt;/div&gt;<br />
<span> </span>&lt;div id="right-column"&gt;&lt;/div&gt;<br />
<span> </span>&lt;/div&gt;<br />
<span> </span>&lt;div id="footer"&gt;&lt;/div&gt;<br />
&lt;/div&gt;</code></p>
<p>I know it looks simple, but that&#8217;s the idea&#8230;and it is simple! If you were to populate your divs with some content they will all just be stacked on top of each other. All of the detail like column heights, widths and position are determined by CSS. I had contemplated writing my own HTML/CSS layout tutorial, but that has been done a hundred times and there&#8217;s no sense in reinventing the wheel. One of the better tutorials that I have found was written by Steve Dennis on <a title="Subcide.com - Creating a CSS Layout from Scratch" href="http://www.subcide.com/tutorials/csslayout/index.aspx" target="_blank">Subcide.com</a>. It&#8217;s a very good tutorial, easy to follow and has great graphic examples to follow along with.</p>
<p>If you have any questions that you would like GrandmasterB to field hit me up via <a href="http://www.grandmasterb.com/contact">email</a> or on <a title="GrandmasterB on Twitter" href="http://twitter.com/grandmasterb" target="_blank">Twitter</a>.</p>
<p>~ GrandmasterB</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grandmasterb.com/qa-with-grandmasterb-htmlcss-layout/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A New Look for Cuzoogle</title>
		<link>http://www.grandmasterb.com/a-new-look-for-cuzoogle/</link>
		<comments>http://www.grandmasterb.com/a-new-look-for-cuzoogle/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 05:10:34 +0000</pubDate>
		<dc:creator>GrandmasterB</dc:creator>
				<category><![CDATA[Design Reviews]]></category>
		<category><![CDATA[cuzoogle]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[design services]]></category>
		<category><![CDATA[google adsense]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://www.grandmasterb.com/?p=602</guid>
		<description><![CDATA[
In my Week in Review post for October 20th, I mentioned that I had been working on a &#8220;secret&#8221; project for a client of mine and that we would probably be launching the site on or around November 3rd. Unfortunately, we didn&#8217;t make our November 3rd launch&#8230;but November 11th is just as good. The project [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/11/cuzoogle_screen.png"><img class="aligncenter size-full wp-image-603" title="New WordPress Theme for Cuzoogle.com" src="http://www.grandmasterb.com/wp-content/uploads/2008/11/cuzoogle_screen.png" alt="" width="500" height="230" /></a><br />
In my <a title="GrandmasterB: Week in Review 10/20" href="http://www.grandmasterb.com/week-in-review-1020-1026/" target="_blank">Week in Review post for October 20th</a>, I mentioned that I had been working on a &#8220;secret&#8221; project for a client of mine and that we would probably be launching the site on or around November 3rd. Unfortunately, we didn&#8217;t make our November 3rd launch&#8230;but November 11th is just as good. The project as you might be able to tell was a redesign of <a title="Cuzoogle" href="http://www.cuzoogle.com" target="_blank">Cuzoogle</a>. Cuzzy had been talking about redesigning his site for awhile now and giving it a more updated look. We both sat down (cross-continent) and came up with an interesting layout that would allow for him to put in his necessary ad spots as well as something that looked fan-freakin&#8217;tastic!</p>
<p>While this project wasn&#8217;t a completely custom theme; we did start off with the basic layout from the <a title="Profit Blogger: Simple Red Theme" href="http://www.profitblogger.com/themes/simple-red-wordpress-theme/" target="_blank">Simple Red Theme</a> from Easy Wordpress that Cuzzy had been using. The biggest challenge in getting everything looking as it should were the widgets that Cuzzy uses for advertising. They took some tweaking, but they all fell into place like they should. The new theme is in between <a title="CSS-Tricks: eCommerce Product Page Makeover" href="http://css-tricks.com/new-screencast-product-page-makeover/" target="_blank">Evolutionary and Revolutionary</a> when it comes down to it. Since the original theme had a lot of good quality stuff already built-in, we didn&#8217;t need to revolutionize the theme&#8230;however, the design elements added were HUGE improvements over the old version.</p>
<p>This is a quick breakdown of all of the new added features&#8230;<span id="more-602"></span></p>
<ol>
<li>New and Improved Header Graphic
<ul>
<li>Larger Header to Incorporate Ad-Space</li>
<li>Built-In 728&#215;90 Ad</li>
<li>Built-In 300&#215;250 Ad (New Addition)</li>
<li>Custom Cuzoogle Logo (New Addition)</li>
<li>Streamlined Navigation</li>
<li>RSS Button Designed into Header</li>
</ul>
</li>
<li>Improved Post Styling
<ul>
<li>Added Custom Date Badge (New Addition)</li>
<li>Changed Title Font to Helvetica Neue Bold Italic</li>
<li>Restyled Comments Section to Include Gravatars</li>
</ul>
</li>
<li>Sidebar Improvements
<ul>
<li>Restyled Search Box</li>
<li>Restyled FeedBurner Widget</li>
<li>Made Split Columns Wider</li>
<li>Restyled Widget Text</li>
</ul>
</li>
</ol>
<p>There are a lot of really cool new features to the updated theme, but I think they add a lot of character to the site. The one thing that I might have done differently would be to make the header not as tall. However, I think it works and gives the site a unique element that you don&#8217;t see every day. I&#8217;m really proud of this new design&#8230;I think it&#8217;s going to generate a lot of buzz in the design community.</p>
<p>What do you think of the new Cuzoogle? I&#8217;d love to hear what you all think of it. If you&#8217;re interested in having GrandmasterB design something for you  let me know. If you want to see some of my other work check out the <a title="GrandmasterB: Design Services" href="http://www.grandmasterb.com/design-services" target="_self">Design Services</a> page.</p>
<p>~ GrandmasterB</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grandmasterb.com/a-new-look-for-cuzoogle/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
