Hello All,

A couple of days ago I posted a request for help with a CSS menu that would 
not work in IE6, but
worked great in Firefox.  I received a great response that pointed me to 
this article,
http://www.alistapart.com/articles/horizdropdowns/

This was a big help, and I implemented it the best I could, but the menu 
STILL will not work in
IE6!

Here's a link to the html page with the 
CSS.  http://www.webdesignpartners.com/blackstock/index.html

Here's the Javascript in the drop_down.js file that I copied from the 
article.  I'm not a JS programmer,
so it's very possible I've made some stupid mistake.

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
   }
   node.onmouseout=function() {
   this.className=this.className.replace(" over", "");
    }
    }
   }
  }
}
window.onload=startList;

Any help with this will be greatly appreciated!

Phil

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to