|
You can use any text editor, e.g. NotePad, to edit the files. The only file that needs editing is the menu_with_subs.js file. This file is where you need to enter the paths for the actual menu items; define the color scheme and button width; and define the x,y coordinates for placement on your page.
- paths for actual menu items
This is the majority of the script. Each menu button is a line item that appears similar to: addItem(new PopUpMenuItem("FAQ List", "faq.html")); where the pair is (Button Label, Button Path) If you are not using a Flat Directory Structure, it is recommended that you use the absolute path to the page as follows: addItem(new PopUpMenuItem("FAQ List", "http://workbench.netobjects.com/faq.html"));
- placement of menu on page
near the end of the script, you will see two lines as follows: var minX = 2; var minY = 145; this specifies the constant position of the menu on the page. So if the page scrolls, the menu will always appear at x,y position: 2,145 in the browser window.
Once you have edited the scripts, save and exit from Notepad.
|