<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1022378" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1022378</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/horrible-horrible-horrible#comment-1138114</link>
    <description> &lt;p&gt;I was using XHTML Transitional. And yes, DOCTYPE might influence too, I never thought of that...&lt;/p&gt;
 </description>
     <pubDate>Sat, 20 Sep 2003 03:11:48 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1138114 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/horrible-horrible-horrible#comment-1138107</link>
    <description> &lt;p&gt;doctype may influence how the browsers handle these things. I&#039;m guessing Renegade was using xhtml (strict?), so browsers, particularly IE, can get fussy. &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;&lt;/p&gt;
 </description>
     <pubDate>Sat, 20 Sep 2003 00:20:15 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1138107 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/horrible-horrible-horrible#comment-1138074</link>
    <description> &lt;p&gt;I&#039;ve seen different results with different browsers with different and same sites. I&#039;m not too sure as to why it happens. Happened to me once with my sites. Was using IE to view it (in the same session and on other days). I was just being lazy one time and discovered that so yeah, umm always put in the quotes &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 19 Sep 2003 12:12:09 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1138074 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/horrible-horrible-horrible#comment-1138030</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: &lt;em&gt;Originally posted by Renegade &lt;/em&gt;&lt;br /&gt;
&lt;strong&gt;&lt;br /&gt;
width=100% should be width=&quot;100%&quot;&lt;br /&gt;
They are rendered differently.&lt;br /&gt;
&lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Really?  I did not know this.  What browsers treat them differently and how is the output on the screen different?  I am guessing its a opera or some other sub browser that has the problem since I have never noticed it in mozilla or IE.&lt;/p&gt;
 </description>
     <pubDate>Thu, 18 Sep 2003 13:12:00 +0000</pubDate>
 <dc:creator>nasanu</dc:creator>
 <guid isPermaLink="false">comment 1138030 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/horrible-horrible-horrible#comment-1138022</link>
    <description> &lt;p&gt;With some browesers it helps if you put the quotation marks around the thing you are trying to set. &lt;/p&gt;
&lt;p&gt;e.g. width=100% should be width=&quot;100%&quot; &lt;/p&gt;
&lt;p&gt;They are rendered differently.&lt;/p&gt;
&lt;p&gt;But I don&#039;t really see whats wrong. Sorry.&lt;/p&gt;
 </description>
     <pubDate>Thu, 18 Sep 2003 05:10:34 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1138022 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/horrible-horrible-horrible#comment-1138000</link>
    <description> &lt;p&gt;if you have a version that works good in different screen sizes, then have a page that will redirect you based on resolution.&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;amp;lt;script LANGUAGE=&amp;quot;JavaScript&amp;quot;&amp;amp;gt;&lt;br /&gt;// &amp;lt;!--&lt;br /&gt;&amp;nbsp; var ScrnSize = &amp;quot;UnCommon&amp;quot;&lt;br /&gt;&lt;br /&gt;&amp;nbsp; if (navigator.appVersion.indexOf(&amp;quot;4.&amp;quot;) != -1 &amp;amp;&amp;amp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; navigator.appName.indexOf(&amp;quot;Explorer&amp;quot;) != -1) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ScrnSize = screen.width + &amp;quot;x&amp;quot; + screen.height;&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;&amp;nbsp; if (navigator.appVersion.indexOf(&amp;quot;4.&amp;quot;) != -1 &amp;amp;&amp;amp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; navigator.appName.indexOf(&amp;quot;Netscape&amp;quot;) != -1) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ScrnSize = screen.width + &amp;quot;x&amp;quot; + (screen.height + 19); //Netscape sees 19 pixels less on Height&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;//&amp;nbsp; End --&amp;gt;&lt;br /&gt;&amp;amp;lt;/script&amp;amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;there that code should return the screen size for a person, just use that to rediect them based on that resolution.&lt;/p&gt;
&lt;p&gt;thats just on solution i think you might be better off fixing the page so that it qworks in two resolutions.&lt;/p&gt;
 </description>
     <pubDate>Wed, 17 Sep 2003 16:48:01 +0000</pubDate>
 <dc:creator>jammin</dc:creator>
 <guid isPermaLink="false">comment 1138000 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/horrible-horrible-horrible#comment-1137992</link>
    <description> &lt;p&gt;The one you linked to there seems to be okay.  What you might want to try is building your site in a table with a width fixed at about 760 pixels.  This way your site will look the same in all screen resolutions. Once you become more comfortable with tables you can develop them to scale while still working at different resolutions.  &lt;/p&gt;
&lt;p&gt;What are you using to build your pages?  It helps if you know HTML really well - then you can have more control over your code.&lt;/p&gt;
 </description>
     <pubDate>Wed, 17 Sep 2003 13:22:44 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1137992 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/horrible-horrible-horrible#comment-1137981</link>
    <description> &lt;p&gt;Yes, please provide a link. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/tongue.png&quot; title=&quot;Sticking out tongue&quot; alt=&quot;Sticking out tongue&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 17 Sep 2003 04:36:43 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1137981 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
