<?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>E-com DevBlog &#187; Training Sessions</title>
	<atom:link href="http://dev.tonic1394.com/category/training-sessions/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev.tonic1394.com</link>
	<description>Spider-ball-vacuum</description>
	<lastBuildDate>Wed, 08 Sep 2010 13:03:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Lynda.com ~ Air for Flex Developers</title>
		<link>http://dev.tonic1394.com/2009/11/lynda-com-air-for-flex-developers/</link>
		<comments>http://dev.tonic1394.com/2009/11/lynda-com-air-for-flex-developers/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 16:55:59 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Training Sessions]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dev.tonic1394.com/?p=378</guid>
		<description><![CDATA[I'll make this short, lets say you have a lynda.com license and you are using their very fine service to enhance your understanding of AIR by means of Flex.  You download the exercise files (cos you've got the cool account) and you throw them in your file system, install flex builder 3, you are all [...]]]></description>
			<content:encoded><![CDATA[<p>I'll make this short, lets say you have a lynda.com license and you are using their very fine service to enhance your understanding of AIR by means of Flex.  You download the exercise files (cos you've got the cool account) and you throw them in your file system, install flex builder 3, you are all set.  So you crack open flex builder and import the flex project archive you received from lynda.com, only the problem is when you click run nothing happens and when you click debug it tells you "error while loading initial content".  You google like a mad-man trying to find an answer and get everything from, 'upgrade your flex sdk' to 'kill a chicken... twice'.  Turns out that while these may fix some issues, what you really need to do is fix your namespace.  Seriously that's it, just change the namespace.</p>
<p>Open your config .xml file and find this line:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p378code3'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p3783"><td class="code" id="p378code3"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;application</span> <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;">&quot;http://ns.adobe.com/air/application/1.0&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span></pre></td></tr></table></div>

<p>See the "1.0" on the end? That's your problem, see you are probably developing with AIR 1.5 (and why wouldn't you?), not AIR 1.0. So change the line to read</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p378code4'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p3784"><td class="code" id="p378code4"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;application</span> <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;">&quot;http://ns.adobe.com/air/application/1.5&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span></pre></td></tr></table></div>

<p>Save the file and relaunch/debug your app.  It should run like a champ now. On the upside, maybe lynda will find this post and fix their example files.  Until then, this trick should keep you going.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.tonic1394.com/2009/11/lynda-com-air-for-flex-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing jTrace v1.0</title>
		<link>http://dev.tonic1394.com/2009/05/introducing-jtrace-v10/</link>
		<comments>http://dev.tonic1394.com/2009/05/introducing-jtrace-v10/#comments</comments>
		<pubDate>Tue, 26 May 2009 00:13:45 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Training Sessions]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dev.tonic1394.com/?p=332</guid>
		<description><![CDATA[I've been working on a tool for javascript developers. It all started after searching the web for some form of tracing tool I could use when writing javascript so I could see why a certain function wasn't firing. I only found a handful of solutions (and none that I was very impressed by). So I [...]]]></description>
			<content:encoded><![CDATA[<p>I've been working on a tool for javascript developers.  It all started after searching the web for some form of tracing tool I could use when writing javascript so I could see why a certain function wasn't firing. I only found a handful of solutions (and none that I was very impressed by). So I finally ended up coding one myself.</p>
<p>So I give you, <a title="jTrace - javascript tracing for the peoples" href="http://labs.dutsonpa.com/projects/jtrace/index.html" target="_blank">jTrace - javascript tracing for the peoples</a> (say that last part like <a title="Strong Bad Email - The original Video Podcaster...ish" href="http://www.homestarrunner.com/sbemail.html" target="_blank">strong-bad</a> to get the full effect).</p>
<p>I coded jTrace with jQuery 1.3.2 (as an include... not so much a plugin, although that's what I usually call it), and then I created a 'bloated' version that has jQuery included inside of it (for all you mooTools and prototypers out there... I got your back <img src='http://dev.tonic1394.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ).  For those who use the bloated version, yeah I coded the jQuery portion to use 'jQuery(...' instead of '$(...' for the selectors so it shouldn't break your exisiting code.</p>
<p>To get an in-depth approach on jTrace and how to use it, head over the '<a title="How to use jTrace in your projects" href="http://labs.dutsonpa.com/projects/jtrace/usage.html" target="_blank">usage</a>' page on the jTrace site.</p>
<p>Have questions, comments, or props? Leave them here in the comments, thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.tonic1394.com/2009/05/introducing-jtrace-v10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Developer Training &#8211; jQuery</title>
		<link>http://dev.tonic1394.com/2008/11/web-developer-training-jquery/</link>
		<comments>http://dev.tonic1394.com/2008/11/web-developer-training-jquery/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 21:06:00 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Training Sessions]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[selector]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[zebra]]></category>

		<guid isPermaLink="false">http://dev.tonic1394.com/?p=178</guid>
		<description><![CDATA[And now for our quarterly Web Developer Training (because monthly just wasn't happening).  This quarters training is on the infamous (and my personal favorite js framework) jQuery.  After recieving some requests for a training session on it, I finally got one put together and hope that it benefits everyone in some way.  Also this training [...]]]></description>
			<content:encoded><![CDATA[<p>And now for our quarterly Web Developer Training (because monthly just wasn't happening).  This quarters training is on the infamous (and my personal favorite js framework) jQuery.  After recieving some requests for a training session on it, I finally got one put together and hope that it benefits everyone in some way.  Also this training is sampling my new training template (not that the old team awesome template wasn't good enough, it just... well it wasn't as cool as this one <img src='http://dev.tonic1394.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ) If you have any questions etc. throw them in the comments.  Enjoy!</p>
<p><a title="Web Developer Training - jQuery" href="http://dev.tonic1394.com/minisites/jquery" target="_blank">Web Developer Training - jQuery</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dev.tonic1394.com/2008/11/web-developer-training-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mini Web Dev Training &#8211; Nefarious Video Tactics</title>
		<link>http://dev.tonic1394.com/2008/10/mini-web-dev-training-nefarious-video-tactics/</link>
		<comments>http://dev.tonic1394.com/2008/10/mini-web-dev-training-nefarious-video-tactics/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 19:10:37 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Training Sessions]]></category>
		<category><![CDATA[avi]]></category>
		<category><![CDATA[Developer Training]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[rip]]></category>
		<category><![CDATA[super]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://dev.tonic1394.com/?p=127</guid>
		<description><![CDATA[So Branden was asking me this morning for help on acquiring a news video clip from msnbc.com.  There are several and many ways one could tackle this issue.  He had already aquired the video, but the audio wasn't coming with it.  Now I'm not 100% sure on how he grabbed the video (I didn't really [...]]]></description>
			<content:encoded><![CDATA[<p>So Branden was asking me this morning for help on acquiring a news video clip from msnbc.com.  There are several and many ways one could tackle this issue.  He had already aquired the video, but the audio wasn't coming with it.  Now I'm not 100% sure on how he grabbed the video (I didn't really ask), but I'm thinking he used a screen recorder.  That usually works, but sometimes it doesn't capture the audio, and that can be for a myriad of reasons.  So what did I do to aquire the video for him?</p>
<p>1- Go and grab <a title="TubeMaster Plus" href="http://tubemaster.free.fr/" target="_blank">TubeMaster Plus</a>.  This is a handy little tool that has a built in browser that lets you surf to a page and then grab any streaming video (complete with audio) from it.  While the interface is a bit clunky, it is somewhat intuitive.  It also does have a built-in "tutorial" site built into it to help you get started.  The biggest help for me was if I had been told it was a stand-alone client, meaning no IE of FF needed, just throw the link on the main page and it will use the internal browser to render the page and aquire the video.  Note that the video should come down as an FLV, you can either convert it inside TMPlus, or use your favorite software to do the encoding.</p>
<p>2- Go and get <a title="MediaInfo on Sourceforge" href="http://mediainfo.sourceforge.net/" target="_blank">MediaInfo</a>.  This is a handy little app that will tell you the bitrate, video resolution, fps, etc of any media file.  Open the FLV in MediaInfo and checkout the video bit-rate, the frame-size, and the audio encoding.  Generally I leave this window up.</p>
<p>3- Use <a title="SUPER - Offical Site" href="http://www.erightsoft.com/SUPER.html" target="_blank">SUPER</a> to re-encode/transcode the file into a format more suitable for your use.  SUPER is a rough program to download, I'm not sure if the authors actually enjoy torture, or just can't build a web-page to save their own life, so instead of grabbing it at the offical source, grab SUPER from somewhere trustworthy, like <a title="SUPER - Hosted on Afterdawn.com" href="http://www.afterdawn.com/software/video_software/video_encoders/super.cfm" target="_blank">AfterDawn.com</a> (yes the site name sounds like it could be naughty, but it's not, they've been on the scene with video encoding since just about the birth of AngelPotion, and if you got that reference, you just gained a little of my respect <img src='http://dev.tonic1394.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ).</p>
<p>4- When SUPER is done encoding, enjoy your video.  A simple solution to your video ripping problems.</p>
<p>Other sites/tools you can use to aquire your favorite online videos.</p>
<ul>
<li><a title="YouTube Ripper" href="http://www.ripzor.com/youtuberipper.html" target="_blank">YouTube Ripper (webservice) </a>- Just paste the YouTube link in the box and then right-click and save the flv.</li>
<li><a title="LiveHTTPHeaders - Hosted by Mozilla" href="http://livehttpheaders.mozdev.org/" target="_blank">LiveHTTPHeaders</a> - (Firefox plugin, manual, and painful)</li>
<li><a title="Fiddler2 - Web debugger for IE" href="http://www.fiddler2.com/" target="_blank">Fiddler2</a>/httpspy - (IE plugins, manual, and painful - note that httpspy has become difficult to find... extremely difficult to find, and there is another program out in the wild that is NOT the same.  Consult the Ninja on the offical version)</li>
</ul>
<p>If you need pictures I can create an actual Developer Training (with a minisite), but for now, I'm hoping the text will do.  If you have questions or need more examples etc.  Leave a comment and I'll get on it.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.tonic1394.com/2008/10/mini-web-dev-training-nefarious-video-tactics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Developer Training: Compression</title>
		<link>http://dev.tonic1394.com/2008/07/web-developer-training-compression/</link>
		<comments>http://dev.tonic1394.com/2008/07/web-developer-training-compression/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 16:05:09 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Training Sessions]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[deflate]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[dojo]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jsmin]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[packer]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[xampp]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://dev.tonic1394.com/?p=60</guid>
		<description><![CDATA[I may be jumping the gun here, but I thought I'd post the training a day early.  Yes that's right, I have another training session that may be of interest.  This one has to do with gzip/deflate and various js compression engines (JSMin, PACKER, and YUI).  I may have thrown some other things in there, [...]]]></description>
			<content:encoded><![CDATA[<p>I may be jumping the gun here, but I thought I'd post the training a day early.  Yes that's right, I have another training session that may be of interest.  This one has to do with gzip/deflate and various js compression engines (JSMin, PACKER, and YUI).  I may have thrown some other things in there, but I wrote most of this last week, so I can't really remember <img src='http://dev.tonic1394.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Let me know if there are bugs to be fixed, or if you have anything you'd like to add.</p>
<p><a title="Web Developer Training: Compression" href="http://dev.tonic1394.com/minisites/compression/index.html" target="_blank">Web Developer Training: Compression</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dev.tonic1394.com/2008/07/web-developer-training-compression/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Developer Training &#8211; Sprites</title>
		<link>http://dev.tonic1394.com/2008/07/developer-training-sprites/</link>
		<comments>http://dev.tonic1394.com/2008/07/developer-training-sprites/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 19:54:29 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Training Sessions]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[sprites]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[web developer]]></category>

		<guid isPermaLink="false">http://dev.tonic1394.com/?p=48</guid>
		<description><![CDATA[Short post... because the full post is a minisite.  The goodness of sprites cannot be discounted.  They make for a faster site and a better user experience (except for your poorly cache-managed mobile devices... and for that the site really should implement agent identification and direct them to a smaller version of your site anyway).  [...]]]></description>
			<content:encoded><![CDATA[<p>Short post... because the full post is a minisite.  The goodness of sprites cannot be discounted.  They make for a faster site and a better user experience (except for your poorly cache-managed mobile devices... and for that the site really should implement agent identification and direct them to a smaller version of your site anyway).  Anyway you can get the full scoop out on the tutorial-minisite.</p>
<p><a title="Sprites Tutorial" href="http://dev.tonic1394.com/minisites/sprites/index.html" target="_blank">Developer Training - Sprites (sponsered by Team Awesome)</a></p>
<p>Enjoy, and feel free to drop a comment or two <img src='http://dev.tonic1394.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://dev.tonic1394.com/2008/07/developer-training-sprites/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Weekly Training &#8211; Debugging</title>
		<link>http://dev.tonic1394.com/2008/04/weekly-training-debugging/</link>
		<comments>http://dev.tonic1394.com/2008/04/weekly-training-debugging/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 17:51:15 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Training Sessions]]></category>
		<category><![CDATA[Websphere Commerce]]></category>
		<category><![CDATA[aardvark]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[drew]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[rational]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[weekly]]></category>
		<category><![CDATA[xray]]></category>

		<guid isPermaLink="false">http://dev.tonic1394.com/?p=23</guid>
		<description><![CDATA[It's time to learn how to get the bugs out. This week we covered basic debugging (from starting the server) to using some external tools (such as the fantastic Firebug plug-in). For the full show you can check the audio clip at the end (I'll post it when I'm done 'cleaning' it). Highlights: Rational debugging [...]]]></description>
			<content:encoded><![CDATA[<p>It's time to learn how to get the bugs out.  This week we covered basic debugging (from starting the server) to using some external tools (such as the fantastic Firebug plug-in).  For the full show you can check the audio clip at the end (I'll post it when I'm done 'cleaning' it).</p>
<p>Highlights:</p>
<ul>
<li> Rational debugging mode</li>
<li>Firebug (for both CSS editing and javascript debugging)</li>
<li>Drew's fantastic commentary as nothing works the way he intends (for the first 20-ish minutes)</li>
<li>My extremely long pause... that I think I may still be on.</li>
</ul>
<p>On a side note, there are two other tools that are very helpful when trying to debug or develop on IE, Safari, Linux browsers, etc.  They are XRAY and Aardvark, and both are bookmarklets (meaning you bookmark the javascript itself and run it when you need it, similar to a bookmark).</p>
<p>XRAY can be found here <span style="font-size: 11pt; font-family: 'Calibri','sans-serif';"><a href="http://www.westciv.com/xray/">http://www.westciv.com/xray/</a>. </span></p>
<p>Aardvark can be found here <span style="font-size: 11pt; font-family: 'Calibri','sans-serif';"><a href="http://karmatics.com/aardvark/bookmarklet.html">http://karmatics.com/aardvark/bookmarklet.html</a></span>.</p>
<p>Audio clip will be here when I'm done editing it...  UPDATE: Or it won't, looks like my sansa destroyed the file, I mean it's still there, just not in a format that any program can read...  I may still play with this, but I'm thinking it's a lost cause... sorry <img src='http://dev.tonic1394.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://dev.tonic1394.com/2008/04/weekly-training-debugging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Table Style Training</title>
		<link>http://dev.tonic1394.com/2008/02/table-style-training/</link>
		<comments>http://dev.tonic1394.com/2008/02/table-style-training/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 07:35:42 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Training Sessions]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[weekly]]></category>

		<guid isPermaLink="false">http://dev.tonic1394.com/?p=16</guid>
		<description><![CDATA[Today we had a very good lesson on the correct way to style and set up good looking tables. Just as a quick recap, I'll post highlights from the html and css here, as well as the original audio from the training session (40ish minutes). Here is an example of a table well thought out [...]]]></description>
			<content:encoded><![CDATA[<p>Today we had a very good lesson on the correct way to style and set up good looking tables.  Just as a quick recap, I'll post highlights from the html and css here, as well as the original audio from the training session (40ish minutes).<br />
Here is an example of a table well thought out and coded correctly.  Notice the use of classes to facilitate the css in controlling the visual flow of the table.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p16code7'); return false;">View Code</a> HTML4STRICT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p167"><td class="code" id="p16code7"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/table.html"><span style="color: #000000; font-weight: bold;">table</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;standard-table&quot;</span> <span style="color: #000066;">cellspacing</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;0&quot;</span>&gt;</span>
	<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/th.html"><span style="color: #000000; font-weight: bold;">th</span></a>&gt;</span>Column 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/th.html"><span style="color: #000000; font-weight: bold;">th</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/th.html"><span style="color: #000000; font-weight: bold;">th</span></a>&gt;</span>Column 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/th.html"><span style="color: #000000; font-weight: bold;">th</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/th.html"><span style="color: #000000; font-weight: bold;">th</span></a>&gt;</span>Column 3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/th.html"><span style="color: #000000; font-weight: bold;">th</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/th.html"><span style="color: #000000; font-weight: bold;">th</span></a>&gt;</span>Column 4<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/th.html"><span style="color: #000000; font-weight: bold;">th</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;lightrow&quot;</span>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;60&quot;</span>&gt;</span>Value 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 4<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;darkrow&quot;</span>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 4<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;lightrow&quot;</span>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 4<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;darkrow&quot;</span>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 4<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;lightrow&quot;</span>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>Value 4<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/table.html"><span style="color: #000000; font-weight: bold;">table</span></a>&gt;</span></pre></td></tr></table></div>

<p>Also note, that WordPress absolutly destroys any layout and aligns everything to the left (argh!)  Anyway, pressing on, here is a From Table, again well thought out and designed correctly.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p16code8'); return false;">View Code</a> HTML4STRICT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p168"><td class="code" id="p16code8"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/table.html"><span style="color: #000000; font-weight: bold;">table</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;form-table&quot;</span> <span style="color: #000066;">cellspacing</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;0&quot;</span>&gt;</span>
	<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a> <span style="color: #000066;">rowspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;description&quot;</span>&gt;</span>Name:<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;&lt;<a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">input</span></a> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;&lt;<a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">input</span></a> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;description&quot;</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;&lt;<a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">input</span></a> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;description&quot;</span>&gt;</span>City:<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;&lt;<a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">input</span></a> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;description&quot;</span>&gt;</span>State:<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;&lt;<a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">input</span></a> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;description&quot;</span>&gt;</span>Zip Code:<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
		<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;&lt;<a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">input</span></a> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">td</span></a>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">tr</span></a>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/table.html"><span style="color: #000000; font-weight: bold;">table</span></a>&gt;</span></pre></td></tr></table></div>

<p>Now if you find yourself wishing you could see the original files, well you can.  Simply grab them from <a title="Complete Training File" href="http://dev.tonic1394.com/files/Training_Feb212008.zip">here</a>.  Also, if you happen to have your "Bulletproof Web Design" by Dan Cederholm handy you can flip to page 153 and start reading there.  I'd also post some css, but the post is getting rather lengthy as is so just grab the zip file to see the fully stylesheet.</p>
<p>And now the part you've been waiting for ...<br />
<a title="Table Training Feb 21 2008" href="http://dev.tonic1394.com/audio/TableTrainingFeb212008.mp3" target="_blank">The audio from the training</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.tonic1394.com/2008/02/table-style-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://dev.tonic1394.com/audio/TableTrainingFeb212008.mp3" length="12263424" type="audio/x-mpeg" />
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.592 seconds -->
