<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: CSS tricks in both dimensions</title>
	<atom:link href="http://www.sitepoint.com/blogs/2004/09/22/css-tricks-in-both-dimensions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sitepoint.com/blogs/2004/09/22/css-tricks-in-both-dimensions/</link>
	<description>News, opinion, and fresh thinking for web developers and designers. The official podcast of sitepoint.com.</description>
	<lastBuildDate>Sun, 22 Nov 2009 11:54:05 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: onefocus</title>
		<link>http://www.sitepoint.com/blogs/2004/09/22/css-tricks-in-both-dimensions/comment-page-1/#comment-15893</link>
		<dc:creator>onefocus</dc:creator>
		<pubDate>Sat, 18 Mar 2006 21:59:24 +0000</pubDate>
		<guid isPermaLink="false">307199358#comment-15893</guid>
		<description>I am in the process right now (Mar.2006) of developing a new site.
http&lt;strong&gt;:&lt;/strong&gt;//www.calgarymotorcyclescooter.com/index.htm
Again, since there are still some using the smallest of screen sizes of 800x600 I made this the default size when designing. However like is mentioned before there is screen real estate that is being wasted. So by testing for some of the sizes you can add ads and or other extra information. I&#039;m using the same info as noted above. Tell me what you think? You know, one has to know the box really well before one can step outside the box.</description>
		<content:encoded><![CDATA[<p>I am in the process right now (Mar.2006) of developing a new site.<br />
http<strong>:</strong>//www.calgarymotorcyclescooter.com/index.htm<br />
Again, since there are still some using the smallest of screen sizes of 800&#215;600 I made this the default size when designing. However like is mentioned before there is screen real estate that is being wasted. So by testing for some of the sizes you can add ads and or other extra information. I&#8217;m using the same info as noted above. Tell me what you think? You know, one has to know the box really well before one can step outside the box.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Rizwan Reza</title>
		<link>http://www.sitepoint.com/blogs/2004/09/22/css-tricks-in-both-dimensions/comment-page-1/#comment-3552</link>
		<dc:creator>Rizwan Reza</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">307199358#comment-3552</guid>
		<description>&lt;p&gt;Thanks for sharing!&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>Thanks for sharing!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: someonewhois</title>
		<link>http://www.sitepoint.com/blogs/2004/09/22/css-tricks-in-both-dimensions/comment-page-1/#comment-3553</link>
		<dc:creator>someonewhois</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">307199358#comment-3553</guid>
		<description>&lt;p&gt;Eii, ingenius or out, it&#039;s flawed... I&#039;m currently using a 400mhz Celeron (I know, it&#039;s pathetic) running MSIE (even worse), and it lags when I resize. Had he done it properly, it&#039;d go:&lt;/p&gt;

&lt;p&gt;if (width &lt; 800 &amp;&amp; prevWidth &gt; 800)&lt;br /&gt;
 ...&lt;br /&gt;
else if (width &gt; 800 &amp;&amp; prevWidth &lt; 800) &lt;br /&gt;
 ...&lt;/p&gt;

&lt;p&gt;As I see it, EVERY SINGLE pixel change when resizing causes the style to be changed, and that lags me on this computer... should really cache what it is BEFORE resizing happens (ie on init, or at the end of the function called onresize), and then only if it&#039;s crossed the border (800px) should it do anything... cool nonetheless though.&lt;/p&gt;

&lt;p&gt;just my 2 cents&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>Eii, ingenius or out, it&#8217;s flawed&#8230; I&#8217;m currently using a 400mhz Celeron (I know, it&#8217;s pathetic) running MSIE (even worse), and it lags when I resize. Had he done it properly, it&#8217;d go:</p>
<p>if (width < 800 &#038;&#038; prevWidth > 800)<br />
 &#8230;<br />
else if (width > 800 &#038;&#038; prevWidth < 800) <br />
 &#8230;</p>
<p>As I see it, EVERY SINGLE pixel change when resizing causes the style to be changed, and that lags me on this computer&#8230; should really cache what it is BEFORE resizing happens (ie on init, or at the end of the function called onresize), and then only if it&#8217;s crossed the border (800px) should it do anything&#8230; cool nonetheless though.</p>
<p>just my 2 cents</p>]]></content:encoded>
	</item>
	<item>
		<title>By: onefocus</title>
		<link>http://www.sitepoint.com/blogs/2004/09/22/css-tricks-in-both-dimensions/comment-page-1/#comment-3554</link>
		<dc:creator>onefocus</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">307199358#comment-3554</guid>
		<description>&lt;p&gt;I&#039;ve done just that on a few of my pages for quite awhile. heres one of them:&lt;br /&gt;
http://www.dimensionalized.com/new.php?firstname=justvisiting&lt;/p&gt;

&lt;p&gt;However, &lt;br /&gt;
if the script finds that the screen size is bigger than 800x600 &lt;br /&gt;
than I include an iframe to include another page of extra info on the far right side.&lt;br /&gt;
If they have an 800x600 than I include that extra info page as a link on the side.&lt;/p&gt;

&lt;p&gt;This way I can keep a fixed width for all my pages and do not lose out on browser real estate that is of great value.&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>I&#8217;ve done just that on a few of my pages for quite awhile. heres one of them:<br />
<a href="http://www.dimensionalized.com/new.php?firstname=justvisiting" rel="nofollow">http://www.dimensionalized.com/new.php?firstname=justvisiting</a></p>
<p>However, <br />
if the script finds that the screen size is bigger than 800&#215;600 <br />
than I include an iframe to include another page of extra info on the far right side.<br />
If they have an 800&#215;600 than I include that extra info page as a link on the side.</p>
<p>This way I can keep a fixed width for all my pages and do not lose out on browser real estate that is of great value.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous One</title>
		<link>http://www.sitepoint.com/blogs/2004/09/22/css-tricks-in-both-dimensions/comment-page-1/#comment-3555</link>
		<dc:creator>Anonymous One</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">307199358#comment-3555</guid>
		<description>&lt;p&gt;I really don&#039;t understand what&#039;s so surprising about this. It&#039;s only common sense that several stylesheets can be designed for several resolutions.&lt;/p&gt;

&lt;p&gt;The problem lies not in what is obvious, but in the extra time spent creating those stylesheets. So why not make a nice &quot;fluid&quot; website from the start?&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>I really don&#8217;t understand what&#8217;s so surprising about this. It&#8217;s only common sense that several stylesheets can be designed for several resolutions.</p>
<p>The problem lies not in what is obvious, but in the extra time spent creating those stylesheets. So why not make a nice &#8220;fluid&#8221; website from the start?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: onefocus</title>
		<link>http://www.sitepoint.com/blogs/2004/09/22/css-tricks-in-both-dimensions/comment-page-1/#comment-3556</link>
		<dc:creator>onefocus</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">307199358#comment-3556</guid>
		<description>&lt;p&gt;I created a very basic working example that you can look at the source code:&lt;br /&gt;
http://www.dimensionalized.com/instruction/screenrealestate.html&lt;/p&gt;

&lt;p&gt;The iframe includes this other file:&lt;br /&gt;
http://www.dimensionalized.com/instruction/extrainfo.html&lt;/p&gt;

&lt;p&gt;If you save all this to your desktop and go to line #189 and change the value to false, you can see in action.&lt;/p&gt;

&lt;p&gt;It is very solid, although it does not take into account the 2% who disable JavaScript.&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>I created a very basic working example that you can look at the source code:<br />
<a href="http://www.dimensionalized.com/instruction/screenrealestate.html" rel="nofollow">http://www.dimensionalized.com/instruction/screenrealestate.html</a></p>
<p>The iframe includes this other file:<br />
<a href="http://www.dimensionalized.com/instruction/extrainfo.html" rel="nofollow">http://www.dimensionalized.com/instruction/extrainfo.html</a></p>
<p>If you save all this to your desktop and go to line #189 and change the value to false, you can see in action.</p>
<p>It is very solid, although it does not take into account the 2% who disable JavaScript.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: spags</title>
		<link>http://www.sitepoint.com/blogs/2004/09/22/css-tricks-in-both-dimensions/comment-page-1/#comment-3557</link>
		<dc:creator>spags</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">307199358#comment-3557</guid>
		<description>&lt;p&gt;You still alive Simon?&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>You still alive Simon?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.sitepoint.com/blogs/2004/09/22/css-tricks-in-both-dimensions/comment-page-1/#comment-3558</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">307199358#comment-3558</guid>
		<description>&lt;p&gt;I still can&#039;t see what&#039;s wrong with fluid. We all need a drink now and again. So, I&#039;m off for some more fluid ;)&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>I still can&#8217;t see what&#8217;s wrong with fluid. We all need a drink now and again. So, I&#8217;m off for some more fluid ;)</p>]]></content:encoded>
	</item>
	<item>
		<title>By: M36Teen</title>
		<link>http://www.sitepoint.com/blogs/2004/09/22/css-tricks-in-both-dimensions/comment-page-1/#comment-3559</link>
		<dc:creator>M36Teen</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">307199358#comment-3559</guid>
		<description>&lt;p&gt;Uhh, Simon? Where&#039;d ya go?&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>Uhh, Simon? Where&#8217;d ya go?</p>]]></content:encoded>
	</item>
</channel>
</rss>
