http://dev.tennisrecruiting.net/boys.asp
Can you explain why the "Archived Lists" menu item behaves differently when you mouse over this link? Also if you select one of the archived lists, for example ...
http://dev.tennisrecruiting.net/list.asp?id=1075
... you will notice that the "Archived Lists" link is highlighted in an odd way.
This is the code I used to define the lists style:
Code: Select all
with(submenuStyle=new mm_style()){
margin=0;
bordercolor="#222222";
borderstyle="solid";
borderwidth=1;
fontfamily="Verdana, Arial, sans-serif";
fontsize="10px";
fontstyle="normal";
offbgcolor="#dddddd";
offcolor="#222222";
onbgcolor="#eeeeee";
onborder="1px solid #ffffff";
oncolor="#222222";
pagebgcolor="#222222";
pagecolor="#eeeeee";
padding="4px 6px 4px 6px";
subimagepadding=2;
subimage = "/img/menus/arrow_mil.gif";
}
Code: Select all
with(milonic=new menuname("Recruiting")){
margin=4;
style=submenuStyle;
left="offset=1";
aI("text=Lists Index;url=/boys.asp;separatorsize=1;separatorcolor=#333333;");
aI("text=Seniors;url=/list.asp?id=1095;");
aI("text=Juniors;url=/list.asp?id=1105;");
aI("text=Sophomores ;url=/list.asp?id=1115;");
aI("text=Freshmen;url=/list.asp?id=1125;");
aI("text=8th Graders;url=/list.asp?id=1135;");
aI("text=7th Graders;url=/list.asp?id=1145;");
aI("text=6th Graders;url=/list.asp?id=1155;separatorsize=1;separatorcolor=#333333;");
aI("text=Archived Lists;showmenu=recruitingArchives;");
}
with(milonic=new menuname("recruitingArchives")){
margin=4;
style=submenuStyle;
left="offset=0";
top="offset=-1";
aI("text=Class of 2008;url=/list.asp?id=1085;");
aI("text=Class of 2007;url=/list.asp?id=1075;");
aI("text=Class of 2006;url=/list.asp?id=1065;");
aI("text=Class of 2005;url=/list.asp?id=1055;");
aI("text=Class of 2004;url=/list.asp?id=1045;");
}
Thanks,
Shannon