Following the instructions EXACTLY to locate the horizontal menu bar in a table cell, the menu bar also appears in the upper left.
See http://midlife.test.gospelcom.net
How is the menu bar with the absolute address prevented from appearing?
Navigation Menu Appears Twice
Navigation Menu Appears Twice
Webmaster at Finishers dot org
You don't put the call for the menu_data.js file into the table cell.
1. You remove the main menu from the menu_data.js file
2. You call the menu_data.js file along with the other 3 files right after the body tag.
3. You put the main menu information in the table cell inside of script tags and with a drawmenus();
4. You can put the main menu into it's own js file and call the file in the table cell using script tags <script>main_data.js</script> You would then have two menu files, the menu_data.js file called after the body tag and a main_menu.js file called in the table cell.
Ruth
1. You remove the main menu from the menu_data.js file
2. You call the menu_data.js file along with the other 3 files right after the body tag.
3. You put the main menu information in the table cell inside of script tags and with a drawmenus();
Code: Select all
<HTML>
<HEAD>
<TITLE>Table Based Menu</title>
</HEAD>
<BODY> --CALL THE MENU FILES HERE INCLUDING the menu_data.js
<SCRIPT type="text/javascript" src="milonic_src.js"></SCRIPT> ETC.
<TABLE>
<TR>
<TD>PUT THE MAIN MENU HERE INSIDE SCRIPT TAGS and with a drawmenus();
<SCRIPT TYPE="text/javascript">
with(new menuname("Main Menu")){
ETC.
}
drawMenus();
</SCRIPT>
</TD>
</TR>
</TABLE>
</BODY></HTML>
Ruth