Recent Questions
Q: I am struggling with my menu on my site the submenu is under the main text area. How do I make the submenu come to the front.
 
A:  Check your z-index for <DIV id=navigation>. 
Try to write it, for example, so: 
<DIV id=navigationstyle="Z-INDEX: 10; LEFT: 0px; WIDTH: 170px; POSITION: absolute; TOP: 5px; HEIGHT: 600px"> 
Try that.
Q: May I can use PHP code in menu items of my dhtml website navigation menu?
A:  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> 
<!-- (c) 2006, http://deluxe-menu.com -->
<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> 
The example of the menu working with PHP/MYSQL you can find here: 
http://deluxe-menu.com/rq-loading-bar-MySQL-support.html
Q: I am programming in asp.net 1.1 and asp.net 2. I have a situation where the client wants to govern security with roles. Is there any functionality for deluxe tree to show/hide specific branches based on security levels (i.e. roles)?
 
A:  You should to use API function 
function dtreet_ext_showItem (itemID, visibility) 
More info you can find here: 
http://www.deluxe-tree.com/functions-info.html 
Q: How do I make the main nav links align left in my horizontal menu (they are center aligned).
A:  Try to use the following parameter:
   var itemAlignTop="left";