In IE 6.0 and Firefox 1.5.0.4, the submenus of my dhtml dropdown menu are not visible
Return to Recent Questions
Q:
In IE 6.0 and Firefox 1.5.0.4, the dropdown submenus are not visible and it does not
float in firefox (floats in IE but no submenus) whereas in Opera 8.53 and
Opera 9 it works fully.
A:
Now you have two entries of dmenu.js file on your site in the <head> and <body> tags.
You must have only one entry of dmenu.js file.
You should write so:
...
<body>
<script type="text/javascript">var dmWorkPath = "http://www.gaurangapada.org/data.files/";</script>
<script type="text/javascript" src="http://www.gaurangapada.org/data.files/dmenu.js"></script>
</body>
Please, delete the same code from the tag.
Now you have:
var transparency="0";
That is why you can't see your subitems.
Please, write, for example, so:
var transparency="80";
Return to Recent Questions
|