- Search feature - add the search area in the menu and type symbols. - Keyboard navigation - press Ctrl+F2 to enter the top menu - Transition #14 - "fade out" effect - UL/LI items structure - Relative/Absolute menu position - Visible over select boxes, iframes, pdf, flash, Java applets. - Hundreds of pre-designed templates - Deluxe Tuner - visual interface to create and modify dhtml menus easily and in no time.
Apply any font of any color, size and font decoration you need. Use any available type, color and thickness of a menu's frame. Choose any color for submenus and items backgrounds.
Set the size of the menu in percent, pixels, or other units. This menu may have a relative (it can be inserted into the table, for example) or absolute position .
Specify various values for spacing and padding for the whole menu and for each separate submenu.
You can specify a time for delays in showing or hiding of a submenu. Use special prefixes for image paths and links to make paths absolute.
Create separators using your own pictures, size and alignment.
Q: If I select one subitem in the slide out menus the other - opened subitem is closed. Is there a way to get this facility for Items?
A:You should set the following parameter:
var tcloseExpandedXP=1;
Q: Dreamweaver navigation bar disappearing behind flash file in Firefox..
A:You should add "opaque" parameter for
Q: On my website I am a total of 2 menus being generated. How do I correctly generate "SE-Friendly Code" if I have 2 menu in javascripts? The "DM Links" code that is being generated will have a few of the same dm id because the menus are created seperate. How do I get it so each menu will have different dm id with no overlaps?
A:The identifiers in these links are additional parameters. <div id="dmlinks" style="font:undefined;color:#000000;text-decoration:none"> <a id="dmI0" href="testlink.html">Home</a> <a id="dmI2" href="testlink.html">Features</a> <a id="dmI4" href="testlink.html">Description of Files</a>
You can delete these identifiers or leave them.
So, if you have several menu in javascripts on the same page you should generate twoblocks of search engine friendly code and add them on your page.
Q: Can data be loaded dynamically in the free drop down menu? For example, can you load the child of a node once the node is clicked on.
You may generate a menu from a database or XML using any server-side script, e.g., PHP, ASP, VB, etc.However, these scripts don't work inside of Javascript .js files, so, you should move parameters of a menu from a .js file into an html-page, e.g.:
<!-- Deluxe Menu --> <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> <script type="text/javascript"> var dmWorkPath = "menudir/";</script> <script type="text/javascript" src="menudir/dmenu.js"></script>
<script type="text/javascript" language="JavaScript1.2"> // and describe parameters of a menu var parameter1=value1; var parameter2=value2; etc.
var menuItems = [ // here you generate items using server-side scripts (php, asp, vb, etc.) ]; </script>