Hi,
First you need to upgrade your menu to the newest version.
Then copy the following and try it. I only pasted the style and main menu.
Code: Select all
with(miniStyle=new mm_style()){
oncolor="#FFFFFF";
onbgcolor="#000000";
offcolor="#FFFFFF";
offbgcolor="#DCE9F0";
padding=2;
separatorcolor="#FFFFFF";
separatorsize=1;
bgimage="bgmen.jpg";
subimage="whitearrowtransp.gif";
bordercolor="#FFFFFF";
borderwidth=1;
borderstyle="solid";
fontstyle="normal";
headerbgcolor="#FFFFFF";
headercolor="#000000";
outfilter="randomdissolve(duration=0.3)";
overfilter="Fade(duration=0.2);Alpha(opacity=90);Shadow(color=#777777', Direction=135, Strength=5)";
pagebgcolor="#82B6D7";
pagecolor="#FFAD19";
subimagepadding=2;
rawcss="padding-left:20";
pageborder="1px solid #FFFFFFF";
headerborder="1px solid #FFFFFF";
}
with(milonic=new menuname("Main Menu")){
style=miniStyle;
alwaysvisible=1;
position="relative";
menuwidth="100%";
aI("text=Home;url=index.php;");
aI("text=News;url=index.php?news=yes;");
aI("text=NLT Parts Catalog;url=index.php?categoryID=100;");
aI("text=Special Sale Items;url=index.php?categoryID=200;");
aI("text=Portable Radios;url=index.php?categoryID=300;showmenu=Portable Radios;");
aI("text=Mobile Radios;url=index.php?categoryID=400;showmenu=Mobile Radios;");
aI("text=Stations;url=index.php?categoryID=500;showmenu=Stations;");
aI("text=Tech Specials;url=index.php?categoryID=600;");
aI("text=Service Aids;url=index.php?categoryID=700;showmenu=Service Aids;");
aI("text=Site Credits;url=index.php?show_aux_page=14;");
aI("text=M/A Com Parts;url=index.php?show_aux_page=10;");
aI("text=NLT Repair Depot;url=index.php?show_aux_page=11;");
}
As to the orange color it is because the word separatorcolor was not spelled correctly.
Also, note that you have coded pageborder and headerborder incorrectly. Those borders as with off and onborder require that you use a css style code i.e. headerborder="1px solid #ffffff"; same for pageborder and onborder and offborder.
Below my name are some links to style, menu and item properties. Most of them have examples or explanations on how to set up.
Hope this helps. Took me awhile to find it, I almost reported it as a bug!
Ruth