Hi,
It seems that NN7 is having a problem with the center tags around the tables. Try the following to put it in the table, actually I put it in a div, the table always had the problem.
Cut the main menu from the menu_data.js file, paste it into a separate file, paste a drawMenus(); at the end and save it [I use main_data.js]
Then move your call for the menu_data.js file up with the other menu files, and put the main_data.js file where you now have the menu data file.
main_data file:
Code: Select all
with(milonic=new menuname("Main Menu")){
alwaysvisible=1;
orientation="horizontal";
style=menuStyle;
position="relative";
aI("text=Home;url=/main.aspx;");
aI("showmenu=Aboutbengals;text=About Bengals;");
aI("showmenu=Abouttibcs;text=About TIBCS;");
aI("text=Breeder Directory;url=/breeders.aspx;");
aI("text=Available Cats;url=/retirees/index.aspx;");
aI("text=Members Only;url=/login.aspx;");
aI("showmenu=Pets;text=Pet Corner;");
}
drawMenus();
Your call for files right after the body tag:
Code: Select all
<BODY vLink=#ff9c31 aLink=#ff9c31 link=#ff9c31 bgColor=#000000><BR>
<SCRIPT src="milonic_src.js" type=text/javascript></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 src="menu_data.js" type=text/javascript></SCRIPT>
I don't know how your menu was originally in the table, but as an example I did this, I added a div between the tables [I needed to put in a linebreak to make the div have space between it and the div.
Code: Select all
<CENTER>
<TABLE width=587 align=center>
<TBODY>
<TR>
<TD class=navbar vAlign=top align=middle width=581><A
href="http://websites.milonic.com/bengalcat.com/"><IMG height=54 alt="TIBCS Home"
src="tibcswordslogo.gif" width=548 border=0></A><br>
</TD></TR></TBODY></TABLE></CENTER>
<!-- Begin Navigation Bar Div -->
<div align="center"><SCRIPT src="main_data.js" type=text/javascript></SCRIPT></div>
<!-- End Navigation Bar Div -->
<CENTER>
<TABLE width=587 align=center>
<TBODY>
<TR>
<TR>
<TD class=navbar vAlign=top align=middle width=581>
<BR><IMG height=30
alt="TIBCS Bar" src="tibcsbar.gif" width=432
border=0><BR> </TD></TR></TBODY>
</TABLE></CENTER>
Hope this takes care of it. I tested and it seems to be OK.
Ruth