<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1002954" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1002954</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/rollover-links-0#comment-1013058</link>
    <description> &lt;p&gt;uuuhh... learned something &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, 07 Mar 2000 18:27:00 +0000</pubDate>
 <dc:creator>cynsanity</dc:creator>
 <guid isPermaLink="false">comment 1013058 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/rollover-links-0#comment-1013057</link>
    <description> &lt;p&gt;Hi Bob,&lt;/p&gt;
&lt;p&gt;   You may not like this -- as far as I know the following does not work for NN (and believe me I have tried.) because NS does not support changing bgColor in cells.&lt;br /&gt;
   Essentially, you use dHTML and cell IDing&lt;br /&gt;
The following code is from an upcoming page at my site. So check there later in the week for a complete script.&lt;/p&gt;
&lt;p&gt; &amp;lt;td id=&quot;cellB0&quot;&lt;br /&gt;
    onmouseover = &quot;return swapColor(&#039;cellB0&#039;,true)&quot;&lt;br /&gt;
    onmouseout=&quot;return swapColor(&#039;cellB0&#039;,false)&quot;&amp;gt;English:&amp;lt;/td&amp;gt;&lt;br /&gt;
 &amp;lt;td id=&quot;cellB1&quot;&lt;br /&gt;
         onmouseover=&quot;swapColor(&#039;cellB1&#039;,true)&quot;&lt;br /&gt;
                onmouseout=&quot;swapColor(&#039;cellB1&#039;,false)&quot;&amp;gt;85&amp;lt;/td&amp;gt;&lt;br /&gt;
                &amp;lt;td id=&quot;cellB2&quot;&amp;gt;55&amp;lt;/td&amp;gt;&lt;/p&gt;
&lt;p&gt;function swapColor(cell, switchOn)&lt;br /&gt;
{&lt;br /&gt;
  var source;&lt;br /&gt;
  if (!isOk)&lt;br /&gt;
  {&lt;br /&gt;
     alert(&quot;Sorry this script works only with IE browsers.&quot;);&lt;br /&gt;
     return&lt;br /&gt;
  }&lt;br /&gt;
  source = document.all[cell];&lt;/p&gt;
&lt;p&gt;  if (cell == &quot;cellB1&quot; &amp;amp;&amp;amp; switchOn != true)&lt;br /&gt;
  {&lt;br /&gt;
     if (document.myForm.C1.checked)  source.bgColor = document.myForm.C1.value;&lt;br /&gt;
      else                            source.bgColor = document.bgColor;&lt;br /&gt;
  }&lt;br /&gt;
  else&lt;br /&gt;
  {&lt;br /&gt;
    if (switchOn == true)        source.bgColor = &#039;#66ff66&#039;;&lt;br /&gt;
    else if (switchOn == false)  source.bgColor = document.bgColor;&lt;br /&gt;
    else                         source.bgColor = switchOn;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;Vinny &lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;a href=&quot;http://members.aol.com/grassblad&quot; class=&quot;bb-url&quot;&gt;GrassBlade: cut&amp;amp;paste javascript&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 26 Feb 2000 22:55:00 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1013057 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/rollover-links-0#comment-1013056</link>
    <description> &lt;p&gt;Cynsanity,&lt;/p&gt;
&lt;p&gt;I&#039;d like to do something along the lines that AB Carrol is doing, but not quite the same.  I have a table with six rows and a bgcolor of lightblue.  The first column in each row is a link to another page in my site.  What I&#039;d like to do is to have the bgcolor of the entire row of the table change when the cursor is positioned over the link in the first column.  I don&#039;t want to use image changes to do this (I already figured out how to do it by having each link be an img and doing rollovers on each img).  i&#039;d like to leave the table defined as it is, but change the bgcolor.  I can change the bgcolor of the entire page using a onmouseover command, but can&#039;t figure out how to change the bgcolor of just a row in the table (or the whole table itself for that matter).  Any ideas?  Thanks in advance for any help.&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;
 </description>
     <pubDate>Fri, 25 Feb 2000 21:04:00 +0000</pubDate>
 <dc:creator>Bob</dc:creator>
 <guid isPermaLink="false">comment 1013056 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/rollover-links-0#comment-1013055</link>
    <description> &lt;p&gt;Thanks Cynsanity,&lt;/p&gt;
&lt;p&gt;However, you gave me the script for moseover events - right?  I was actually curious on how to make the &quot;hover&quot; code work in NS not just ofr IE.  This code does not involve the use of images.&lt;/p&gt;
&lt;p&gt;Thanks Though!&lt;br /&gt;
-AB   &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
&lt;p&gt;PS! PhotoShop rules!&lt;/p&gt;
 </description>
     <pubDate>Fri, 25 Feb 2000 20:01:00 +0000</pubDate>
 <dc:creator>AB Carroll</dc:creator>
 <guid isPermaLink="false">comment 1013055 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/rollover-links-0#comment-1013054</link>
    <description> &lt;p&gt;dammit I forgot something. Simply edit the linkname in Photoshop or whatever you&#039;re using in the way that it looks like you want to have it. Then store it, and paste it as img2. I always use Adobe Photoshop&lt;/p&gt;
 </description>
     <pubDate>Fri, 25 Feb 2000 19:52:00 +0000</pubDate>
 <dc:creator>cynsanity</dc:creator>
 <guid isPermaLink="false">comment 1013054 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/rollover-links-0#comment-1013053</link>
    <description> &lt;p&gt;hi there...&lt;br /&gt;
ok here&#039;s the code I hope I made it correct... if it doesn&#039;t work please tell me, but I think it&#039;s okay...  place it within the head tags...&lt;/p&gt;
&lt;p&gt;&amp;lt;!-- Rollover Image Script --&amp;gt;&lt;br /&gt;
&amp;lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot;&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
function SwitchImg()&lt;br /&gt;
{ //start&lt;br /&gt;
  var rem, keep=0, store, obj, switcher=new Array, history=document.Data;&lt;br /&gt;
    for (rem=0; rem &amp;lt; (SwitchImg.arguments.length-2); rem+=3) {&lt;br /&gt;
    	store = SwitchImg.arguments[(navigator.appName == &#039;Netscape&#039;)?rem:rem+1];&lt;br /&gt;
    if ((store.indexOf(&#039;document.layers[&#039;)==0 &amp;amp;&amp;amp; document.layers==null) &amp;#0124; &amp;#0124;&lt;br /&gt;
        (store.indexOf(&#039;document.all[&#039;)==0 &amp;amp;&amp;amp; document.all==null))&lt;br /&gt;
         store = &#039;document&#039;+store.substring(store.lastIndexOf(&#039;.&#039;),store.length);&lt;br /&gt;
         obj = eval(store);&lt;br /&gt;
    if (obj != null) {&lt;br /&gt;
   	   switcher[keep++] = obj;&lt;br /&gt;
      switcher[keep++] = (history==null &amp;#0124; &amp;#0124; history[keep-1]!=obj)?obj.src:history[keep];&lt;br /&gt;
      obj.src = SwitchImg.arguments[rem+2];&lt;br /&gt;
  } }&lt;br /&gt;
  document.Data = switcher;&lt;br /&gt;
} //end&lt;/p&gt;
&lt;p&gt;function RestoreImg()&lt;br /&gt;
{ //start&lt;br /&gt;
  if (document.Data != null)&lt;br /&gt;
    for (var rem=0; rem&amp;lt;(document.Data.length-1); rem+=2)&lt;br /&gt;
      document.Data[rem].src=document.Data[rem+1];&lt;br /&gt;
} //end&lt;/p&gt;
&lt;p&gt;//--&amp;gt;&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;.html&quot; onMouseOut=&quot;RestoreImg()&quot; onMouseOver=&quot;SwitchImg(&#039;document.name&#039;,&#039;document.name&#039;,&#039;direction of img2&#039;)&quot;&amp;gt;&amp;lt;img src=&quot;direction of the picture1&quot; name=&quot;name&quot; width=&quot;x&quot; height=&quot;y&quot; alt=&quot;&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt;I hope it works... if it doesn&#039;t I&#039;ll email you the whole code with the pictures I used. Then it&#039;ll surely work  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 25 Feb 2000 19:47:00 +0000</pubDate>
 <dc:creator>cynsanity</dc:creator>
 <guid isPermaLink="false">comment 1013053 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/rollover-links-0#comment-1013052</link>
    <description> &lt;p&gt;yes, please....... &lt;img src=&quot;http://www.webmaster-forums.com/ubb/tongue.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 25 Feb 2000 00:28:00 +0000</pubDate>
 <dc:creator>AB Carroll</dc:creator>
 <guid isPermaLink="false">comment 1013052 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/rollover-links-0#comment-1013051</link>
    <description> &lt;p&gt;if you want to have the working code for it then tell me... fortunately I found it out some time ago *g*&lt;/p&gt;
 </description>
     <pubDate>Fri, 25 Feb 2000 00:22:00 +0000</pubDate>
 <dc:creator>cynsanity</dc:creator>
 <guid isPermaLink="false">comment 1013051 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/rollover-links-0#comment-1013050</link>
    <description> &lt;p&gt;Hi,   &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;br /&gt;
Some tips when working with CSS code tags in Netscape browser.&lt;/p&gt;
&lt;p&gt;1)&amp;lt;HR&amp;gt; Horizontal rules can be styled in IE, but not in Netscape.&lt;br /&gt;
............................................&lt;br /&gt;
Carroll, this is the answer to your question.&lt;/p&gt;
&lt;p&gt;2)&amp;lt;A&amp;gt; Netscape treats styles on the anchor tag inconsistently, sometimes Netscape will act correctly the first time the page displays, but then &quot;forget&quot; the style if you come back to reload that page.&lt;br /&gt;
.............................................&lt;/p&gt;
&lt;p&gt;3)&amp;lt;TABLE&amp;gt; tags works fine in IE, but behave strangely in Netscape. In Netscape when &amp;lt;TABLE&amp;gt; is styled, &amp;lt;TH, &amp;lt;TR&amp;gt; and &amp;lt;TD inherit just some of those styles(exp: BG works but not the FONT family). But if you try to style&amp;lt;TH&amp;gt;, &amp;lt;TR&amp;gt;, and &amp;lt;TD&amp;gt; indidually, and not style &amp;lt;TABLE&amp;gt;, then Netscape actually crashes(on both platforms). In other words, when mixing styles and tables.&lt;/p&gt;
&lt;p&gt;The above was copied from the book:&lt;br /&gt;
Guide To Style Sheet by Steven Mulder.&lt;/p&gt;
&lt;p&gt;Hope this helps, &lt;/p&gt;
&lt;p&gt;NSS &lt;a href=&quot;http://www.unitronics.com&quot; class=&quot;bb-url&quot;&gt;http://www.unitronics.com&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;[This message has been edited by NSS (edited 23 February 2000).]&lt;/p&gt;
&lt;p&gt;[This message has been edited by NSS (edited 23 February 2000).]&lt;/p&gt;
 </description>
     <pubDate>Thu, 24 Feb 2000 01:23:00 +0000</pubDate>
 <dc:creator>NSS</dc:creator>
 <guid isPermaLink="false">comment 1013050 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/rollover-links-0#comment-1013049</link>
    <description> &lt;p&gt;About the color -- make sure you close the declaration with a semi-colon and try using the hex or rgb instead.  I find the hex colours are the most supported, so use &amp;lt;b&amp;gt;color: #000000;&amp;lt;/b&amp;gt; instead.  Also, make sure the colours are set with the other tags as well, especially if you want the colour to change on hover.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Suzanne&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;a href=&quot;http://www.zerocattle.com&quot; class=&quot;bb-url&quot;&gt;Zero Cattle&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.inforamp.net/~suzanne/&quot; class=&quot;bb-url&quot;&gt;Suzanne&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.inforamp.net/~suzanne/index/celtic.html&quot; class=&quot;bb-url&quot;&gt;Tables DeMystified&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 23 Feb 2000 22:43:00 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1013049 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
