Reputation: 11
Why this second level doesn't open?
http://www.soauto.pt/soauto/quemsomos.htm
In IE works fine but in Chrome and Safari not open.
Upvotes: 1
Views: 226
Reputation: 6850
First of all... very diffucult to find out what you are asking for. Next time, it wouldn't hurt to add a little code and more information - it works in IE, but not chrome... what else?
Where I think the issue might lie is with this line :
document.getElementById(strMenu).style.visibility = 'visible';
I think this might solve the issue as this is what worked for me.
document.getElementById("addEvent").style.display = "block";
And then have the style.display
change back to "none"
when you want it to hide.
As of right now, the #mainmenu li ul
has the attribute display:none
and I couldn't find anything that would change that. Again, I didn't take the time to look through all your files. This is why it's important to leave code in your question.
Hope this helps!
Upvotes: 1