<?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>Dolfo.org</title>
	<atom:link href="http://dolfo.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://dolfo.org</link>
	<description>Dolfo.org is the online portfolio and blog of Jose Cuadra, a freelance Graphic Designer currently located in the Central Florida area who offers Design, Animation and Programming services.</description>
	<lastBuildDate>Wed, 06 Jan 2010 01:03:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Transversing the Display List Correctly</title>
		<link>http://dolfo.org/2009/12/transversing-the-display-list-correctly/</link>
		<comments>http://dolfo.org/2009/12/transversing-the-display-list-correctly/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 01:45:42 +0000</pubDate>
		<dc:creator>Jose Cuadra</dc:creator>
				<category><![CDATA[References]]></category>
		<category><![CDATA[ActionScript]]></category>

		<guid isPermaLink="false">http://dolfo.org/?p=1127</guid>
		<description><![CDATA[
When coming from JavaScript a common mistake when drilling down through objects is that chaining doesn&#8217;t work like you would think in AS3. Yes the languages are similar but here&#8217;s a difference.

DOM
In JavaScript you would transverse the DOM using a method called &#8220;getElementsByTagName().&#8221; You can chain these to dig into the objects.

//This grabs the first [...]]]></description>
			<content:encoded><![CDATA[<p>
When coming from JavaScript a common mistake when drilling down through objects is that chaining doesn&#8217;t work like you would think in AS3. Yes the languages are similar but here&#8217;s a difference.
</p>
<h3>DOM</h3>
<p>In JavaScript you would transverse the DOM using a method called &#8220;getElementsByTagName().&#8221; You can chain these to dig into the objects.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">//This grabs the first input field inside the first div on the page</span>
<span style="color: #003366; font-weight: bold;">var</span> textField <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;div&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;input&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span></pre></div></div>

<p>
Now in ActionScript you can&#8217;t double up on the &#8220;getChildAt()&#8221; method, because that method doesn&#8217;t have a method of &#8220;getChildAt().&#8221; Confused yet?
</p>
<p>
In ActionScript 3 you have to cast the method into an object so you can use the method again to drill down.
</p>
<h3>ActionScript 3</h3>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> sprite:Sprite = <span style="color: #000000; font-weight: bold;">new</span> Sprite<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">var</span> txtField:<span style="color: #0066CC;">TextField</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">TextField</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
txtField.<span style="color: #0066CC;">text</span> = <span style="color: #ff0000;">&quot;something&quot;</span>;
sprite.<span style="color: #006600;">addChild</span><span style="color: #66cc66;">&#40;</span>txtField<span style="color: #66cc66;">&#41;</span>;
<span style="color: #0066CC;">stage</span>.<span style="color: #006600;">addChild</span><span style="color: #66cc66;">&#40;</span>sprite<span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #808080; font-style: italic;">//Cast the object returned to a DisplayObjectContainer </span>
<span style="color: #000000; font-weight: bold;">var</span> path:Sprite = Sprite<span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">stage</span>.<span style="color: #006600;">getChildAt</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span>path.<span style="color: #006600;">getChildAt</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;<span style="color: #808080; font-style: italic;">//[object TextField]</span>
<span style="color: #808080; font-style: italic;">//trace(stage.getChildAt(1).getChildAt(0));//Error - 1061: Call to possibly undefined method getChildAt through reference with static type flash.displa:DisplayObject.</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://dolfo.org/2009/12/transversing-the-display-list-correctly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Font Fight!</title>
		<link>http://dolfo.org/2009/11/font-fight/</link>
		<comments>http://dolfo.org/2009/11/font-fight/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 18:21:11 +0000</pubDate>
		<dc:creator>Jose Cuadra</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Fonts]]></category>

		<guid isPermaLink="false">http://dolfo.org/?p=1112</guid>
		<description><![CDATA[
&#8220;It&#8217;s an all-out typeface-off in our sequel to Font Conference.&#8221; -College Humor





]]></description>
			<content:encoded><![CDATA[<blockquote class="quote" cite="College Humor"><p>
&#8220;It&#8217;s an all-out typeface-off in our sequel to Font Conference.&#8221; -<a href="http://www.collegehumor.com/originals">College Humor</a>
</p></blockquote>
<p class="photo">
<a href="http://www.youtube.com/watch?v=v-GQMCxLkAc"><br />
<img src="http://www.dolfo.org/imgs/blog/11072009.png" title="" alt="" /><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dolfo.org/2009/11/font-fight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Highlights of the Week</title>
		<link>http://dolfo.org/2009/10/twitter-highlights-of-the-week-2/</link>
		<comments>http://dolfo.org/2009/10/twitter-highlights-of-the-week-2/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 01:41:56 +0000</pubDate>
		<dc:creator>Jose Cuadra</dc:creator>
				<category><![CDATA[Archives]]></category>

		<guid isPermaLink="false">http://dolfo.org/?p=1089</guid>
		<description><![CDATA[
A logo just feels better when created in Illustrator.
9:10 AM Oct 22nd from web
Best Pool Sign. &#8220;Welcome to the ool!&#8221; http://bit.ly/CaujH
7:11 AM Oct 21st from bit.ly
RT: @theprodesigner Web &#038; Graphic Design Tips That Will Help You If You Get Stuck http://bit.ly/12yrfs
7:09 AM Oct 21st from web
RT:@petapixel What&#8217;s the life expectancy of your camera? Camera shutter [...]]]></description>
			<content:encoded><![CDATA[<dl class="twitterArchive">
<dt>A logo just feels better when created in Illustrator.</dt>
<dd>9:10 AM Oct 22nd from web</dd>
<dt>Best Pool Sign. &#8220;Welcome to the ool!&#8221; <a href="http://bit.ly/CaujH">http://bit.ly/CaujH</a></dt>
<dd>7:11 AM Oct 21st from bit.ly</dd>
<dt>RT: @theprodesigner Web &#038; Graphic Design Tips That Will Help You If You Get Stuck <a href="http://bit.ly/12yrfs">http://bit.ly/12yrfs</a></dt>
<dd>7:09 AM Oct 21st from web</dd>
<dt>RT:@petapixel What&#8217;s the life expectancy of your camera? Camera shutter life: <a href="http://j.mp/3djbPp">http://j.mp/3djbPp</a></dt>
<dd>7:33 PM Oct 20th from web</dd>
<dt>The Human Pantone by Pierre David <a href="http://bit.ly/KQILg">http://bit.ly/KQILg</a></dt>
<dd>4:48 PM Oct 20th from bit.ly</dd>
<dt>Balancing Work And Social Media Addiction – WorkAwesome <a href="http://bit.ly/3ihINv">http://bit.ly/3ihINv</a></dt>
<dd>7:36 AM Oct 20th from bit.ly</dd>
<dt>Boss Around Photoshop! | CreativePro.com <a href="http://bit.ly/3G3UIM">http://bit.ly/3G3UIM</a> A free plug-in that lets you create custom Photoshop panels in CS4</dt>
<dd>7:33 PM Oct 19th from bit.ly</dd>
<dt>RT: @petapixel Landscape photo of the year 2009: <a href="http://j.mp/2WjOQB">http://j.mp/2WjOQB</a></dt>
<dd>5:36 PM Oct 19th from web</dd>
<dt>Body paint at it&#8217;s best: <a href="http://bit.ly/3w0SXo">http://bit.ly/3w0SXo</a> and <a href="http://bit.ly/36a3ou">http://bit.ly/36a3ou</a> -enjoy @Michael_Zelbel</dt>
<dd>11:10 AM Oct 19th from bit.ly</dd>
<dt>The Mystery of CSS Float Property | Smashing Magazine <a href="http://bit.ly/11moJh">http://bit.ly/11moJh</a></dt>
<dd>11:04 AM Oct 19th from bit.ly</dd>
<dt>Singapore Superhero: Batman Bin Suparman <a href="http://bit.ly/V7sBi">http://bit.ly/V7sBi</a></dt>
<dd>8:17 AM Oct 19th from bit.ly</dd>
<dt>RT: @justdesign By @jggube 7 Things Web Designers Hate Hearing from Clients <a href="http://bit.ly/3FULj0">http://bit.ly/3FULj0</a></dt>
<dd>1:36 AM Oct 19th from web</dd>
<dt>Visual Cheat Sheet: CSS Compatibility with Internet Explorer 6, 7 and 8 | TutorialFeed <a href="http://bit.ly/S6sY1">http://bit.ly/S6sY1</a></dt>
<dd>3:10 PM Oct 18th from bit.ly</dd>
<dt>RT: @assaf RT @deciara: RT @fastcompany: IdeaPaint: Turn Your Entire Office Into a Whiteboard <a href="http://bit.ly/1r7hHR">http://bit.ly/1r7hHR</a> <- I REALLY WANT!</dt>
<dd>4:10 AM Oct 18th from web</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://dolfo.org/2009/10/twitter-highlights-of-the-week-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Highlights of the Week</title>
		<link>http://dolfo.org/2009/10/twitter-highlights-of-the-week/</link>
		<comments>http://dolfo.org/2009/10/twitter-highlights-of-the-week/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 00:44:18 +0000</pubDate>
		<dc:creator>Jose Cuadra</dc:creator>
				<category><![CDATA[Archives]]></category>
		<category><![CDATA[Facial Expressions]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Tweets]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Weekly Highlights]]></category>

		<guid isPermaLink="false">http://dolfo.org/?p=1077</guid>
		<description><![CDATA[
9 Useful Twitter Retweet Button Scripts For Blogs &#124; cheth Studios http://bit.ly/RITHJ
8:24 PM Oct 16th from bit.ly
RT: @AmazingPics An eight year project &#8211; Photographing New York store fronts: http://j.mp/6B6ty (via @petapixel)
4:36 PM Oct 16th from web
RT: @RussAdams Cool Illustrated Facial Expressions http://bit.ly/3PsEeX
11:58 AM Oct 16th from web
RT: @flashtuts Crafty way of drawing attention whilst not [...]]]></description>
			<content:encoded><![CDATA[<dl class="twitterArchive">
<dt>9 Useful Twitter Retweet Button Scripts For Blogs | cheth Studios <a href="http://bit.ly/RITHJ">http://bit.ly/RITHJ</a></dt>
<dd>8:24 PM Oct 16th from bit.ly</dd>
<dt>RT: @AmazingPics An eight year project &#8211; Photographing New York store fronts: <a href="http://j.mp/6B6ty">http://j.mp/6B6ty</a> (via @petapixel)</dt>
<dd>4:36 PM Oct 16th from web</dd>
<dt>RT: @RussAdams Cool Illustrated Facial Expressions <a href="http://bit.ly/3PsEeX">http://bit.ly/3PsEeX</a></dt>
<dd>11:58 AM Oct 16th from web</dd>
<dt>RT: @flashtuts Crafty way of drawing attention whilst not actually having your site up: <a href="http://bit.ly/YB5je">http://bit.ly/YB5je</a> (thnx @netdivermag)</dt>
<dd>10:26 AM Oct 16th from web</dd>
<dt>Find myself waiting for the release of this font: <a href="http://bit.ly/1CXA6b">http://bit.ly/1CXA6b</a></dt>
<dd>8:41 AM Oct 13th from web</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://dolfo.org/2009/10/twitter-highlights-of-the-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brushes, Strokes, and a Photo</title>
		<link>http://dolfo.org/2009/10/brushes-strokes-and-a-photo/</link>
		<comments>http://dolfo.org/2009/10/brushes-strokes-and-a-photo/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 19:10:38 +0000</pubDate>
		<dc:creator>Jose Cuadra</dc:creator>
				<category><![CDATA[Illustrations]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[SketchBook Pro]]></category>

		<guid isPermaLink="false">http://dolfo.org/?p=1066</guid>
		<description><![CDATA[
The other day I dusted off my old Fujitsu tablet and powered up Windows XP with an IE6 browser. (Flash back!) After tinkering for a while I bought a beautiful photo by Alexander Yakovlev to see what effects I could achieve with Sketchbook Pro and Photoshop.



]]></description>
			<content:encoded><![CDATA[<p>
The other day I dusted off my old Fujitsu tablet and powered up Windows XP with an IE6 browser. (Flash back!) After tinkering for a while I bought a beautiful <a href="http://www.stockxpert.com/browse_image/view/9222642">photo</a> by <a href="http://www.ayakovlev.com/">Alexander Yakovlev</a> to see what effects I could achieve with Sketchbook Pro and Photoshop.
</p>
<p class="photo">
<img src="http://www.dolfo.org/imgs/blog/10102009.png" title="" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dolfo.org/2009/10/brushes-strokes-and-a-photo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Funny Superman Shirts</title>
		<link>http://dolfo.org/2009/10/funny-superman-shirts/</link>
		<comments>http://dolfo.org/2009/10/funny-superman-shirts/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 13:40:20 +0000</pubDate>
		<dc:creator>Jose Cuadra</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Superman]]></category>

		<guid isPermaLink="false">http://dolfo.org/?p=1061</guid>
		<description><![CDATA[











]]></description>
			<content:encoded><![CDATA[<p class="photo">
<img src="http://www.dolfo.org/imgs/blog/10092009/fly.png" title="" alt="" />
</p>
<p><span id="more-1061"></span></p>
<p class="photo">
<img src="http://www.dolfo.org/imgs/blog/10092009/friends.png" title="" alt="" />
</p>
<p class="photo">
<img src="http://www.dolfo.org/imgs/blog/10092009/kiss.png" title="" alt="" />
</p>
<p class="photo">
<img src="http://www.dolfo.org/imgs/blog/10092009/sayno.png" title="" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dolfo.org/2009/10/funny-superman-shirts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>From Work Path to Shape Layer</title>
		<link>http://dolfo.org/2009/10/from-work-path-to-shape-layer/</link>
		<comments>http://dolfo.org/2009/10/from-work-path-to-shape-layer/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 18:30:36 +0000</pubDate>
		<dc:creator>Jose Cuadra</dc:creator>
				<category><![CDATA[References]]></category>
		<category><![CDATA[101]]></category>
		<category><![CDATA[Layers]]></category>
		<category><![CDATA[Pen Tool]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Shape Layers]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Work Paths]]></category>

		<guid isPermaLink="false">http://dolfo.org/?p=1029</guid>
		<description><![CDATA[After Creating a Path&#8230;

Select the path with the Direct Selection Tool.
Translation: Take the white arrow in your toolbar and click on the path. The anchor points will appear letting you know it&#8217;s selected.
Create new fill or adjustment layer.
Translation: Click on the half white/half black circular icon at the bottom of the layers panel. From the [...]]]></description>
			<content:encoded><![CDATA[<p>After Creating a Path&#8230;</p>
<dl class="lists">
<dt>Select the path with the <span class="tools directSelection">Direct Selection Tool.</span></dt>
<dd>Translation: Take the white arrow in your toolbar and click on the path. The anchor points will appear letting you know it&#8217;s selected.</dd>
<dt><span class="tools adjustmentLayer">Create new fill or adjustment layer.</span></dt>
<dd>Translation: Click on the half white/half black circular icon at the bottom of the layers panel. From the pop up select the type of layer you wish to create. (Solid, Gradient, Pattern, etc.)</dd>
</dl>
<p>
A Vector Mask generated from your Path will now be included in the layer you just created.</p>
]]></content:encoded>
			<wfw:commentRss>http://dolfo.org/2009/10/from-work-path-to-shape-layer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Definitive List of Adobe Alternatives</title>
		<link>http://dolfo.org/2009/09/the-definitive-list-of-adobe-alternatives/</link>
		<comments>http://dolfo.org/2009/09/the-definitive-list-of-adobe-alternatives/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 18:07:23 +0000</pubDate>
		<dc:creator>Jose Cuadra</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://dolfo.org/?p=861</guid>
		<description><![CDATA[
It&#8217;s pretty safe to say Adobe has cornered the market on software used for media. Check out some alternatives to the Adobe Empire and feel free to add your own. Remember when Macromedia was the under dog?


Alternatives to the Suite
These suites, or collection of tools provide alternatives to multiple Adobe applications under one umbrella.

Aviary
Aviary is [...]]]></description>
			<content:encoded><![CDATA[<p>
It&#8217;s pretty safe to say Adobe has cornered the market on software used for media. Check out some alternatives to the Adobe Empire and feel free to add your own. Remember when Macromedia was the under dog?
</p>
<p><span id="more-861"></span></p>
<h3>Alternatives to the Suite</h3>
<p>These suites, or collection of tools provide alternatives to multiple Adobe applications under one umbrella.</p>
<dl class="lists">
<dt><a href="http://aviary.com/">Aviary</a></dt>
<dd>Aviary is on a mission to make creation accessible to artists of all genres, from graphic design to audio editing.</dd>
</dl>
<h3>Photoshop Alternatives</h3>
<dl class="lists">
<dt><a href="http://www.splashup.com/">Splashup</a></dt>
<dd></dd>
<dt><a href="http://www.gimp.org/">GIMP</a></dt>
<dd></dd>
<dt><a href="http://paint.net/">Paint.NET</a></dt>
<dd></dd>
<dt><a href="http://www.pixelmator.com/">Pixelmator</a></dt>
</dl>
<h3>Dreamweaver Alternatives</h3>
<dl class="lists">
<dt><a href="http://tacosw.com/">Tacosw</a></dt>
<dd></dd>
<dt><a href="http://www.kompozer.net/">Kompozer</a></dt>
<dd></dd>
<dt><a href="http://bluefish.openoffice.nl/">Bluefish</a></dt>
<dd></dd>
</dl>
<h3>Illustrator Alternatives</h3>
<dl class="lists">
<dt><a href="http://www.inkscape.org/">Inkscape</a></dt>
<dd></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://dolfo.org/2009/09/the-definitive-list-of-adobe-alternatives/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CFCACHE, IE, CSS and XHTML</title>
		<link>http://dolfo.org/2009/09/cfcache-ie-css-and-xhtml/</link>
		<comments>http://dolfo.org/2009/09/cfcache-ie-css-and-xhtml/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 06:42:51 +0000</pubDate>
		<dc:creator>Jose Cuadra</dc:creator>
				<category><![CDATA[References]]></category>
		<category><![CDATA[CFCACHE]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Markup]]></category>
		<category><![CDATA[Quirks Mode]]></category>
		<category><![CDATA[Standards Mode]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://dolfo.org/?p=954</guid>
		<description><![CDATA[
Yesterday I experienced an unusual rendering issue in Internet Explorer. The entire layout was aligning left and a couple z-index declarations were being ignored. Usually you can fix the minor issues with some Conditional Comments but these inconsistencies were too great to blame on the Trident Layout Engine(MSHTML). Besides, before I added Coldfusion to the [...]]]></description>
			<content:encoded><![CDATA[<p>
Yesterday I experienced an unusual rendering issue in Internet Explorer. The entire layout was aligning left and a couple z-index declarations were being ignored. Usually you can fix the minor issues with some <a href="http://dolfo.org/2009/02/ie-conditional-comments/">Conditional Comments</a> but these inconsistencies were too great to blame on the <a href="http://en.wikipedia.org/wiki/Trident_(layout_engine)">Trident Layout Engine(MSHTML)</a>. Besides, before I added Coldfusion to the mix it rendered properly in every browser.
</p>
<p><span id="more-954"></span></p>
<p>
After painstakingly crawling over the final generated markup I found the only difference from the local version that worked perfectly was a comment implanted before the doc type declaration. Apparently placed there by Coldfusion. Running a global search for the commented string yielded no results which suggested to me that it had to be dynamically written or the result of some type of function where the string was not hard coded.
</p>
<h3>Problem</h3>
<p>
During some research I found that when having Coldfusions <a href="http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_c_01.html">CFCACHE</a> tag in play the application inserts a comment before any other markup. This throws Internet Explorer into &#8220;Quirks Mode&#8221; in IE 6 and 7 and &#8220;Standards Mode&#8221; in IE8 if using an XHTML Strict Doctype. Needless to say this ruins any CSS layout you may have created.
</p>
<p>
This has been a known issue for versions 6, 7 and 8 of Coldfusion(Supposedly fixed in release 8.0.1 even though some users are still getting the comment).
</p>
<h3>Solution</h3>
<p>
Obviously disabling CFCACHE would be ideal but if you did not have permission or access to do so the next fix should work.
</p>
<p>
Adding the below tag at the beginning of the document will force the content to be rendered as text/html abiding by the rules and eliminating the comment.
</p>

<div class="wp_syntax"><div class="code"><pre class="coldfusion" style="font-family:monospace;">&lt;cfcontent type=&quot;text/html&quot;&gt;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://dolfo.org/2009/09/cfcache-ie-css-and-xhtml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Type Doc Re-Released</title>
		<link>http://dolfo.org/2009/08/type-doc-re-released/</link>
		<comments>http://dolfo.org/2009/08/type-doc-re-released/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 16:15:44 +0000</pubDate>
		<dc:creator>Jose Cuadra</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Editor]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://dolfo.org/?p=938</guid>
		<description><![CDATA[
Type Doc has been rewritten and released for a second round! Typedoc is simply a CSS and XHTML editor that runs in your browser with the help of jQuery. You can save the document locally or use the provided link for any purpose you have.


Demo

Typedoc Demo


Currently Typedoc is set up to be used as a [...]]]></description>
			<content:encoded><![CDATA[<p>
Type Doc has been rewritten and released for a second round! Typedoc is simply a CSS and XHTML editor that runs in your browser with the help of <a href="http://jquery.com/">jQuery</a>. You can save the document locally or use the provided link for any purpose you have.
</p>
<p><span id="more-938"></span></p>
<h3>Demo</h3>
<p>
<a class="demo" href="http://dolfo.org/apps/typedoc/">Typedoc Demo</a>
</p>
<p>
Currently Typedoc is set up to be used as a jQuery plugin. After a couple of bugs are worked out I will make it available for everyone.
</p>
<p>
Any feedback would be appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://dolfo.org/2009/08/type-doc-re-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
