I read the other posts regarding this and followed the instructions, but am still having a problem.
I logged in and downloaded the licensed version of menu, unzipped the file, and FTP'd the milonic_src.js, mmenudom.js and mmenuns4.js file to my website. I did not copy the menu_data.js file because the code is on each page on my website because I have the menu within a <td> cell, but do not think that is the issue here.
The milonic_src.js file says:
License Details:
Number: <mynumber>
URL: http://www.rsdawareness.com
Type: Free
Dated: Monday April 25 2005
The URL of my test page is http://www.rsdawareness.com/testingmenu.htm.
I appreciate any help that can be given.
removing the "MILONIC" link
Hi David,
You're linking to the milonic site files instead of your files on your site.
You need to change to your own files which have the license in them and will not put the Milonic in the menu.
Also, just for info purposes with regard your table menu, you are correct in putting the main menu into the cell, that is required, but you do not have to put all the menu_data.js information on the page like that. You can put all the information on styles and submenus that you now have in script tags into a menu_data.js file, name it what you want, and just call the file up with the other files. The only requirement is that it comes right after the body tag so that it gets 'read' first before the main menu is built. Keep the main menu just as you have it [or if you prefer you can also put that into a .js file [main_data.js or something], and call it in the table cell.
Ruth
You're linking to the milonic site files instead of your files on your site.
Code: Select all
<SCRIPT type="text/javascript" src="http://milonic.com/milonic_src.js"></SCRIPT>
<script type="text/javascript">
<!--
if(ns4)_d.write("<SCR"+"IPT LANGUAGE=JavaScript SRC=http://milonic.com/mmenuns4.js><\/SCR"+"IPT>");
else _d.write("<SCR"+"IPT LANGUAGE=JavaScript SRC=http://milonic.com/mmenudom.js><\/SCR"+"IPT>");
-->
</SCRIPT>
Also, just for info purposes with regard your table menu, you are correct in putting the main menu into the cell, that is required, but you do not have to put all the menu_data.js information on the page like that. You can put all the information on styles and submenus that you now have in script tags into a menu_data.js file, name it what you want, and just call the file up with the other files. The only requirement is that it comes right after the body tag so that it gets 'read' first before the main menu is built. Keep the main menu just as you have it [or if you prefer you can also put that into a .js file [main_data.js or something], and call it in the table cell.
Ruth
Ruth,
Thank you for your help -- at least now I don't have to have the menu information at the top of each page. I was able to get the js file called correctly, but the MILONIC link is still on the first link?
If I had any hair left to pull out, I would be doing it by now.
http://www.rsdawareness.com
Thank you for your help -- at least now I don't have to have the menu information at the top of each page. I was able to get the js file called correctly, but the MILONIC link is still on the first link?
If I had any hair left to pull out, I would be doing it by now.
http://www.rsdawareness.com
You played shortcut with the link...
Should be...
Note the closing / , which really is proper for all links that do not refer to a specific page.
Code: Select all
href="https://milonic.com"
Code: Select all
href="https://milonic.com/"
John
You also have to put the .com in the text part, I believe. The whole link should be
Code: Select all
<a href="https://milonic.com/">JavaScript Menu Courtesy of Milonic.com</a>