Menu is invisible
Menu is invisible
just completed a small site using Dreamweaver as my editor and the menu viewed and worked perfectly when viewed in a browser. However when I loaded everything to test the site on the web, my pages are there but no navigational menu can be seen. If you can point me as to possible steps that I missed, I would greatly appreciate any help. The product worked great!
Re: Menu is invisible
someone told me to use the error console in Firefox to see if the problem would show up there. I received two error message that I think might be the problem. The first is ns4 is not defined (problem line is indicated) and menuname is not defined.
Any help or explanation would be most appreciated.
Any help or explanation would be most appreciated.
Re: Menu is invisible
Hi,
Sounds like the files are not where the menu thinks they are.
To make things easy, ensure that the files mmenudom.js, milonic_src.js and menu_data.js are in the main (root) directory of your website and that your <SCRIPT> references are like this:
HTH,
Andy
Sounds like the files are not where the menu thinks they are.
To make things easy, ensure that the files mmenudom.js, milonic_src.js and menu_data.js are in the main (root) directory of your website and that your <SCRIPT> references are like this:
Code: Select all
<script type="text/javascript" src="/milonic_src.js></script>
<script type="text/javascript" src="/mmenudom.js></script>
<script type="text/javascript" src="/menu_data.js></script>
Andy
Re: Menu is invisible
Thank you Andy. I will try that.