Hope someone can advise me on how to do this but first I must try and explaine, so stay with me....
I have the menu code setup and running fine. As an amazon type tab menu with submenus that appear when the tab is selected.
See http://www.jupiter-ace.co.uk.
all is fine when seen on a res of 1280x1024, the submenus fit across the table fine, but when viewed in a res of 800x600 or 1024x800 the submenu bar appears out of the table. So is there a way to make the summenu fix in the table cell no matter what size the screen res is?
or is this not possible?
I hope, I have explained this well? Below is a snip of the menu code with some of the parm settings used.
Code: Select all
_subOffsetLeft=-2;
horizontalMenuDelay=true;
forgetClickValue="true";
with(menuStyle=new mm_style()){
bgimage="tab_on_white.gif";
fontfamily="Verdana, Tahoma, Arial";
fontsize="90%";
fontstyle="normal";
fontweight="bold";
itemheight=10;
itemwidth=80;
offcolor="black";
oncolor="red";
openonclick=1;
subimagepadding=3;
clickbgimage="tab_on_white_bk.gif";
}
with(submenuStyle=new mm_style()){
styleid=1;
align="left";
bgimage="tab_subback_bk.gif";
fontfamily="Verdana, Tahoma, Arial";
fontsize="90%";
fontstyle="normal";
fontweight="bold";
itemheight=8;
offbgcolor="black";
offcolor="#ffffff";
oncolor="red";
ondecoration="underline";
openonclick=1;
padding=6;
separatorimage="tab_subback_sep_a.gif";
separatorsize=3;
}
with(milonic=new menuname("home")){
menualign="left";
menuwidth="55%";
orientation="horizontal";
screenposition="center";
style=submenuStyle;
aI("separatorsize=4;");
aI("text=Home;url=index.html;");
aI("text=Whats New;url=whatsnew.html;");
aI("text=Contact Us;url=contactme.html;");
aI("text=Credits;url=credits.html;");
aI("text=Site Map;url=sitemap.html;");
aI("separatorsize=4;");
}
many thanks in advance and kind regards
Steve(spt)