http://bmaplenut.awardspace.com/monster/index.html
I am trying to make the menu float from the table cell which states: "menu should be here". I jave tried for a few hours but i still cannot fix the problem.
This is the menu code:
Code: Select all
fixMozillaZIndex=true; //Fixes Z-Index problem with Mozilla browsers but causes odd scrolling problem, toggle to see if it helps
_menuCloseDelay=0;
_menuOpenDelay=0;
_subOffsetTop=2;
_subOffsetLeft=-2;
with(monstermenustyle=new mm_style()){
bordercolor="#000";
borderstyle="solid";
borderwidth=1;
fontfamily="Verdana, Tahoma, Arial";
fontsize="75%";
fontstyle="normal";
headerbgcolor="#069";
headercolor="#000";
offbgcolor="#069";
offcolor="#FFF";
onbgcolor="#5AF";
oncolor="#FFF";
padding=3;
pagebgcolor="#5AF";
pagecolor="#FFF";
separatorcolor="#000";
separatorsize=1;
subimage="http://milonic.com/imagepack/Arrows/arrow1/white_4x5.gif";
subimagepadding=2;
align='center';
}
with(new menuname("monstermenu")){
style=monstermenustyle;
alwaysvisible=1;
orientation="horizontal";
followscroll='0';
position='relative';
top=1
aI("text=Level;url=/monster/index.html");
aI("text=1 - 10;url=/monster/level_1.html");
aI("text=11 - 20;url=/monster/level_2.html");
aI("text=21 - 30;url=/monster/level_3.html");
aI("text=31 - 40;url=/monster/level_4.html");
aI("text=41 - 50;url=/monster/level_5.html");
aI("text=51 - 60;url=/monster/level_6.html");
aI("text=61 - 70;url=/monster/level_7.html");
aI("text=71 - 80;url=/monster/level_8.html");
aI("text=81 - 90;url=/monster/level_9.html");
aI("text=91 - 100;url=/monster/level_10.html");
aI("text=101 - 200;url=/monster/level_11.html");
aI("text=Premium Road;url=/monster/premium.html");
aI("text=Boss;url=/monster/boss.html");
}
drawMenus();
Thanks Alot !

