<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Bug Hunt!</title>
	<link>http://fadtastic.net/2006/07/08/bug-hunt/</link>
	<description>thoughts on &#124; comments about &#124; examples of  } web design trends.</description>
	<pubDate>Fri, 25 Jul 2008 10:46:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>

	<item>
		<title>By: Derek Punsalan</title>
		<link>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2133</link>
		<author>Derek Punsalan</author>
		<pubDate>Sat, 08 Jul 2006 16:54:09 +0000</pubDate>
		<guid>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2133</guid>
					<description>Here's an idea. The way the comment box is set up, a reader would automatically begin entering the comment, then entering the name, mail, etc. Why not tweak the tab focus accordingly. Enter comment &lt;em&gt;then&lt;/em&gt; tab to name, mail, web, and finally submit.</description>
		<content:encoded><![CDATA[<p>Here&#8217;s an idea. The way the comment box is set up, a reader would automatically begin entering the comment, then entering the name, mail, etc. Why not tweak the tab focus accordingly. Enter comment <em>then</em> tab to name, mail, web, and finally submit.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Andrew Faulkner</title>
		<link>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2135</link>
		<author>Andrew Faulkner</author>
		<pubDate>Sat, 08 Jul 2006 19:50:21 +0000</pubDate>
		<guid>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2135</guid>
					<description>Good point, Derek. I agree totally. I shall implement this in the next update.</description>
		<content:encoded><![CDATA[<p>Good point, Derek. I agree totally. I shall implement this in the next update.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Steven Teskey</title>
		<link>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2139</link>
		<author>Steven Teskey</author>
		<pubDate>Sun, 09 Jul 2006 00:16:47 +0000</pubDate>
		<guid>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2139</guid>
					<description>I think the site width should be tweaked ever so slightly. The main column should never, under any circumstances be wider than 6", otherwise you'll lose the reader, as it will become so very hard to read. I think the max-width should be less than 1200px.

Just me though.</description>
		<content:encoded><![CDATA[<p>I think the site width should be tweaked ever so slightly. The main column should never, under any circumstances be wider than 6&#8243;, otherwise you&#8217;ll lose the reader, as it will become so very hard to read. I think the max-width should be less than 1200px.</p>
<p>Just me though.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Andrew Faulkner</title>
		<link>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2147</link>
		<author>Andrew Faulkner</author>
		<pubDate>Sun, 09 Jul 2006 08:53:39 +0000</pubDate>
		<guid>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2147</guid>
					<description>Steven,

That can be done easily. I asked for advice on StyleGala and someone has brought up the same thing. I think it's currently set to ~1500px wide. This is a simple change.

Do you like the fluidity of the site?</description>
		<content:encoded><![CDATA[<p>Steven,</p>
<p>That can be done easily. I asked for advice on StyleGala and someone has brought up the same thing. I think it&#8217;s currently set to ~1500px wide. This is a simple change.</p>
<p>Do you like the fluidity of the site?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Johan</title>
		<link>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2149</link>
		<author>Johan</author>
		<pubDate>Sun, 09 Jul 2006 15:07:29 +0000</pubDate>
		<guid>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2149</guid>
					<description>&#62; Do you like the fluidity of the site?

Sure, but you need a min-width as well eg min-width 500px or 700px

IE does not support it but Moz FF does and others, so you do this:


your HTML set-up



// page content goes here



Your CSS set-up

.minwidth {
	min-width: 500px; /* or eg 700px */
}
/* hide from IE MAC \*//*/

.minwidth {
	border-left: 500px solid #fff;
/* match color with your outer borders - can be 500px or 700px depending on min-width setting */
}

.wrapper {
	margin-left: -500px;
}
/**/
/* IE */

&lt;!--[if IE]&#62;--&gt;
.minwidth {
	height: 0;
	he\ight: auto;
	zoom: 1;
}

&lt;!--[if lt IE 7]&#62;--&gt;
.minwidth {
	border-left: 500px solid #fff; 
/* match color with your outer borders - can be 500px or 700px depending on min-width setting */
}
.wrapper {
	margin-left: -500px;
	position: relative;
}
</description>
		<content:encoded><![CDATA[<p>&gt; Do you like the fluidity of the site?</p>
<p>Sure, but you need a min-width as well eg min-width 500px or 700px</p>
<p>IE does not support it but Moz FF does and others, so you do this:</p>
<p>your HTML set-up</p>
<p>// page content goes here</p>
<p>Your CSS set-up</p>
<p>.minwidth {<br />
	min-width: 500px; /* or eg 700px */<br />
}<br />
/* hide from IE MAC \*//*/</p>
<p>.minwidth {<br />
	border-left: 500px solid #fff;<br />
/* match color with your outer borders - can be 500px or 700px depending on min-width setting */<br />
}</p>
<p>.wrapper {<br />
	margin-left: -500px;<br />
}<br />
/**/<br />
/* IE */</p>
<p><!--[if IE]&gt;--><br />
.minwidth {<br />
	height: 0;<br />
	he\ight: auto;<br />
	zoom: 1;<br />
}</p>
<p><!--[if lt IE 7]&gt;--><br />
.minwidth {<br />
	border-left: 500px solid #fff;<br />
/* match color with your outer borders - can be 500px or 700px depending on min-width setting */<br />
}<br />
.wrapper {<br />
	margin-left: -500px;<br />
	position: relative;<br />
}</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Johan</title>
		<link>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2150</link>
		<author>Johan</author>
		<pubDate>Sun, 09 Jul 2006 15:11:37 +0000</pubDate>
		<guid>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2150</guid>
					<description>the code got cut off - will mail it instead - the minwidth solution

HTML

the &#60;div&#62; class=&#34;minwidth&#34;&#60;/div&#38;gt
; forms an outterwrapper for the wrapper div, the min-width CSS for IE

is first for all IE then lower then IE7 (IE conditionals)</description>
		<content:encoded><![CDATA[<p>the code got cut off - will mail it instead - the minwidth solution</p>
<p>HTML</p>
<p>the &lt;div&gt; class=&quot;minwidth&quot;&lt;/div&amp;gt<br />
; forms an outterwrapper for the wrapper div, the min-width CSS for IE</p>
<p>is first for all IE then lower then IE7 (IE conditionals)</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Andrew Faulkner</title>
		<link>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2181</link>
		<author>Andrew Faulkner</author>
		<pubDate>Wed, 12 Jul 2006 18:14:16 +0000</pubDate>
		<guid>http://fadtastic.net/2006/07/08/bug-hunt/#comment-2181</guid>
					<description>&lt;blockquote&gt;Here’s an idea. The way the comment box is set up, a reader would automatically begin entering the comment, then entering the name, mail, etc. Why not tweak the tab focus accordingly. Enter comment then tab to name, mail, web, and finally submit.&lt;/blockquote&gt;

This is now implemented.</description>
		<content:encoded><![CDATA[<blockquote><p>Here’s an idea. The way the comment box is set up, a reader would automatically begin entering the comment, then entering the name, mail, etc. Why not tweak the tab focus accordingly. Enter comment then tab to name, mail, web, and finally submit.</p>
</blockquote>
<p>This is now implemented.</p>
]]></content:encoded>
				</item>
</channel>
</rss>
