02-29-2008, 02:06 PM
|
|
|
You can add new top level items by opening the resources/custom.js file and adding something like this...
Code:
MI("index.html","<span class='u'>U</span>ltimate Drop Down Menu",194,"center","","",0,0,"u","#ffeac0","","","");
To add items to that new menu, you can add the following code:
Code:
// define submenu properties (width,"align to edge","text-alignment",v offset,h offset,"filter","smCOLOR","srCOLOR","sbCOLOR","shCOLOR","saLINK","saHOVER")
SP(184,"left","left",0,0,"","","","","","","");
// add submenu link items ("url","Link name","_target","alt text")
SI("index.html","Script home","","");
To further add "flyout" menus from there, use this code...
Code:
// define child menu properties (width,"align to edge","text-alignment",v offset,h offset,"filter","smCOLOR","srCOLOR","sbCOLOR","shCOLOR","saLINK","saHOVER")
CP(178,"left","center",0,0,"","","","","","","");
// add child menu link items ("url","Link name","_target","alt text")
CI("custom.php?v=menuALIGN","Global style definitions","","");
Hope this helps.
|
|