<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1018154" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1018154</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/browser-resolution#comment-1108238</link>
    <description> &lt;p&gt;Yeah but people can maximize browser win&#039;s themselves. Its totally ridiculous to design when taking into account that people might not have a browser maximized.&lt;br /&gt;
-dk&lt;/p&gt;
 </description>
     <pubDate>Sat, 04 May 2002 14:32:15 +0000</pubDate>
 <dc:creator>dk01</dc:creator>
 <guid isPermaLink="false">comment 1108238 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/browser-resolution#comment-1108197</link>
    <description> &lt;p&gt;Depends on the image, but you can get an image to expand/contract with screen width - see title image in my sig.&lt;/p&gt;
&lt;p&gt;I don&#039;t think designing for a width is a good idea - too many variables apart from screen res. You can usually get percentages to work with a bit of fiddling.&lt;/p&gt;
&lt;p&gt;Many people don&#039;t have browser maximized, according to a chart I saw somewhere 3-6 months ago. Don&#039;t quote me, but it was something like 25% of 800x600 not maximized, and 50% of 1024x768.&lt;/p&gt;
&lt;p&gt;Some people [no idea how many] will also have Favorites or History panels open on the left of the browser window. Then there&#039;s docked toolbars etc.&lt;/p&gt;
&lt;p&gt;FYI, latest stats from TheCounter show over 50% still using 800x600 or smaller.&lt;/p&gt;
 </description>
     <pubDate>Sat, 04 May 2002 00:08:25 +0000</pubDate>
 <dc:creator>Mike Feury</dc:creator>
 <guid isPermaLink="false">comment 1108197 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/browser-resolution#comment-1106264</link>
    <description> &lt;p&gt;You can use the method of 780 and center them or you could use javascript like flipper said. I have written this code to check this:&lt;br /&gt;
========================&lt;/p&gt;
&lt;p&gt;// Sniffer Version 2&lt;br /&gt;
// Jim Cummins 2002&lt;br /&gt;
// Conxiondesigns&lt;br /&gt;
var isIE;&lt;br /&gt;
var isNS6;&lt;br /&gt;
var isNS4;&lt;br /&gt;
var isOther;&lt;/p&gt;
&lt;p&gt;if(document.getElementById)&lt;br /&gt;
{&lt;br /&gt;
	if(!document.all)&lt;br /&gt;
	{&lt;br /&gt;
		isNS6=true;&lt;br /&gt;
		isNS=true;&lt;br /&gt;
	}&lt;br /&gt;
	if(document.all)&lt;br /&gt;
	{&lt;br /&gt;
		isIE5=true;&lt;br /&gt;
		isIE=true;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
else&lt;br /&gt;
{&lt;br /&gt;
	if(document.layers)&lt;br /&gt;
	{&lt;br /&gt;
		isNS4=true;&lt;br /&gt;
		isNS4=true;&lt;br /&gt;
	}&lt;br /&gt;
	else if(document.all)&lt;br /&gt;
	{&lt;br /&gt;
		isIE4=true;&lt;br /&gt;
		isIE=true;&lt;br /&gt;
	}&lt;br /&gt;
	else&lt;br /&gt;
	{&lt;br /&gt;
		isOther=true;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;// Debugger and Res Check Version 1&lt;br /&gt;
// Jim Cummins 2002&lt;br /&gt;
// Conxiondesigns&lt;br /&gt;
function checker()&lt;br /&gt;
{&lt;br /&gt;
if(isNS6 || isNS4)&lt;br /&gt;
{&lt;br /&gt;
	availW = window.innerWidth;&lt;br /&gt;
	availH = window.innerHeight;&lt;br /&gt;
}&lt;br /&gt;
else&lt;br /&gt;
{&lt;br /&gt;
	availW = document.body.clientWidth;&lt;br /&gt;
	availH = document.body.clientHeight;&lt;br /&gt;
}&lt;br /&gt;
var screenH = screen.height;&lt;br /&gt;
var screenW = screen.width;&lt;/p&gt;
&lt;p&gt;	alert(&#039;\n-[ Browsers ]-\n IE: &#039; + isIE + &#039;\n NS: &#039; + (isNS4||isNS6) + &#039;\n-[Screen]-\n Width: &#039; + screenW + &#039;\n Height: &#039; + screenH + &#039;\n Available W: &#039; + availW + &#039;\n Available H: &#039; + availH);&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;========================&lt;br /&gt;
Once you copy this to the head of your document you can use the function &#039;checker()&#039; to have an alert of the browser and screen resolution.&lt;br /&gt;
You can use this script to set the width and height of objects using javascript in the following way:&lt;/p&gt;
&lt;p&gt;myobject.width = availW;&lt;br /&gt;
myobject.height = availH;&lt;/p&gt;
&lt;p&gt;*Note*&lt;br /&gt;
You may have to add a &quot;px&quot; on the end of width for internet explorer or NS versions. I cannot remember, you may want to test around with that.&lt;br /&gt;
Hope this helps,&lt;br /&gt;
-dk&lt;/p&gt;
 </description>
     <pubDate>Sun, 07 Apr 2002 00:38:13 +0000</pubDate>
 <dc:creator>dk01</dc:creator>
 <guid isPermaLink="false">comment 1106264 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/browser-resolution#comment-1106253</link>
    <description> &lt;p&gt;Most people use 800x600&lt;/p&gt;
&lt;p&gt;What I have found is that one should design at 100% if possible or 780 pixels wide, which will view well at 8x6, or 1024 X 768.&lt;/p&gt;
&lt;p&gt;Believe it or not there are still some people using 640x480 but not that many.&lt;/p&gt;
&lt;p&gt;I have difficulty designing at 100% so design my sites 780 wide and center them.&lt;/p&gt;
&lt;p&gt;Gavin&lt;/p&gt;
 </description>
     <pubDate>Sat, 06 Apr 2002 21:37:50 +0000</pubDate>
 <dc:creator>gavin681</dc:creator>
 <guid isPermaLink="false">comment 1106253 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/browser-resolution#comment-1106197</link>
    <description> &lt;p&gt;Looking at your site through 800x600 eyes I get a sideways scroll.&lt;/p&gt;
&lt;p&gt;I had a similar prob on my old site.  I overcame it by fixing the main table at 790 ish which suited 800 x 600 fine but anyone with a larger res had loads of whitespace around the edges.  Looking at your code you have the top table set at 841 which is too wide for 800 x 600.&lt;/p&gt;
&lt;p&gt;Two ways to crack it.&lt;/p&gt;
&lt;p&gt;1) Set the top table at 100% and let the tables stretch to fit a the users screen.  This can cause problems in higher resolutions if you have gradients or fixed size images in the left and right borders which you don&#039;t but it should still be considered.&lt;/p&gt;
&lt;p&gt;2)  Grab the users screen size using JavaScript and set the table widths from that.  Never did work out how to do this so if you figure ut, let me know!! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;.  Try a few JavaScript sites such as &lt;a href=&quot;http://www.javascripts.com&quot; class=&quot;bb-url&quot;&gt;JavaScripts&lt;/a&gt; or &lt;a href=&quot;http://www.javascriptsearch.com&quot; class=&quot;bb-url&quot;&gt;JavaScriptSearch.com&lt;/a&gt; for free cut &#039;n paste scripts that you may be able to adapt to suit your site.&lt;/p&gt;
&lt;p&gt;Hope this helps some....&lt;/p&gt;
 </description>
     <pubDate>Fri, 05 Apr 2002 20:48:45 +0000</pubDate>
 <dc:creator>openmind</dc:creator>
 <guid isPermaLink="false">comment 1106197 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
