<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Robertdot, A Web Design Blog</title>
	
	<link>http://robertdot.org</link>
	<description>A web design blog for designers that develop or developers that design.</description>
	<lastBuildDate>Tue, 25 Jan 2011 20:43:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/robertdot" /><feedburner:info uri="robertdot" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Adobe Contribute CS5 Repeatable Regions Broken On Edit</title>
		<link>http://feedproxy.google.com/~r/robertdot/~3/Z4sfFQu5GDo/</link>
		<comments>http://robertdot.org/2011/01/25/adobe-contribute-cs5-repeatable-regions-broken-on-edit/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 20:43:41 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Contribute]]></category>

		<guid isPermaLink="false">http://robertdot.org/?p=197</guid>
		<description><![CDATA[I&#8217;ve been working on some Contribute templates for a client. I noticed that repeatable regions weren&#8217;t working right. Instead of adding a new item to the region when clicking the plus (or deleting when clicking the minus), the &#8220;cursor&#8221; would simply move to the next item. The only other reference I could find to the [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been working on some Contribute templates for a client.  I noticed that repeatable regions weren&#8217;t working right.  Instead of adding a new item to the region when clicking the plus (or deleting when clicking the minus), the &#8220;cursor&#8221; would simply move to the next item.  The only other reference I could find to the problem was <a href="http://www.justskins.com/forums/contribute-repeating-region-glitches-53732.html">some random, unresolved thread on some website I&#8217;ve never heard of</a>.</p>
<p>After a lot of digging around in the code, I figured out the problem.  If your template includes another file that has repeatable regions, the repeatable regions in your main template will stop working when you edit the page again.  As described, the cursor will move up and down the existing regions instead of adding new regions.</p>
<p>For example, I have a navigation template that has repeatable regions.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="htmlstrict" style="font-family:monospace;">&lt;ul id=&quot;nav&quot;&gt;
&lt;!-- TemplateBeginRepeat name=&quot;Navigation&quot; --&gt; 
&lt;li&gt;&lt;!-- TemplateBeginEditable name=&quot;Nav Item&quot; --&gt;&lt;a href=&quot;#&quot;&gt;Home&lt;/a&gt;&lt;!-- TemplateEndEditable --&gt;&lt;/li&gt;
&lt;!-- TemplateEndRepeat --&gt; 
&lt;/ul&gt;</pre></td></tr></table></div>

<p>I included that file via the standard PHP include <code><?php include "nav.php" ?></code>.  When editing, Contribute seemed to get confused about the repeatable regions in the navigation when Contribute manually imported the navigation file.</p>
<p>The fix is either to not use repeatable regions in your include files (not an option) or to trick Contribute into not trying to include the included file.  Contribute is at least smart enough to know how to do the standard PHP includes.  So, I had to break a rule and use <code>eval</code> like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">eval</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;include('./nav.php');&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>PHP <code>eval</code>s the string and ultimately includes the file.  Contribute doesn&#8217;t understand the code and does nothing, which removes the problematic code and causes repeatable regions to work as expected.</p>
<img src="http://feeds.feedburner.com/~r/robertdot/~4/Z4sfFQu5GDo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertdot.org/2011/01/25/adobe-contribute-cs5-repeatable-regions-broken-on-edit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertdot.org/2011/01/25/adobe-contribute-cs5-repeatable-regions-broken-on-edit/</feedburner:origLink></item>
		<item>
		<title>Getting Around Onload in Flash</title>
		<link>http://feedproxy.google.com/~r/robertdot/~3/o8KLmDqZf9M/</link>
		<comments>http://robertdot.org/2010/03/05/getting-around-onload-in-flash/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 15:59:57 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://robertdot.org/?p=194</guid>
		<description><![CDATA[I&#8217;ve been doing some Flash work recently and ran into a conundrum. You can&#8217;t create an empty movie clip, load a movie in it, and do a movie.onload=function(){...}. There are lots of work arounds, but here&#8217;s the one I just came up with that I liked. function loadMyMovie&#40;clipName, depth, loadInClip, funcbefore, funcafter&#41; &#123; var watchLoad [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been doing some Flash work recently and ran into a conundrum.  You can&#8217;t create an empty movie clip, load a movie in it, and do a <code>movie.onload=function(){...}</code>.  There are lots of work arounds, but here&#8217;s the one I just came up with that I liked.</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> loadMyMovie<span style="color: #66cc66;">&#40;</span>clipName, depth, loadInClip, funcbefore, funcafter<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">var</span> watchLoad = <span style="color: #000000; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
		<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">_root</span><span style="color: #66cc66;">&#91;</span>clipName<span style="color: #66cc66;">&#93;</span>.<span style="color: #0066CC;">getBytesLoaded</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> == <span style="color: #0066CC;">_root</span><span style="color: #66cc66;">&#91;</span>clipName<span style="color: #66cc66;">&#93;</span>.<span style="color: #0066CC;">getBytesTotal</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&amp;&amp;</span> <span style="color: #0066CC;">_root</span><span style="color: #66cc66;">&#91;</span>clipName<span style="color: #66cc66;">&#93;</span>.<span style="color: #0066CC;">getBytesTotal</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
			funcafter.<span style="color: #0066CC;">call</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
		<span style="color: #66cc66;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #66cc66;">&#123;</span>
			setTimeout<span style="color: #66cc66;">&#40;</span>watchLoad,<span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span>;
		<span style="color: #66cc66;">&#125;</span>
	<span style="color: #66cc66;">&#125;</span>;
	<span style="color: #0066CC;">_root</span>.<span style="color: #0066CC;">createEmptyMovieClip</span><span style="color: #66cc66;">&#40;</span>clipName, depth<span style="color: #66cc66;">&#41;</span>;
	<span style="color: #0066CC;">_root</span><span style="color: #66cc66;">&#91;</span>clipName<span style="color: #66cc66;">&#93;</span>.<span style="color: #0066CC;">loadMovie</span><span style="color: #66cc66;">&#40;</span>loadInClip<span style="color: #66cc66;">&#41;</span>;
	funcbefore.<span style="color: #0066CC;">call</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
	watchLoad<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span></pre></td></tr></table></div>

<p><code>funcbefore</code> and <code>funcafter</code> should be the functions that show and hide your loading message.</p>
<p>I haven&#8217;t tested this exact bit of code, but that&#8217;s the basic principle.</p>
<img src="http://feeds.feedburner.com/~r/robertdot/~4/o8KLmDqZf9M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertdot.org/2010/03/05/getting-around-onload-in-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertdot.org/2010/03/05/getting-around-onload-in-flash/</feedburner:origLink></item>
		<item>
		<title>Two Odd IE Behaviors</title>
		<link>http://feedproxy.google.com/~r/robertdot/~3/GNRWeYzojXU/</link>
		<comments>http://robertdot.org/2009/10/12/two-odd-ie-behaviors/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 15:17:12 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://robertdot.org/?p=191</guid>
		<description><![CDATA[I noticed two odd Internet Explorer (or IE for short) behaviors while I was working on a beta version of a network tools app my boss wanted. I also figured out the workaround. Dynamically Visible DIVs Don&#8217;t Appear I used a tab-based navigation for the beta version. When you click on a tab (composed of [...]]]></description>
				<content:encoded><![CDATA[<p>
 I noticed two odd Internet Explorer (or IE for short) behaviors while I was working on a beta version of a <a href="http://inetfor.us/">network tools app</a> my boss wanted.  I also figured out the workaround.
</p>
<h3>Dynamically Visible <code>DIV</code>s Don&#8217;t Appear</h3>
<p>
 I used a tab-based navigation for the beta version.  When you click on a tab (composed of an <code>h2</code> and an <code>a</code>), the corresponding <code>div</code> would appear, hiding all the others.  This was achieved by adding and removing a value in the <code>.className</code>.  In IE, though, the tab would work for two tabs, but would only hide tabs after that.  The new tab wouldn&#8217;t appear.
</p>
<p>
 To make matters worse, if I <code>alert</code>ed something in the loop that set or unset the <code>.className</code>s, it would work.  I tried various things like <code>.display="none"</code> while I was modifying things, then setting it back to <code>block</code> when I was done, but none worked.
</p>
<p>
 The solution turns out to be that you need to remove the container element, then reinsert it.  For example:
</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">var</span> tabcont <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'tab-container'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
	pn <span style="color: #339933;">=</span> tabcont.<span style="color: #660066;">parentNode</span><span style="color: #339933;">,</span>
	ns <span style="color: #339933;">=</span> tabcont.<span style="color: #660066;">nextSibling</span><span style="color: #339933;">;</span>
pn.<span style="color: #660066;">insertBefore</span><span style="color: #009900;">&#40;</span>pn.<span style="color: #660066;">removeChild</span><span style="color: #009900;">&#40;</span>tabcont<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> ns<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h3><abbr title="Document Object Model">DOM</abbr> Created <code>TABLE</code>s Don&#8217;t Show Content</h3>
<p>
 I also needed to dynamically create tables.  This can be done via straight text with <code>.innerHTML</code> or via the DOM with <code>document.createElement</code> and <code>.appendChild</code>.  In some areas, the <code>table</code>s could use <code>thead</code> because the row headers were on top of the table.  Other times, the <code>th</code> was in the same <code>tr</code> as the <code>td</code> it matches.
</p>
<p>
 In instances where there was a <code>thead</code>, I also created a <code>tbody</code>.  Where there weren&#8217;t, I didn&#8217;t bother because the browser usually figures that stuff out.  IE does not.  So, if you&#8217;re using the DOM method of creating tables, make sure you explicitly use a <code>tbody</code>.
</p>
<p>
 For the record, I was also using a <code>caption</code>.  So, that may have triggered something in IE that wanted an explicit <code>tbody</code>.  If your stuff seems to be working fine without the <code>tbody</code>, it may have more to do with <code>caption</code> being present.</p>
<img src="http://feeds.feedburner.com/~r/robertdot/~4/GNRWeYzojXU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertdot.org/2009/10/12/two-odd-ie-behaviors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertdot.org/2009/10/12/two-odd-ie-behaviors/</feedburner:origLink></item>
		<item>
		<title>Site Specific Hacks</title>
		<link>http://feedproxy.google.com/~r/robertdot/~3/0jj_PcSTRqc/</link>
		<comments>http://robertdot.org/2009/04/08/site-specific-hacks/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 14:18:03 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Browser Compatibility]]></category>
		<category><![CDATA[Browsers]]></category>

		<guid isPermaLink="false">http://robertdot.org/?p=186</guid>
		<description><![CDATA[The other day, I finally got curious about the Site Specific Hacks option in the Develop menu of Safari. It turns out that browsers do their own hacks to certain known problem sites to make them work. Safari allows developers to turn off these hacks in the event that the developer is fixing a site [...]]]></description>
				<content:encoded><![CDATA[<p>
 The other day, I finally got curious about the<br />
<samp>Site Specific Hacks</samp>
<p> option in the<br />
<samp>Develop</samp>
<p> menu of Safari.  It turns out that browsers do their own hacks to certain known problem sites to make them work.  Safari allows developers to turn off these hacks in the event that the developer is fixing a site that has hacks in Safari.
</p>
<p>
 Opera, on the other hand, has <a href="http://my.opera.com/core/blog/show.dml/3130540">a very advanced method for dealing with site specific hacks</a>.  It&#8217;s worth a read just so to know what kind of stuff goes on in the browser that most people, including developers, never think about.  They also link to how other browsers deal with the problem.</p>
<img src="http://feeds.feedburner.com/~r/robertdot/~4/0jj_PcSTRqc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertdot.org/2009/04/08/site-specific-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertdot.org/2009/04/08/site-specific-hacks/</feedburner:origLink></item>
		<item>
		<title>Triangles in CSS</title>
		<link>http://feedproxy.google.com/~r/robertdot/~3/YHqnmnNYtCQ/</link>
		<comments>http://robertdot.org/2009/03/25/triangles-in-css/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 17:46:52 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://robertdot.org/?p=179</guid>
		<description><![CDATA[I was reading Image-free CSS Tooltip Pointers and realized the trick of triangles in CSS. These odd little polygonal things have been around for awhile, but I just now figured out how the triangle works. Basically, where two borders meet (e.g. border-top and border-left), a diagonal line is drawn where they meet, making a neat [...]]]></description>
				<content:encoded><![CDATA[<p>
I was reading <a href="http://www.filamentgroup.com/lab/image_free_css_tooltip_pointers_a_use_for_polygonal_css/">Image-free CSS Tooltip Pointers</a> and realized the trick of triangles in <abbr title="Cascading Style Sheets">CSS</abbr>.  These odd little polygonal things have been around for awhile, but I just now figured out how the triangle works.
</p>
<p>
 Basically, where two borders meet (e.g. <code>border-top</code> and <code>border-left</code>), a diagonal line is drawn where they meet, making a neat bezel effect, rather than having the top border sit above the left border.  For example:
</p>
<div style="margin: auto; border: 10px solid red; border-left-color: blue; border-right-color: green; border-bottom-color: yellow; height: 20px; width: 20px; background: gray;"></div>
<p>
 On the <code>div</code> above, you can see the diagonal lines where the borders meet.
</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="htmlstrict" style="font-family:monospace;">&lt;div style=&quot;margin: auto; border: 10px solid red; border-left-color: blue; border-right-color: green; border-bottom-color: yellow; height: 20px; width: 20px; background: gray;&quot;&gt;&lt;/div&gt;</pre></td></tr></table></div>

<p>
 Taking advantage of this, it&#8217;s easy to set the color of some borders to transparent and end up with a polygon.
</p>
<div style="margin: auto; border: 10px solid red; border-left-color: transparent; border-right-color: transparent; border-bottom-color: transparent; height: 0px; width: 20px;"></div>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="htmlstrict" style="font-family:monospace;">&lt;div style=&quot;margin: auto; border: 10px solid red; border-left-color: transparent; border-right-color: transparent; border-bottom-color: transparent; height: 20px; width: 20px;&quot;&gt;&lt;/div&gt;</pre></td></tr></table></div>

<p>
 Take that principle and mess around with it, and you can make triangles.  For example:
</p>
<div style="position: relative; width: 100px; height: 100px; margin: auto;">
<div style="width:0; height:0; border-left: 5px solid transparent;  border-right: 5px solid transparent; border-top: 5px solid blue; border-bottom: 0; position: absolute; bottom: 0px; left: 50%;"></div>
<div style="width:0; height:0; border-left: 5px solid transparent;  border-right: 5px solid transparent; border-bottom: 5px solid blue; border-top: 0; position: absolute; top: 0px; left: 50%;"></div>
<div style="width:0; height:0; border-top: 5px solid transparent;  border-bottom: 5px solid transparent; border-right: 5px solid blue; border-left: 0; position: absolute; top: 50%; left: 0px;"></div>
<div style="width:0; height:0; border-top: 5px solid transparent;  border-bottom: 5px solid transparent; border-left: 5px solid blue; border-right: 0; position: absolute; top: 50%; right: 0px;""></div>
<div style="width:0; height:0; border-left: 7px solid blue;  border-right: 7px solid transparent; border-top: 7px solid transparent; border-bottom: 0; position: absolute; bottom: 0px; left: 0px;""></div>
<div style="width:0; height:0; border-left: 7px solid blue;  border-right: 7px solid transparent; border-bottom: 7px solid transparent; border-top: 0; position: absolute; top: 0px; left: 0px;""></div>
<div style="width:0; height:0; border-left: 7px solid transparent;  border-right: 7px solid blue; border-bottom: 7px solid transparent; border-top: 0; position: absolute; top: 0px; right: 0px;""></div>
<div style="width:0; height:0; border-left: 7px solid transparent;  border-right: 7px solid blue; border-top: 7px solid transparent; border-bottom: 0; position: absolute; bottom: 0px; right: 0px;""></div>
</p></div>
<p>
 Above, you have north, south, east, west, northeast, northwest, southeast, and southwest (in no particular order).
</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="htmlstrict" style="font-family:monospace;"> &lt;div style=&quot;position: relative; width: 100px; height: 100px; margin: auto;&quot;&gt;
  &lt;div style=&quot;width:0; height:0; border-left: 5px solid transparent;  border-right: 5px solid transparent; border-top: 5px solid blue; border-bottom: 0; position: absolute; bottom: 0px; left: 50%;&quot;&gt;&lt;/div&gt; 
  &lt;div style=&quot;width:0; height:0; border-left: 5px solid transparent;  border-right: 5px solid transparent; border-bottom: 5px solid blue; border-top: 0; position: absolute; top: 0px; left: 50%;&quot;&gt;&lt;/div&gt; 
  &lt;div style=&quot;width:0; height:0; border-top: 5px solid transparent;  border-bottom: 5px solid transparent; border-right: 5px solid blue; border-left: 0; position: absolute; top: 50%; left: 0px;&quot;&gt;&lt;/div&gt; 
  &lt;div style=&quot;width:0; height:0; border-top: 5px solid transparent;  border-bottom: 5px solid transparent; border-left: 5px solid blue; border-right: 0; position: absolute; top: 50%; right: 0px;&quot;&quot;&gt;&lt;/div&gt; 
  &lt;div style=&quot;width:0; height:0; border-left: 7px solid blue;  border-right: 7px solid transparent; border-top: 7px solid transparent; border-bottom: 0; position: absolute; bottom: 0px; left: 0px;&quot;&quot;&gt;&lt;/div&gt; 
  &lt;div style=&quot;width:0; height:0; border-left: 7px solid blue;  border-right: 7px solid transparent; border-bottom: 7px solid transparent; border-top: 0; position: absolute; top: 0px; left: 0px;&quot;&quot;&gt;&lt;/div&gt; 
  &lt;div style=&quot;width:0; height:0; border-left: 7px solid transparent;  border-right: 7px solid blue; border-bottom: 7px solid transparent; border-top: 0; position: absolute; top: 0px; right: 0px;&quot;&quot;&gt;&lt;/div&gt; 
  &lt;div style=&quot;width:0; height:0; border-left: 7px solid transparent;  border-right: 7px solid blue; border-top: 7px solid transparent; border-bottom: 0; position: absolute; bottom: 0px; right: 0px;&quot;&quot;&gt;&lt;/div&gt; 
 &lt;/div&gt;</pre></td></tr></table></div>

<p>
 So, as you can see, it&#8217;s pretty easy to make a triangle.  Adjust the border widths to make them bigger.</p>
<img src="http://feeds.feedburner.com/~r/robertdot/~4/YHqnmnNYtCQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertdot.org/2009/03/25/triangles-in-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertdot.org/2009/03/25/triangles-in-css/</feedburner:origLink></item>
		<item>
		<title>Internet Explorer 8 Released</title>
		<link>http://feedproxy.google.com/~r/robertdot/~3/wbxdqJIdVZc/</link>
		<comments>http://robertdot.org/2009/03/19/internet-explorer-8-released/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 00:07:50 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://robertdot.org/?p=177</guid>
		<description><![CDATA[If you didn&#8217;t already hear (and I bet you already did), Internet Explorer 8 has been released. For several months, I&#8217;ve been using the release candidates with the Internet Explorer 7 Compatibility Mode to test sites in IE7 and IE8. So far, IE8 seems like a pretty good release. I haven&#8217;t had a chance to [...]]]></description>
				<content:encoded><![CDATA[<p>If you didn&#8217;t already hear (and I bet you already did), Internet Explorer 8 has been released.  For several months, I&#8217;ve been using the release candidates with the Internet Explorer 7 Compatibility Mode to test sites in IE7 and IE8.  So far, IE8 seems like a pretty good release.  I haven&#8217;t had a chance to update yet, but I&#8217;m hoping hard that things have only gotten better.</p>
<img src="http://feeds.feedburner.com/~r/robertdot/~4/wbxdqJIdVZc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertdot.org/2009/03/19/internet-explorer-8-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertdot.org/2009/03/19/internet-explorer-8-released/</feedburner:origLink></item>
		<item>
		<title>Browsers and Form Collection</title>
		<link>http://feedproxy.google.com/~r/robertdot/~3/qSMv21AdkfI/</link>
		<comments>http://robertdot.org/2009/02/18/browsers-and-form-collection/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 21:19:09 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Browser Compatibility]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Opera]]></category>

		<guid isPermaLink="false">http://robertdot.org/?p=175</guid>
		<description><![CDATA[I&#8217;ve been writing a new form hijacker. Since this one is a pretty big deal for me, I wanted to make sure it was properly implemented. I implemented against my interpretation of the HTML 4 specification and did a pretty good job since I&#8217;m exactly compatible with Firefox, Opera, and Internet Explorer 8. Safari, Internet [...]]]></description>
				<content:encoded><![CDATA[<p>
 I&#8217;ve been writing a new form hijacker.  Since this one is a pretty big deal for me, I wanted to make sure it was properly implemented.  I implemented against my interpretation of the <abbr title="HyperText Markup Language">HTML</abbr> 4 specification and did a pretty good job since I&#8217;m exactly compatible with Firefox, Opera, and Internet Explorer 8.  Safari, Internet Explorer 6, and Internet Explorer 7 seem to have some bugs.
</p>
<p>
 Safari seems to send the values of un<code>name</code>ed <code>select</code>s, despite these elements being invalid.  So, you may get a query string like<br />
<samp>text1=test&amp;=selval</samp>
<p> if your <code>select</code> that contained an <code>option="selval"</code> doesn&#8217;t have a <code>name</code>.
</p>
<p>
 Internet Explorer 6 and 7 both mishandle <code>button</code>s.  Internet Explorer 6 sends all <code>buttons</code> with <code>name</code> attributes set, even though it should only send the <code>button</code> if it was clicked.  Internet Explorer 7 doesn&#8217;t send unclicked <code>buttons</code>, but any time Internet Explorer 6 or 7 sends a <code>button</code> it sends the <code>button</code>&#8216;s <code>innerHTML</code> instead of the value.
</p>
<p>
 So, given the deficiencies above, here&#8217;s how to compensate.  If you&#8217;re using PHP, you don&#8217;t need to worry about Safari sending <code>name</code>less <code>select</code>s as PHP seems to ignore them (or at least in <code>parse_str</code>).  If you plan to use <code>button</code>s, never give them names or values.  Use <code>radio</code> controls if you have to do conditional actions based on what the user clicks.
</p>
<p>
 I still have some other testing to do, but these findings should help you cover your bases if you&#8217;re working with forms.</p>
<img src="http://feeds.feedburner.com/~r/robertdot/~4/qSMv21AdkfI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertdot.org/2009/02/18/browsers-and-form-collection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertdot.org/2009/02/18/browsers-and-form-collection/</feedburner:origLink></item>
		<item>
		<title>Yahoo! Updates Graded Browser Support</title>
		<link>http://feedproxy.google.com/~r/robertdot/~3/JytTmpQyI40/</link>
		<comments>http://robertdot.org/2009/01/29/yahoo-updates-graded-browser-support/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 16:22:54 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Browser Support]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://robertdot.org/?p=173</guid>
		<description><![CDATA[Yahoo! updated it&#8217;s Graded Browser Support yesterday. The changes involved dropping support for non-Safari browsers on Mac OS X 10.4 and non-Internet Explorer browsers on Windows 2000. Support for Internet Explorer 8 was added for Windows XP and Windows Vista. This has given clout to support Internet Explorer 8 (which is in Release Candidate version [...]]]></description>
				<content:encoded><![CDATA[<p>
 Yahoo! updated it&#8217;s <a href="http://yuiblog.com/blog/2009/01/28/gbs-update-20090128/">Graded Browser Support</a> yesterday.  The changes involved dropping support for non-Safari browsers on Mac OS X 10.4 and non-Internet Explorer browsers on Windows 2000.  Support for Internet Explorer 8 was added for Windows XP and Windows Vista.
</p>
<p>
 This has given clout to support Internet Explorer 8 (which is in Release Candidate version now) in addition to versions 6 and 7.  Here&#8217;s hoping Microsoft forces Internet Explorer 8 upgrades now that version targeting has been implemented.</p>
<img src="http://feeds.feedburner.com/~r/robertdot/~4/JytTmpQyI40" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertdot.org/2009/01/29/yahoo-updates-graded-browser-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertdot.org/2009/01/29/yahoo-updates-graded-browser-support/</feedburner:origLink></item>
		<item>
		<title>Old Stuff Up, New Stuff On The Way</title>
		<link>http://feedproxy.google.com/~r/robertdot/~3/D3WUQmQHVI8/</link>
		<comments>http://robertdot.org/2009/01/20/old-stuff-up-new-stuff-on-the-way/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 19:40:35 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Meta]]></category>

		<guid isPermaLink="false">http://robertdot.org/?p=169</guid>
		<description><![CDATA[I finally finished importing all the relevant old content from Robertdots of yore. It amounted to about 36-ish posts. I&#8217;ve set up all the 301 redirects and pulled the 503 I&#8217;ve had running for a month or more. I still have some editing to do on older stuff and I there are still some areas [...]]]></description>
				<content:encoded><![CDATA[<p>
 I finally finished importing all the relevant old content from Robertdots of yore.  It amounted to about 36-ish posts.  I&#8217;ve set up all the 301 redirects and pulled the 503 I&#8217;ve had running for a month or more.</p>
<p><p>
 I still have some editing to do on older stuff and I there are still some areas of the <abbr title="Cascading Style Sheets">CSS</abbr> that I need to address.  The pressing stuff is done, though.  In the days ahead, I&#8217;ll concern myself with new stuff.</p>
<img src="http://feeds.feedburner.com/~r/robertdot/~4/D3WUQmQHVI8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertdot.org/2009/01/20/old-stuff-up-new-stuff-on-the-way/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://robertdot.org/2009/01/20/old-stuff-up-new-stuff-on-the-way/</feedburner:origLink></item>
		<item>
		<title>Apologies For Old Content</title>
		<link>http://feedproxy.google.com/~r/robertdot/~3/q-5HpLoFNj0/</link>
		<comments>http://robertdot.org/2009/01/14/apologies-for-old-content/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 17:16:11 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Meta]]></category>

		<guid isPermaLink="false">http://robertdot.org/?p=121</guid>
		<description><![CDATA[I started working on importing all the old content I planned on keeping on the site. So far, I&#8217;ve only posted two or three old stories, but I have another 30-something in the queue. So, I want to apologize to anyone who reads my news feeds for all this old content showing up. At this [...]]]></description>
				<content:encoded><![CDATA[<p>
 I started working on importing all the old content I planned on keeping on the site.  So far, I&#8217;ve only posted two or three old stories, but I have another 30-something in the queue.  So, I want to apologize to anyone who reads my news feeds for all this old content showing up.  At this point, I don&#8217;t know how to make WordPress understand that these posts are old and need to (at least) be appended to the feed.
</p>
<p>
 Until I get through all the old stuff (hopefully by the end of the week), please be patient.</p>
<img src="http://feeds.feedburner.com/~r/robertdot/~4/q-5HpLoFNj0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertdot.org/2009/01/14/apologies-for-old-content/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://robertdot.org/2009/01/14/apologies-for-old-content/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

 Served from: robertdot.org @ 2013-05-21 14:20:48 by W3 Total Cache -->
