<?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>Tony Thomas</title>
	<atom:link href="http://anthonygthomas.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://anthonygthomas.com</link>
	<description>This is my blog.</description>
	<lastBuildDate>Tue, 09 Feb 2010 01:58:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Introducing the Baseline Development Wordpress Theme</title>
		<link>http://anthonygthomas.com/2010/02/08/introducing-the-baseline-development-wordpress-theme/</link>
		<comments>http://anthonygthomas.com/2010/02/08/introducing-the-baseline-development-wordpress-theme/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 01:53:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blueprint Framework]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/?p=233</guid>
		<description><![CDATA[I&#8217;ve come up with some habits that I&#8217;ve developed from building themes for Wordpress over the years. One, is to start with a nearly blank style sheet. I also like to hook in several JavaScript libraries and CSS frameworks from the start to take advantage of things like JQuery, Blueprint&#8217;s CSS reset and Superfish menus.
I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve come up with some habits that I&#8217;ve developed from building themes for Wordpress over the years. One, is to start with a nearly blank style sheet. I also like to hook in several JavaScript libraries and CSS frameworks from the start to take advantage of things like JQuery, Blueprint&#8217;s CSS reset and Superfish menus.</p>
<p>I&#8217;ve decided to build and release an XHTML 1.0 version and release it as a springboard for others who may want to take advantage of the same sets of tools. The theme isn&#8217;t much to look at (that&#8217;s the point), but it includes:</p>
<ul>
<li><a href="http://blueprintcss.org/">Blueprint CSS framework</a></li>
<li><a href="http://blueprintcss.org/"></a><a href="http://960.gs/">960 Grid System</a></li>
<li><a href="http://960.gs/"></a><a href="http://jquery.com/">JQuery 1.4.0</a></li>
<li><a href="http://jqueryui.com/">JQuery UI 1.7.1</a></li>
<li><a href="http://jquery.com/"></a><a href="http://users.tpg.com.au/j_birch/plugins/superfish/">Superfish JQuery menu</a> (with <a href="http://cherne.net/brian/resources/jquery.hoverIntent.html">HoverIntent.js</a>)</li>
<li><a href="http://code.google.com/p/ie7-js/">IE8 JavaScript Library</a></li>
<li><a href="http://users.tpg.com.au/j_birch/plugins/superfish/"></a>Widget-enabled sidebar</li>
<li><a href="http://wpcandy.com/articles/easier-theme-development-with-the-sample-post-collection.html">Test Content file from WP-Candy</a></li>
<li><a href="http://validator.w3.org/check?uri=http%3A%2F%2Fbaseline.truetoneenterprises.com%2F">Valid XHTML 1.0</a></li>
</ul>
<p><a href="http://baseline.truetoneenterprises.com">More information here</a>.</p>
<p>If you want to use all of these tools, you&#8217;re all set. If you want to use a few, it&#8217;s just a matter of removing them from header.php.</p>
<p>First off, I really like Blueprint&#8217;s browser reset, so I wanted to include that here. I also like the flexibility the 960 Grid System offers in terms of column width. As a result, I&#8217;ve included them both.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>9
10
11
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'stylesheet_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/blueprint/screen.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'stylesheet_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/960.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'stylesheet_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/blueprint/print.css&quot; type=&quot;text/css&quot; media=&quot;print&quot; /&gt;</pre></td></tr></table></div>

<p>If you don&#8217;t wish to use any of these, simply remove them from header.php. Next up is the Superfish CSS:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>12
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'stylesheet_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/superfish/css/superfish.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt;</pre></td></tr></table></div>

<p>You must keep this if you&#8217;re using Superfish. If you&#8217;re not going to use Superfish, you should remove these lines too:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>29
30
31
32
33
34
35
36
37
38
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'stylesheet_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/superfish/js/superfish.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'stylesheet_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/superfish/js/hoverIntent.js&quot;&gt;&lt;/script&gt;
&nbsp;
&lt;script type=&quot;text/javascript&quot;&gt; 
&nbsp;
    $(document).ready(function() { 
        $('ul.sf-menu').superfish(); 
    }); 
&nbsp;
&lt;/script&gt;</pre></td></tr></table></div>

<p>Next is Blueprint&#8217;s Internet Explorer CSS reset:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>13
14
15
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;!--[if IE]&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'stylesheet_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/blueprint/ie.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt;
&lt;![endif] --&gt;</pre></td></tr></table></div>

<p>I&#8217;ve also had good like using the IE8 JavaScript library, so that&#8217;s included next:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>17
18
19
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span><span style="color: #009900;">&#91;</span><span style="color: #b1b100;">if</span> lt IE <span style="color: #cc66cc;">8</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE8.js&quot;</span> type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;!</span><span style="color: #009900;">&#91;</span><span style="color: #b1b100;">endif</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">--&gt;</span></pre></td></tr></table></div>

<p>Then JQuery and JQuery UI libraries:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>21
22
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js&quot;</span> type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js&quot;</span> type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>That&#8217;s it. All the frameworks and libraries are loaded. If you don&#8217;t think you&#8217;ll need any one of them, you can just take them out. WARNING: The layout of the columns does rely on the 960 Grid System CSS file. If you take that out of the head the columns won&#8217;t work and you&#8217;ll break the layout.</p>
<p>Otherwise this should give you a good start that will allow you to take advantage of tons of cool JQuery stuff and leverages a very popular CSS Grid System for laying out columns. It should be easy to modify this theme to fit your own design.</p>
<p><a href="http://baseline.truetoneenterprises.com">Download the theme here</a>.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2010/02/08/introducing-the-baseline-development-wordpress-theme/" rel="bookmark" title="February 8, 2010">Introducing the Baseline Development Wordpress Theme</a></li>
<li><a href="http://anthonygthomas.com/2008/11/22/blueprint-css-readme-file/" rel="bookmark" title="November 22, 2008">Blueprint CSS Readme File</a></li>
<li><a href="http://anthonygthomas.com/2008/11/26/getting-blueprint-css-javascript-libraries-into-your-cakephp-layout/" rel="bookmark" title="November 26, 2008">Getting Blueprint CSS &#038; JavaScript Libraries Into Your CakePHP Layout</a></li>
<li><a href="http://anthonygthomas.com/2008/05/13/my-private-summer-of-coding/" rel="bookmark" title="May 13, 2008">My Private Summer of Coding</a></li>
<li><a href="http://anthonygthomas.com/2008/11/22/blueprint-css-tutorial-file/" rel="bookmark" title="November 22, 2008">Blueprint CSS Tutorial File</a></li>
</ul>
<p><!-- Similar Posts took 4.869 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2010/02/08/introducing-the-baseline-development-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Mind Mapping Software to Develop Data Models</title>
		<link>http://anthonygthomas.com/2010/01/08/using-mind-mapping-software-to-develop-data-models/</link>
		<comments>http://anthonygthomas.com/2010/01/08/using-mind-mapping-software-to-develop-data-models/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 21:08:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[data modeling]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[mind mapping]]></category>
		<category><![CDATA[data]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/?p=217</guid>
		<description><![CDATA[I&#8217;ve been using mind mapping software recently to work out data models, with some success. The Mindmeister example below is a simple database of a few related tables. 
Most folks who have done much work with relational databases won&#8217;t need a mind map for simple relationships like the example above where tables are simple has-many [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using mind mapping software recently to work out data models, with some success. The Mindmeister example below is a simple database of a few related tables. <iframe width="600" height="400" frameborder="0" src="http://www.mindmeister.com/maps/public_map_shell/38105130/blog?width=600&#038;height=400&#038;zoom=0" scrolling="no" style="overflow:hidden"></iframe></p>
<p>Most folks who have done much work with relational databases won&#8217;t need a mind map for simple relationships like the example above where tables are simple has-many or belongs-to relationships. But, it can come in very handy for getting your head around has-and-belongs-to-many relationships where join tables are involved.</p>
<ul>
<li><a href="http://www.mindmeister.com/">Mindmeister</a></li>
<li><a href="http://freemind.sourceforge.net/wiki/index.php/Main_Page">FreeMind</a></li>
</ul>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2010/01/08/using-mind-mapping-software-to-develop-data-models/" rel="bookmark" title="January 8, 2010">Using Mind Mapping Software to Develop Data Models</a></li>
<li><a href="http://anthonygthomas.com/2008/12/10/use-functions-from-other-controllers-while-maintaining-mvc-architecture-in-cakephp/" rel="bookmark" title="December 10, 2008">Use Functions from Other Controllers While Maintaining MVC Architecture in CakePHP</a></li>
<li><a href="http://anthonygthomas.com/2009/07/22/simple-security-in-cakephp/" rel="bookmark" title="July 22, 2009">Simple Security in CakePHP</a></li>
<li><a href="http://anthonygthomas.com/2008/03/28/using-social-networking-sites-for-research/" rel="bookmark" title="March 28, 2008">Using Social Networking Sites for Research</a></li>
<li><a href="http://anthonygthomas.com/2008/05/13/my-private-summer-of-coding/" rel="bookmark" title="May 13, 2008">My Private Summer of Coding</a></li>
</ul>
<p><!-- Similar Posts took 3.998 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2010/01/08/using-mind-mapping-software-to-develop-data-models/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blueprint: Taking a Close Look at grid.css</title>
		<link>http://anthonygthomas.com/2009/11/09/blueprint-taking-a-close-look-at-grid-css/</link>
		<comments>http://anthonygthomas.com/2009/11/09/blueprint-taking-a-close-look-at-grid-css/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 02:31:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blueprint Framework]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[blueprint]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/?p=191</guid>
		<description><![CDATA[About Blueprint
Blueprint is a CSS framework, which aims to cut down on your development time. It gives you a solid foundation to build your project on top of, with an easy-to-use grid, sensible typography, useful plugins, and even a stylesheet for printing.
.container

18
19
20
21
22
/* A container should group all your columns. */
.container &#123;
width: 950px;
margin: 0 auto;
&#125;

container is [...]]]></description>
			<content:encoded><![CDATA[<h3>About Blueprint</h3>
<blockquote><p><a href="http://blueprintcss.org/">Blueprint</a> is a CSS framework, which aims to cut down on your development time. It gives you a solid foundation to build your project on top of, with an easy-to-use grid, sensible typography, useful plugins, and even a stylesheet for printing.</p></blockquote>
<h3>.container</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>18
19
20
21
22
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* A container should group all your columns. */</span>
<span style="color: #6666ff;">.container</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">950px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p><code>container</code> is where it all begins. This establishes your centered div with a width of 950 pixels. If you&#8217;ve done much CSS, this should look pretty familiar:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* This is what centers the div */</span></pre></div></div>

<p>Not much else to say except all of your other columns should be inside a div with the <code>container</code> class. Let&#8217;s move on.</p>
<h3>.showgrid</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>24
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.showgrid</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">src/grid.png</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>  <span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p><code>showgrid</code> is a nice tool to display your columns when you&#8217;re laying out a page. Simply add it to the <code>container</code> div like so:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;container showgrid&quot;&gt;DIV contents&lt;/div&gt;</pre></div></div>

<p>Once you&#8217;re satisfied with how things are positioned, remove <code>showgrid</code> from your classes.</p>
<p>Let&#8217;s skip down to line 33 or so.</p>
<h3>.span-x</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>33
34
35
36
37
38
39
40
41
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* Sets up basic grid floating and margin. */</span>
div<span style="color: #6666ff;">.span-1</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-2</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-3</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-4</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-5</span><span style="color: #00AA00;">,</span> 
div<span style="color: #6666ff;">.span-6</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-7</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-8</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-9</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-10</span><span style="color: #00AA00;">,</span> 
div<span style="color: #6666ff;">.span-11</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-12</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-13</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-14</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-15</span><span style="color: #00AA00;">,</span> 
div<span style="color: #6666ff;">.span-16</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-17</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-18</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-19</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-20</span><span style="color: #00AA00;">,</span> 
div<span style="color: #6666ff;">.span-21</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-22</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-23</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-24</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">margin-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span> 
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>This just sets up your span-x columns to all float left. It&#8217;s a bit counter-intuitive, but this makes them all wrap around to the right of each other. It also sets up the 10 pixel margin to the right of each one for a nice gutter. That is, except for <code>last</code>. <code>last</code> is always the last column and forces any div with a <code>span-x</code> class to go below it. It also has no right margin:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>44
</pre></td><td class="code"><pre class="css" style="font-family:monospace;">div<span style="color: #6666ff;">.last</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin-right</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>Next the <code>span-x</code> widths are set:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* Use these classes to set the width of a column. */</span>
<span style="color: #6666ff;">.span-1</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">30px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-2</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">70px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-3</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">110px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-4</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">150px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-5</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">190px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-6</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">230px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-7</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">270px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-8</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">310px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-9</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">350px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-10</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">390px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-11</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">430px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-12</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">470px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-13</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">510px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-14</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">550px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-15</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">590px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-16</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">630px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-17</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">670px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-18</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">710px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-19</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">750px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-20</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">790px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-21</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">830px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-22</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">870px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-23</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">910px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.span-24</span><span style="color: #00AA00;">,</span> div<span style="color: #6666ff;">.span-24</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">950px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>Notice above that <code>span-24</code> takes up the full width with no right margin. Want a wider gutter than the pre-established 10 pixels? No problem.</p>
<h3>.append-x</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* Add these to a column to append empty cols. */</span>
<span style="color: #6666ff;">.append-1</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">40px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>  
<span style="color: #6666ff;">.append-2</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">80px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-3</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">120px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-4</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">160px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-5</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">200px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-6</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">240px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-7</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">280px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-8</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">320px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-9</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">360px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-10</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">400px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-11</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">440px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-12</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">480px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-13</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">520px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-14</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">560px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-15</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">600px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-16</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">640px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-17</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">680px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-18</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">720px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-19</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">760px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-20</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">800px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-21</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">840px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-22</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">880px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.append-23</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">920px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>Remember, each of the <code>span-x</code> columns are 30 pixels wide with a 10-pixel right margin. Likewise the above <code>append-x</code> classes will add an additional column to the right. Just do the math. <code>span-1</code> adds 40 pixels. <code>span-2</code>, 80 pixels and so on. We can add columns to the left with the <code>prepend</code> classes in the same way.</p>
<h3>.prepend-x</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* Add these to a column to prepend empty cols. */</span>
<span style="color: #6666ff;">.prepend-1</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">40px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>  
<span style="color: #6666ff;">.prepend-2</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">80px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-3</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">120px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-4</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">160px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-5</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">200px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-6</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">240px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-7</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">280px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-8</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">320px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-9</span>  <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">360px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-10</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">400px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-11</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">440px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-12</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">480px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-13</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">520px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-14</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">560px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-15</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">600px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-16</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">640px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-17</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">680px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-18</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">720px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-19</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">760px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-20</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">800px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-21</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">840px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-22</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">880px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.prepend-23</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">920px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p><code>prepend-1</code> adds 40 pixels to the left of a column. <code>prepend-2</code> adds 80 pixels and so on. As long as we&#8217;re talking about positioning, let&#8217;s skip ahead a little bit.</p>
<h3>.push-x &#038; .pull-x</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column.  */</span>
&nbsp;
<span style="color: #6666ff;">.pull-1</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-40px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pull-2</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-80px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pull-3</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-120px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pull-4</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-160px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.pull-5</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-200px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.pull-1</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.pull-2</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.pull-3</span><span style="color: #00AA00;">,</span> 
<span style="color: #6666ff;">.pull-4</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.pull-5</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.pull-5</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.push-1</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">-40px</span> <span style="color: #933;">1.5em</span> <span style="color: #933;">40px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.push-2</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">-80px</span> <span style="color: #933;">1.5em</span> <span style="color: #933;">80px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.push-3</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">-120px</span> <span style="color: #933;">1.5em</span> <span style="color: #933;">120px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.push-4</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">-160px</span> <span style="color: #933;">1.5em</span> <span style="color: #933;">160px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.push-5</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">-200px</span> <span style="color: #933;">1.5em</span> <span style="color: #933;">200px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.push-0</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.push-1</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.push-2</span><span style="color: #00AA00;">,</span> 
<span style="color: #6666ff;">.push-3</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.push-4</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.push-5</span> <span style="color: #00AA00;">&#123;</span> 
  <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p><code>pull-x</code> and <code>push-x</code> function in a similar way to <code>append-x</code> and <code>prepend-x</code>, except they&#8217;ll actually push columns into one another instead of creating a wider gutter. <code>push-1</code> pushes the page element over to the right by one, 40-pixel column. <code>pull-1</code> pulls the page element over to the left by one 40-pixel column.</p>
<p>We skipped over some stuff. Let&#8217;s go back to it:</p>
<h3>.border</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>123
124
125
126
127
128
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* Border on right hand side of a column. */</span>
div<span style="color: #6666ff;">.border</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">margin-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">border-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#eee</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p><code>border</code> adds a right-border to any page element. Notice the right padding, margin and 1-pixel border all add up to 10 pixels to maintain the standard 10-pixel gutter.</p>
<h3>.colborder</h3>
<p><code>colborder</code> does the same except the right margin spans an entire column:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>130
131
132
133
134
135
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* Border with more whitespace, spans one column. */</span>
div<span style="color: #6666ff;">.colborder</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">padding-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">24px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">margin-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">25px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">border-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#eee</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>The right padding, margin and 1-pixel border add up to 50 pixels this time.</p>
<h3>.box</h3>
<p><code>box</code> creates a padded box inside a column.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>170
171
172
173
174
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.box</span> <span style="color: #00AA00;">&#123;</span> 
  <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1.5em</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">margin-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1.5em</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#E5ECF9</span><span style="color: #00AA00;">;</span> 
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<h3>hr</h3>
<p><code>hr</code> gets a nice default setting to make sure it crosses your column:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>177
178
179
180
181
182
183
184
185
186
187
188
189
190
</pre></td><td class="code"><pre class="css" style="font-family:monospace;">hr <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ddd</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ddd</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">clear</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">both</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span> 
  <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">.1em</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1.45em</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span> 
<span style="color: #00AA00;">&#125;</span>
hr<span style="color: #6666ff;">.space</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>I&#8217;m actually going to skip to the end because the <code>clearfix</code> classes seem a bit outmoded after reading the <a href="http://www.positioniseverything.net/easyclearing.html">article they are based on</a>. <a href="http://www.sitepoint.com/blogs/2005/02/26/simple-clearing-of-floats/">Read this article instead</a>.</p>
<h3>.clear</h3>
<p><code>clear</code> simply forces a column to go beneath the column before it.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>212
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.clear</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">clear</span><span style="color: #00AA00;">:</span><span style="color: #993333;">both</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>That&#8217;s it. Hopefully reading this will give you a good sense of what positioning classes are available in <a href="http://blueprintcss.org/">Blueprint</a> and how to use them. Please leave a comment if anything needs clarification.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2009/11/09/blueprint-taking-a-close-look-at-grid-css/" rel="bookmark" title="November 9, 2009">Blueprint: Taking a Close Look at grid.css</a></li>
<li><a href="http://anthonygthomas.com/2008/12/16/when-using-a-grid-layout-css-framework-do-the-math/" rel="bookmark" title="December 16, 2008">When Using a Grid Layout CSS Framework, Do the Math</a></li>
<li><a href="http://anthonygthomas.com/2008/11/22/blueprint-css-tutorial-file/" rel="bookmark" title="November 22, 2008">Blueprint CSS Tutorial File</a></li>
<li><a href="http://anthonygthomas.com/2008/12/10/use-functions-from-other-controllers-while-maintaining-mvc-architecture-in-cakephp/" rel="bookmark" title="December 10, 2008">Use Functions from Other Controllers While Maintaining MVC Architecture in CakePHP</a></li>
<li><a href="http://anthonygthomas.com/2010/02/08/introducing-the-baseline-development-wordpress-theme/" rel="bookmark" title="February 8, 2010">Introducing the Baseline Development Wordpress Theme</a></li>
</ul>
<p><!-- Similar Posts took 6.215 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2009/11/09/blueprint-taking-a-close-look-at-grid-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Michael Shermer&#8217;s TED Talk: Why People Believe Weird Things</title>
		<link>http://anthonygthomas.com/2009/11/09/michael-shermers-ted-talk-why-people-believe-weird-things/</link>
		<comments>http://anthonygthomas.com/2009/11/09/michael-shermers-ted-talk-why-people-believe-weird-things/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 18:33:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[posterous]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/2009/11/09/michael-shermers-ted-talk-why-people-believe-weird-things/</guid>
		<description><![CDATA[
  Posted via email   from Truetone  
  Similar Posts:

Michael Shermer&#8217;s TED Talk: Why People Believe Weird Things
What You See Might Not Be Real
Awesome
Via http://shop.neatorama.com/
50 Years of Space Exploration


]]></description>
			<content:encoded><![CDATA[<p><object height="326" width="334"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" /></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /></param><param name="bgColor" value="#ffffff" /></param><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/MichaelShermer_2006-medium.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/MichaelShermer-2006.embed_thumbnail.jpg&#038;vw=320&#038;vh=240&#038;ap=0&#038;ti=22&#038;introDuration=16500&#038;adDuration=4000&#038;postAdDuration=2000&#038;adKeys=talk=michael_shermer_on_believing_strange_things;year=2006;theme=how_the_mind_works;theme=evolution_s_genius;theme=unconventional_explanations;event=TED2006;&#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><embed allowfullscreen="true" type="application/x-shockwave-flash" src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" flashvars="vu=http://video.ted.com/talks/dynamic/MichaelShermer_2006-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/MichaelShermer-2006.embed_thumbnail.jpg&amp;vw=320&amp;vh=240&amp;ap=0&amp;ti=22&amp;introDuration=16500&amp;adDuration=4000&amp;postAdDuration=2000&amp;adKeys=talk=michael_shermer_on_believing_strange_things;year=2006;theme=how_the_mind_works;theme=evolution_s_genius;theme=unconventional_explanations;event=TED2006;" height="326" wmode="transparent" width="334"></embed></param></param></object>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://truetone.posterous.com/michael-shermers-ted-talk-why-people-believe">Truetone</a>  </p>
<p>  <strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2009/11/09/michael-shermers-ted-talk-why-people-believe-weird-things/" rel="bookmark" title="November 9, 2009">Michael Shermer&#8217;s TED Talk: Why People Believe Weird Things</a></li>
<li><a href="http://anthonygthomas.com/2009/09/30/what-you-see-might-not-be-real/" rel="bookmark" title="September 30, 2009">What You See Might Not Be Real</a></li>
<li><a href="http://anthonygthomas.com/2009/10/02/awesome/" rel="bookmark" title="October 2, 2009">Awesome</a></li>
<li><a href="http://anthonygthomas.com/2009/10/13/via-httpshop-neatorama-com/" rel="bookmark" title="October 13, 2009">Via http://shop.neatorama.com/</a></li>
<li><a href="http://anthonygthomas.com/2009/10/13/50-years-of-space-exploration/" rel="bookmark" title="October 13, 2009">50 Years of Space Exploration</a></li>
</ul>
<p><!-- Similar Posts took 4.491 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2009/11/09/michael-shermers-ted-talk-why-people-believe-weird-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change Into&#8230;</title>
		<link>http://anthonygthomas.com/2009/11/02/change-into/</link>
		<comments>http://anthonygthomas.com/2009/11/02/change-into/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 02:57:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[posterous]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/2009/11/02/change-into/</guid>
		<description><![CDATA[
  Posted via email   from Truetone  
  Similar Posts:

Change Into&#8230;
Very Gradual Change (via @keeproductions)
What You See Might Not Be Real
Awesome
Via http://shop.neatorama.com/


]]></description>
			<content:encoded><![CDATA[<p><img src="http://posterous.com/getfile/files.posterous.com/truetone/CeHeunHfhfauyCyzEArwhEwIFHeGxraktFlhihEBxEffnCIvIkwpupezBjIi/media_httpwwwslashfilmcomwpwpcontentimageschangeintoatruckjpg_qoihhbtIIFwsiBk.jpg.scaled500.jpg" width="500" height="667"/>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://truetone.posterous.com/change-into">Truetone</a>  </p>
<p>  <strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2009/11/02/change-into/" rel="bookmark" title="November 2, 2009">Change Into&#8230;</a></li>
<li><a href="http://anthonygthomas.com/2009/11/02/very-gradual-change-via-keeproductions/" rel="bookmark" title="November 2, 2009">Very Gradual Change (via @keeproductions)</a></li>
<li><a href="http://anthonygthomas.com/2009/09/30/what-you-see-might-not-be-real/" rel="bookmark" title="September 30, 2009">What You See Might Not Be Real</a></li>
<li><a href="http://anthonygthomas.com/2009/10/02/awesome/" rel="bookmark" title="October 2, 2009">Awesome</a></li>
<li><a href="http://anthonygthomas.com/2009/10/13/via-httpshop-neatorama-com/" rel="bookmark" title="October 13, 2009">Via http://shop.neatorama.com/</a></li>
</ul>
<p><!-- Similar Posts took 4.673 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2009/11/02/change-into/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Very Gradual Change (via @keeproductions)</title>
		<link>http://anthonygthomas.com/2009/11/02/very-gradual-change-via-keeproductions/</link>
		<comments>http://anthonygthomas.com/2009/11/02/very-gradual-change-via-keeproductions/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 02:57:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[posterous]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/2009/11/02/very-gradual-change-via-keeproductions/</guid>
		<description><![CDATA[
  Posted via email   from Truetone  
  Similar Posts:

Very Gradual Change (via @keeproductions)
Change Into&#8230;
Via http://shop.neatorama.com/
Every Mission to Mars Ever Planned (via @wiredscience)
What You See Might Not Be Real


]]></description>
			<content:encoded><![CDATA[<p><img src="http://posterous.com/getfile/files.posterous.com/truetone/eFrGunJDuDnxesfDxkFGsIFGDIcFeCojFhcdowJIfmbjsdiDEstcJlycuuyv/media_httpliberalvaluesblogcomwpcontentuploads200909GradualChangejpg_cctDrohaGwjBjem.jpg.scaled500.jpg" width="335" height="500"/>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://truetone.posterous.com/very-gradual-change-via-keeproductions">Truetone</a>  </p>
<p>  <strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2009/11/02/very-gradual-change-via-keeproductions/" rel="bookmark" title="November 2, 2009">Very Gradual Change (via @keeproductions)</a></li>
<li><a href="http://anthonygthomas.com/2009/11/02/change-into/" rel="bookmark" title="November 2, 2009">Change Into&#8230;</a></li>
<li><a href="http://anthonygthomas.com/2009/10/13/via-httpshop-neatorama-com/" rel="bookmark" title="October 13, 2009">Via http://shop.neatorama.com/</a></li>
<li><a href="http://anthonygthomas.com/2009/10/22/every-mission-to-mars-ever-planned-via-wiredscience/" rel="bookmark" title="October 22, 2009">Every Mission to Mars Ever Planned (via @wiredscience)</a></li>
<li><a href="http://anthonygthomas.com/2009/09/30/what-you-see-might-not-be-real/" rel="bookmark" title="September 30, 2009">What You See Might Not Be Real</a></li>
</ul>
<p><!-- Similar Posts took 4.328 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2009/11/02/very-gradual-change-via-keeproductions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Out for Sushi for @eskelton&#8217;s Birthday</title>
		<link>http://anthonygthomas.com/2009/10/30/out-for-sushi-for-eskeltons-birthday/</link>
		<comments>http://anthonygthomas.com/2009/10/30/out-for-sushi-for-eskeltons-birthday/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 00:03:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[posterous]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/2009/10/30/out-for-sushi-for-eskeltons-birthday/</guid>
		<description><![CDATA[



&#8211; Sent from my Palm Pre


  Posted via email   from Truetone  
  Similar Posts:

Out for Sushi for @eskelton&#8217;s Birthday
Who do you suppose calls Mr. Clean&#8217;s mop customer support line?
It&#8217;s a beautiful fall day in Mpls
The Pithy Poetry of Life
Sunrise over Sabo Bridge


]]></description>
			<content:encoded><![CDATA[<p><a href='http://posterous.com/getfile/files.posterous.com/truetone/S3rpsPdNeIp43ofZ7aDlkkCsVizhrKwrSlLDGxF4PhLBSwBEPPSoMUJ8GXRm/CIMG0120.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/truetone/iQoj32eH1Q1Na514ZiQ3xXOpJSTZ4xkVsnGvQ57aL1YoqvatomeAC21OnQXQ/CIMG0120.jpg.scaled.500.jpg" width="500" height="668"/></a>
<p><span style="font-family: Prelude, Verdana, san-serif;">
<p /></span>
<div>
<div style="font-family: arial, sans-serif; font-size: 12px; color: #999999;">&#8211; Sent from my Palm Pre</div>
<p></div>
</p>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://truetone.posterous.com/out-for-sushi-for-eskeltons-birthday">Truetone</a>  </p>
<p>  <strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2009/10/30/out-for-sushi-for-eskeltons-birthday/" rel="bookmark" title="October 30, 2009">Out for Sushi for @eskelton&#8217;s Birthday</a></li>
<li><a href="http://anthonygthomas.com/2009/10/25/who-do-you-suppose-calls-mr-cleans-mop-customer-support-line/" rel="bookmark" title="October 25, 2009">Who do you suppose calls Mr. Clean&#8217;s mop customer support line?</a></li>
<li><a href="http://anthonygthomas.com/2009/10/27/its-a-beautiful-fall-day-in-mpls/" rel="bookmark" title="October 27, 2009">It&#8217;s a beautiful fall day in Mpls</a></li>
<li><a href="http://anthonygthomas.com/2009/10/23/the-pithy-poetry-of-life/" rel="bookmark" title="October 23, 2009">The Pithy Poetry of Life</a></li>
<li><a href="http://anthonygthomas.com/2009/10/28/sunrise-over-sabo-bridge/" rel="bookmark" title="October 28, 2009">Sunrise over Sabo Bridge</a></li>
</ul>
<p><!-- Similar Posts took 4.240 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2009/10/30/out-for-sushi-for-eskeltons-birthday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Become a Hacker</title>
		<link>http://anthonygthomas.com/2009/10/29/how-to-become-a-hacker/</link>
		<comments>http://anthonygthomas.com/2009/10/29/how-to-become-a-hacker/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 20:38:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[posterous]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/2009/10/29/how-to-become-a-hacker/</guid>
		<description><![CDATA[How to Become a Hacker.

 Hackers solve problems and build things, and they believe in freedom and voluntary mutual help. To be accepted as a hacker, you have to behave as though you have this kind of attitude yourself. And to behave as though you have the attitude, you have to really believe the attitude.

This [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://catb.org/~esr/faqs/hacker-howto.html#why_this">How to Become a Hacker</a>.
<p />
<blockquote class="posterous_medium_quote"> Hackers solve problems and build things, and they believe in freedom and voluntary mutual help. To be accepted as a hacker, you have to behave as though you have this kind of attitude yourself. And to behave as though you have the attitude, you have to really believe the attitude.</p></blockquote>
<p />
<div>This reminds me of a high school friend who once told me, &quot;Punk isn&#39;t a kind of music, it&#39;s an <i>attitude</i>.&quot; Whatever dude.</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://truetone.posterous.com/how-to-become-a-hacker">Truetone</a>  </p>
<p>  <strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2009/10/29/how-to-become-a-hacker/" rel="bookmark" title="October 29, 2009">How to Become a Hacker</a></li>
<li><a href="http://anthonygthomas.com/2008/04/14/access-to-free-music-and-emotional-connections/" rel="bookmark" title="April 14, 2008">Access to Free Music and Emotional Connections</a></li>
<li><a href="http://anthonygthomas.com/2008/04/04/will-twitter-get-benched/" rel="bookmark" title="April 4, 2008">Will Twitter Get Benched?</a></li>
<li><a href="http://anthonygthomas.com/2009/10/14/huffpost-applies-ab-testing-to-headlines-via-bigboxcar-via-mjkeliher/" rel="bookmark" title="October 14, 2009">HuffPost Applies AB Testing to Headlines via (@bigboxcar via 	@mjkeliher)</a></li>
<li><a href="http://anthonygthomas.com/2008/04/10/googles-appengine/" rel="bookmark" title="April 10, 2008">Google&#8217;s AppEngine</a></li>
</ul>
<p><!-- Similar Posts took 4.279 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2009/10/29/how-to-become-a-hacker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Sites Infographic</title>
		<link>http://anthonygthomas.com/2009/10/29/social-sites-infographic/</link>
		<comments>http://anthonygthomas.com/2009/10/29/social-sites-infographic/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 20:26:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[posterous]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/2009/10/29/social-sites-infographic/</guid>
		<description><![CDATA[
  Posted via email   from Truetone  
  Similar Posts:

Social Sites Infographic
What You See Might Not Be Real
Awesome
Via http://shop.neatorama.com/
50 Years of Space Exploration


]]></description>
			<content:encoded><![CDATA[<p><img src="http://posterous.com/getfile/files.posterous.com/truetone/DvfeitkggqHuistxFeugnsfBznEazrhGinCDpudHzHejtGmuxrczACsulanb/media_httpiimgurcomnaZMYpng_EEGtExuxkFbndIx.png.scaled500.png" width="480" height="2048"/>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://truetone.posterous.com/social-sites-infographic">Truetone</a>  </p>
<p>  <strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2009/10/29/social-sites-infographic/" rel="bookmark" title="October 29, 2009">Social Sites Infographic</a></li>
<li><a href="http://anthonygthomas.com/2009/09/30/what-you-see-might-not-be-real/" rel="bookmark" title="September 30, 2009">What You See Might Not Be Real</a></li>
<li><a href="http://anthonygthomas.com/2009/10/02/awesome/" rel="bookmark" title="October 2, 2009">Awesome</a></li>
<li><a href="http://anthonygthomas.com/2009/10/13/via-httpshop-neatorama-com/" rel="bookmark" title="October 13, 2009">Via http://shop.neatorama.com/</a></li>
<li><a href="http://anthonygthomas.com/2009/10/13/50-years-of-space-exploration/" rel="bookmark" title="October 13, 2009">50 Years of Space Exploration</a></li>
</ul>
<p><!-- Similar Posts took 4.226 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2009/10/29/social-sites-infographic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hey Jude</title>
		<link>http://anthonygthomas.com/2009/10/29/hey-jude/</link>
		<comments>http://anthonygthomas.com/2009/10/29/hey-jude/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 17:48:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[posterous]]></category>

		<guid isPermaLink="false">http://anthonygthomas.com/2009/10/29/hey-jude/</guid>
		<description><![CDATA[
  Posted via email   from Truetone  
  Similar Posts:

Hey Jude
What You See Might Not Be Real
Awesome
Via http://shop.neatorama.com/
50 Years of Space Exploration


]]></description>
			<content:encoded><![CDATA[<p><img src="http://posterous.com/getfile/files.posterous.com/truetone/jrehwABqbasylFdaxanrcCIibfiGGjJDfhelGvJacArkxiwkbpociajFEJIx/media_http5mediatumblrcomtumblrkolo40SQZq1qzy3cwo1r1500jpg_uIgdeqdgossxgIq.jpg.scaled500.jpg" width="500" height="667"/>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://truetone.posterous.com/hey-jude-41">Truetone</a>  </p>
<p>  <strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://anthonygthomas.com/2009/10/29/hey-jude/" rel="bookmark" title="October 29, 2009">Hey Jude</a></li>
<li><a href="http://anthonygthomas.com/2009/09/30/what-you-see-might-not-be-real/" rel="bookmark" title="September 30, 2009">What You See Might Not Be Real</a></li>
<li><a href="http://anthonygthomas.com/2009/10/02/awesome/" rel="bookmark" title="October 2, 2009">Awesome</a></li>
<li><a href="http://anthonygthomas.com/2009/10/13/via-httpshop-neatorama-com/" rel="bookmark" title="October 13, 2009">Via http://shop.neatorama.com/</a></li>
<li><a href="http://anthonygthomas.com/2009/10/13/50-years-of-space-exploration/" rel="bookmark" title="October 13, 2009">50 Years of Space Exploration</a></li>
</ul>
<p><!-- Similar Posts took 4.438 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonygthomas.com/2009/10/29/hey-jude/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
