Hello Folks,
I was hoping one of you fine omnipitant beings could help me solve a problem with a dropdown menu I'm trying to create.
I created the menu for a mate's website using a tutorial I found. With a bit of jiggery pokery this menu works perfect in Fire Fox (no surprises, 5*'s to them), but straight refuses in IE.
I had a serach round to look for a fix, and though I had found the holy grail in a snippet of Java script. But this hasn't worked either.
The page is up at
and the CSS file
I pretty sure that I've named everything correctly (well it works in Firefox), I just asume that I've applied the fix wrong.
Any help on this will be massively appreciated, this is my first dive into CSS, and I feel like I've started on the top board at the pool!
Thanks again.
Jiggy
I was hoping one of you fine omnipitant beings could help me solve a problem with a dropdown menu I'm trying to create.
I created the menu for a mate's website using a tutorial I found. With a bit of jiggery pokery this menu works perfect in Fire Fox (no surprises, 5*'s to them), but straight refuses in IE.
I had a serach round to look for a fix, and though I had found the holy grail in a snippet of Java script. But this hasn't worked either.
Code:
<script type="text/javascript"><!--//--><![CDATA[//><!--
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("cssmenu");
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;
//--><!]]></script>
The page is up at
and the CSS file
I pretty sure that I've named everything correctly (well it works in Firefox), I just asume that I've applied the fix wrong.
Any help on this will be massively appreciated, this is my first dive into CSS, and I feel like I've started on the top board at the pool!
Thanks again.
Jiggy