Rembert Weijers wrote:
Hi Scott
I regret that the DHTML menu bulder has gone. the replacement as the css menu builder gives the same building menu (almost) but doesn't give the possibility of making one menu working on all pages by just a little bit of code like f.i. : <script type="text/javascript" src="./Styles/menu-WAR.js"></script>
By this code the menu works in all pages of the website and changes can be made in the DHTML editor and effects on all pages.
The CSS menu will ask for changing the menu in all the pages.
Also this menu can be centered on a page and th is not possible with the CSS menu.
So I keep the old HTML ediditor (but will try a little more in the 2009 pre version)
suggestions are welcome
Rembert Weijers
Another option would be to use PHP, server side includes, or some other scripting language to add the menu to each page. You could put the menu in it's own HTML file (not other content, just the code for the menu) then include it like this:
<?php include("/menu.html"); ?>
The code for Server Side Includes would be very similar and something like this:
<!--#include virtual="/menu.html" -->
There are far more sophisticated and elegant ways to do it, but that's a quick fix.