Here are the changes I made for my dynamic
menu (when the site was at Homestead). Please do not use this because the colors and links will be wrong for your site. Also remember you do not copy-and-paste this into the HTML element on your page. This is something you need to change in the file itself
by opening it with NotePad or WordPad and uploading it to your Files directory for your site.
<!--
/*
Configure menu styles below
NOTE: To edit the link colors, go to the STYLE tags and edit the ssm2Items colors
*/
YOffset=150; // no quotes!!
XOffset=0;
staticYOffset=30; // no quotes!!
slideSpeed=20 // no quotes!!
waitTime=100; // no quotes!! this sets the time the menu stays out for after the mouse goes off it.
menuBGColor="#000000";
menuIsStatic="yes"; //this sets whether menu should stay static on the screen
menuWidth=130; // Must be a multiple of 10! no quotes!!
menuCols=2;
hdrFontFamily="arial";
hdrFontSize="2";
hdrFontColor="white";
hdrBGColor="#a52a2a";
hdrAlign="left";
hdrVAlign="center";
hdrHeight="15";
linkFontFamily="arial";
linkFontSize="2";
linkBGColor="#deb887";
linkOverBGColor="#ffe4c4";
linkTarget="_top";
linkAlign="Left";
barBGColor="#000000";
barFontFamily="arial";
barFontSize="2";
barFontColor="white";
barVAlign="center";
barWidth=20; // no quotes!!
barText="MENU"; // <IMG> tag supported. Put exact html for an image to show.
///////////////////////////
// ssmItems[...]=[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
ssmItems[0]=["Selections"] //create header
ssmItems[1]=["Home", "http://ramblingscript.homestead.com/index.html", ""]
ssmItems[2]=["Script", "http://ramblingscript.homestead.com/script.html",""]
ssmItems[3]=["Links", "http://ramblingscript.homestead.com/Links.html", ""]
ssmItems[4]=["Email", "mailto:[email protected]", "_new"]
ssmItems[5]=["Rambling Applet", "http://ramblingapplet.homestead.com/", "_new"]
ssmItems[6]=["Jay's Lab", "http://jayslab.homestead.com/", "_new"]
buildMenu();
//-->
|
|