Here's the problem:

That's fine, I thought. It must just be some strange value in the menu configuration file. It wasn't. Turns out, it's the way I'm wrapping the menu up. On the site layout I have a nice menu bar. It's just a gif file and is layered with a DIV.
Ontop of that, I layer the menu code:
Code: Select all
<div class="topNavBarContainer">
<img src="navBar.gif">
</div>
<div class="topNavBarContents">
<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>
</div>
Code: Select all
.topNavBarContainer
{
bgcolor: #fff;
position : absolute;
top : 75px;
left : 40px;
padding: 0px;
z-index : 0;
margin : 0;
}
.topNavBarContents
{
position : absolute;
top : 86px;
left : 55px;
padding: 0px;
margin : 0px;
width: 700px;
font-weight: bold;
}
Can anyone help?
Also: how do I go about getting rid of the MILONIC link? I'm willing to pay a registration fee.