Recent Questions
Q: Is there anyway to embed particular fonts that I want to use with the javascript menu component? 
A: See, for example you want to use HelveticaNeue Condensed font.
If there will be no HelveticaNeue Condensed font on the user machinethe font won't be shown correctly.
You can find another font similar to your font and write it through a comma.
You should choose the font among the following fonts:
Arial
Tahoma
Times New Roman
Trebuchet MS
Verdana
These fonts are installed on the most of windows computers.
Or you can create images with text and use it for the top items.
Q: I'm experimenting with the purchased Treemenu. Looks very nice! 
 A question: When I set the menu width to 200px and the text of the item exceeds this width, text is not wrapped resulting in some strange display. How can I wrap the text in the java menu tree? 
 I can not simply use extra <br> tags because the data of the items are dynamic (php + MySQL).
 
A: You should set the following parameter 
  var tnoWrap=0; 
Try that.
Q: I have found (was it like this before??) that if I right-mouse-click over a menuitem then I do not see any option to open the URL in new window....
 I do not get any options at all to open the URL in new window (or same window), in the browser context menu (both IE and Firefox).
 
A: No, Deluxe Menu doesn't have such a feature. This is only text, not alink. And we won't change it. Because now you're able to paste anyhtml code within menu item.
   var menuItems = [
 ["<div>Arbeidsplaner</div>","cp_workplan.php",,,,"_self","0","0"],
You can write your links in the following way:
 ["Channels","", , , , , , , , ],
 ["|<a class='menu' href='http://google.com/'>google</a>","", , , , "_self", , , , ],
 ["|<a class='menu' href='http://google.com'>Market</a>","", , , , "_", , , , ],
And create a style:
A.menu {
color: #000;
text-decoration: none;}
A.menu:hover {
color: #000;
text-decoration: underline;} 
Q: My pop out menus in the vertical navigation bar appear on the left instead of the right. 
A: You can try to change the following parameter:
  var subMenuAlign="left";