| 
      Return to Recent Questions Whenever I bring it into FrontPage all I get is a text drop down navigation menu. 
 
 Q:
 I used Deluxe Menu and generated a beautiful drop down navigation menu for
 our school web page. however, I am using MS FrontPage and apparently
 it is blocking the content. Whenever I bring it into the program all
 I get is a text drop down navigation menu. What am I doing or not doing?
 
 A:
 Deluxe Menu wasn't developed as Dreamweaver/Frontpage extension,
BUT you can use it as standard Javascript files. To install the drop down navigation menu
into your html page:
 
 1. create and save .js file with your menu parameters in Deluxe Tuner
 2. open the page in Frontpage
 3. add several rows of code (<script> tags), For info see:
 http://deluxe-menu.com/installation-info.html
 
 <head>
 <!-- Deluxe Menu -->
 <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
 <script type="text/javascript">var dmWorkPath="deluxe-menu.files/";</script>
 <script type="text/javascript" src="deluxe-menu.files/dmenu.js"></script>
 </head>
 <body>
 ...
 <script type="text/javascript" src="data-deluxe-menu.js"></script>//your data file created in Deluxe Tuner
 ...
 </body>
 You should copy all engine files and images for the drop down navigation menu in "deluxe-menu.files/" folder and paste it in the same folder with you .html files.
 
 Engine files:
 dmenu.js
 dmenu4.js
 dmenu_add.js
 dmenu_dyn.js
 dmenu_key.js
 dmenu_cf.js
 dmenu_popup.js
 dmenu_ajax.js
 dmenu_search.js
 
 That's all.
 
 It is possible that you'll have errors in the preview but your drop down navigation menu
should work fine in the browser.
 
 
 
 
 
 
 Return to Recent Questions
 
 Related:
 
 
         Sep 02, 2006 - Little vertical spacers between menu items in the drop down menu.
Sep 06, 2006 - The alighment of the dropdown menu is off to the right in  Firefox...
Sep 06, 2006 - The first item of the html drop down menu stays highlighted.
Sep 11, 2006 - How can I hide my dropdown menu on print?
Sep 11, 2006 - If I use doctype the settings of the submenus in javascript dropdown menu get lost.
Sep 23, 2006 - Is it possible that javascript drop down menus doesn't put anything on the local computer?
Sep 26, 2006 - Firefox doesn't support the dropshadow and effects in the javascript pull down menu.
Sep 29, 2006 - Is it possible to use an external file in the java drop down menu?
Oct 01, 2006 - All of the items in html pull down menu are different sizes.
Oct 01, 2006 - When I click on link of my vertical drop down menu no file is loaded!?
Oct 16, 2006 - I need the sub menu of the drop menu to be vertical instead of horizontal
 |