[Javascript] Son of Suckerfish problem

Triche Osborne wdlists at triche-osborne.com
Wed Apr 5 08:30:55 CDT 2006


Schalk wrote:
> Greetings All,
> 
> Can someone please have a look at this page: http://www.epda.cc/joomla/
> 
> Why is the JavaScript not functioning? What am I missing? Thanks!
> 

The problem is a z-index issue rather than a JavaScript one: IE is 
putting the TABLE which is located beneath the menu on top of your 
revealed items. (You can see this behavior if you change the style to 
"left: 0" instead of "left: auto." On the mouseover, the inner UL will 
appear at screen left, partially obscured by the TABLE on top of it.)

If you do something like this . . .

#nav li:hover ul, #nav li.sfhover ul {	
	left: auto;
        z-index: 3000;
}

. . . it displays the menu on top.

Triche Osborne




More information about the Javascript mailing list