I'm using the following code to declare main menu:
Code: Select all
with(milonic=new menuname("Main Menu")){
style=menuStyle;
screenposition="top;right"
alwaysvisible=1;
left="offset=-20";
top="offset=170";
followscroll="100,5,100";
orientation="vertical";
aI("text=Home;url=http://milonic.com/;status=Back To Home Page;");
aI("text=Menu Samples;showmenu=Samples;");
aI("text=Milonic;showmenu=Milonic;");
aI("text=Partners;showmenu=Partners;");
aI("text=Links;showmenu=Links;");
aI("text=My Milonic;showmenu=My Milonic;");
}
http://www.angelfire.com/un/milonicmenu
The problem arises when user resizes the window. I want to achieve railing slide effect (and prevent page content overlap). Meaning, menu's right edge must always remain on the gray thick line.
If someone knows how to do that, please tell me.