<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1021581" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1021581</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/opinions#comment-1133298</link>
    <description> &lt;p&gt;To test if the preloader is working, upload the page to your webserver, clear the cache and history then load up the page. If the images change straight away or pretty fast then it&#039;s working, if not then somethings wrong.&lt;/p&gt;
&lt;p&gt;&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;
&lt;p&gt;[ADD]&lt;br /&gt;
After posting and going to look at your code...&lt;/p&gt;
&lt;p&gt;You have:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;var &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;home &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= new &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Image&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;home&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;src&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= \&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;homeup.jpg\&quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var home = new Image()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; home.src= &#039;&#039;homeover.jpg&#039;&#039;;&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;Try changing it to:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;var &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;home &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= new &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Image&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;home&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;src&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= \&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;homeup.jpg\&quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var home = new Image()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; home_over.src= \&quot;homeover.jpg\&quot;;&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;Try not to redeclear variables &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; and you had single quotes instead of double quotes.&lt;/p&gt;
&lt;p&gt;You also have:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;onMouseOver&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;rules.src=&#039;rulesover.jpg&#039;\&quot; onMouseOut=\&quot;rules.src=&#039;rulesup.jpg&#039;\&quot;&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;Make them:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;onMouseOver&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;this.src=&#039;rulesover.jpg&#039;\&quot; onMouseOut=\&quot;this.src=&#039;rulesup.jpg&#039;\&quot;&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;One more thing, &quot;onMouseOver&quot; and &quot;onMouseOut&quot; is not going validate (if you want it to validate), they should be lower case i.e. &quot;onmouseover&quot; and &quot;onmouseout&quot; respectivly.&lt;br /&gt;
[/ADD]&lt;/p&gt;
 </description>
     <pubDate>Fri, 20 Jun 2003 05:48:01 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1133298 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/opinions#comment-1133271</link>
    <description> &lt;p&gt;What you would do is use PHP or JavaScript to set different stylesheets. All that information that coordinates would be in the associated stylesheet. &lt;/p&gt;
&lt;p&gt;It&#039;s called &quot;stylesheet switcher&quot; and you can Google for oodles of them in both PHP and JavaScript.&lt;/p&gt;
 </description>
     <pubDate>Thu, 19 Jun 2003 11:54:38 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1133271 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/opinions#comment-1133268</link>
    <description> &lt;p&gt;Well I&#039;ve added the pre-loader Renegade suggested but I&#039;m not too sure if it is working.&lt;/p&gt;
&lt;p&gt;I have also done that relative thing, so could someone tell me whether that is ok now?  &lt;/p&gt;
&lt;p&gt;Oh and also is it kinda possible to use PHP to say if a background is a certain colour then the colour of the link on hover should be a certain colour.  Would I use something like the IF function?&lt;/p&gt;
&lt;p&gt;Thanks for the comments! &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>Thu, 19 Jun 2003 11:06:34 +0000</pubDate>
 <dc:creator>Timewell</dc:creator>
 <guid isPermaLink="false">comment 1133268 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/opinions#comment-1133245</link>
    <description> &lt;p&gt;Well, no, not quite.&lt;/p&gt;
&lt;p&gt;Relative widths are relative no matter if we&#039;re talking HTML or CSS. However relative CSS does NOT mean it is necessarily going &quot;to fit the dimensions set by each computer&#039;s screen and browser options&quot;. It means that the positioning is relative to something internal on the page. You can mix absolute and relative positioning with CSS (often you need to), as well as use fixed widths instead of relative widths.&lt;/p&gt;
&lt;p&gt;So, no, it&#039;s not still relative. They are two different constructs and need to be explained separately.&lt;/p&gt;
 </description>
     <pubDate>Wed, 18 Jun 2003 23:41:44 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1133245 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/opinions#comment-1133244</link>
    <description> &lt;p&gt;i know...but its still relative, whether its to the same thing or not is different, meaning its not a fixed position, and is &quot;translated&quot; to fit the dimensions set by each computer&#039;s screen and browser options.&lt;/p&gt;
 </description>
     <pubDate>Wed, 18 Jun 2003 22:03:17 +0000</pubDate>
 <dc:creator>brady.k</dc:creator>
 <guid isPermaLink="false">comment 1133244 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/opinions#comment-1133239</link>
    <description> &lt;p&gt;*chortle*&lt;/p&gt;
 </description>
     <pubDate>Wed, 18 Jun 2003 16:30:27 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1133239 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/opinions#comment-1133237</link>
    <description> &lt;p&gt;People are so touchy when it comes to relativity.  I would like to relatively say that my relative thought functions are baseless as compared a relatively normal person.&lt;/p&gt;
 </description>
     <pubDate>Wed, 18 Jun 2003 16:24:42 +0000</pubDate>
 <dc:creator>BrandBlast</dc:creator>
 <guid isPermaLink="false">comment 1133237 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/opinions#comment-1133204</link>
    <description> &lt;p&gt;Cripes people, don&#039;t mislead!&lt;/p&gt;
&lt;p&gt;Relative table width is using % widths. Relative CSS means the elements float relative to the box they are in, and to each other. TOTALLY different concepts.&lt;/p&gt;
 </description>
     <pubDate>Tue, 17 Jun 2003 16:33:43 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1133204 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/opinions#comment-1133201</link>
    <description> &lt;p&gt;oh and also...about the relative CSS - &lt;/p&gt;
&lt;p&gt;When you say put it in a table you mean like:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;table width=? height=? cellspacing=? etc&amp;gt;&lt;br /&gt;&amp;lt;tr&amp;gt;&lt;br /&gt;&amp;lt;td&amp;gt;&lt;br /&gt;&amp;lt;div id=&amp;quot;blah&amp;quot;&amp;gt;BLAH BLAH&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;/table&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Thanks for the help and I will tell you once I have modified the site, just get back to me on those two issues thanks! &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>Tue, 17 Jun 2003 14:30:21 +0000</pubDate>
 <dc:creator>Timewell</dc:creator>
 <guid isPermaLink="false">comment 1133201 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/opinions#comment-1133157</link>
    <description> &lt;p&gt;About that preloader.  Do I have to replace image with every image for the nav cause I have a lot...what will the preloader actually do? &lt;/p&gt;
&lt;p&gt;Thanks for the feedback.  I will try to comment on all a bit later when I get some free time. &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>Mon, 16 Jun 2003 16:42:23 +0000</pubDate>
 <dc:creator>Timewell</dc:creator>
 <guid isPermaLink="false">comment 1133157 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
