Edit menu items
To edit a menu item select the item and
modify it. E.g 'Services
1' can be changed to 'Web Design'. Add the link
to the menu item by adding "location='/your web page
path'". E.g.
fw_menu_0.addMenuItem("Services 1
","location='/services1.htm'");
Add menu items
Add menu items by copy-pasting the previous
menu item and replacing the name with the new
menu item. E.g If you want an extra service
'Services 4', you
would have to copy 'Services
3' in the next line and change 'Service 3' to 'Service 4'. If you want 5
Services, the code will look like this:
fw_menu_0.addMenuItem("Services
1"); fw_menu_0.addMenuItem("Services
2"); fw_menu_0.addMenuItem("Services
3"); fw_menu_0.addMenuItem("Services
4"); fw_menu_0.addMenuItem("Services 5");
Delete menu items
If you want to delete a menu item select the
line for that item and delete it. E.g. If you
only wanted 2 menu items the code would be:
fw_menu_0.addMenuItem("Services
1"); fw_menu_0.addMenuItem("Services 2");
|