Hi,
Open your menu_data.js file. Copy the main menu and paste it someplace so you have it. Then remove that menu from the menu_data.js file.
On your page, in that <td> cell paste the main menu in script tags with a drawMenus(); So, if this were the downloaded menu you could paste this into that cell
Code: Select all
<script>with(milonic=new menuname("Main Menu")){
alwaysvisible=1;
orientation="horizontal";
style=menuStyle;
position="relative";
aI("status=Back To Home Page;text=Home;url=http://milonic.com/;");
aI("showmenu=Samples;text=Menu Samples;");
aI("showmenu=Milonic;text=Milonic;");
aI("showmenu=Partners;text=Partners;");
aI("showmenu=Links;text=Links;");
aI("showmenu=MyMilonic;text=My Milonic;");
}
drawMenus();
</script>
Note that there is no top= left= and it now has a position="relative"; and an addition drawMenus(); which is still in the menu_data file, also. That menu will no longer be in the data file.
Then move your calls for the files to right after the body tag
Code: Select all
BODY text=#000000 bgColor=#3f3f3f><script type="text/javascript" src="milonic_src.js"></script>
<script type="text/javascript">
if(ns4)_d.write("<scr"+"ipt type=text/javascript src=mmenuns4.js><\/scr"+"ipt>");
else _d.write("<scr"+"ipt type=text/javascript src=mmenudom.js><\/scr"+"ipt>");
</script>
<script type="text/javascript" src="menu_data.js"></script>
Below my name are links to things, one is to table menu information.
If you need to post code please use the code button above, click it then post the code then click it again.
Ruth