Recent Questions
Q: I've been using your application for about 2 years but have never been able to insert a vertical divider in dhtml menu source.
 
A: You should set a separator in the menuItems, for example: 
  var menuItems = [ 
 ["Home","index.cfm", , , , , , , , ], 
 ["-"], 
 ["About Us","about.cfm", , , , , , , , ], 
]; 
Please, see the following parameters: 
//--- Separators 
  var separatorImage=""; //for subitems 
  var separatorWidth="100%"; 
  var separatorHeight="3px"; 
  var separatorAlignment="right"; 
  var separatorVImage="images/public/separator.gif"; //for the top items 
  var separatorVWidth="100%"; 
  var separatorVHeight="2px"; 
  var separatorPadding="";
Q: Can I center the css dropdown menu on page?
A: You should set relative position for the menu:
  var absolutePos=0;
and place it in DIV or TABLE with center alignment.
Q: "Tools/Use utf8 encode" from my Deluxe Tuner is turned on (with check in it). You mean I will have to uncheck it?
 No problem with my pages... it is only with the java swing drop down menu because there are words that doesn't show the correct letters / characters I am encoding both in French and Spanish pages. My boss said, it looks like a virus..(lol..) 
A: You should turn on "Tools/Use utf8 encode" property.In that case your data file will be saved in UTF-8 encode. So, youshould set UTF-8 encode on your page too
<meta http-equiv="Content-Type" content="text/html"charset="UTF-8">
If you don't want to use UTF-8 encode on your page you should turn off"Tools/Use utf8 encode" property, save your data file and manuallychange your letters in any text editor.
You can also replace your letters with special sets, for example
É - Capital E, acute accent
  var menuItems = [
 ["É....","testlink.html", "", "", "", "", "", "", "", ],
You can find more info here
http://sunsite.berkeley.edu/amher/iso_8879.html
Q: When I add the menu to sites which are using ASP script the font color doesn't change when I roll over the menu, can you please have a look for me and explain whats up.
 
A:  You're using CSS for your web pages. 
You have set the font-color for the <TD> tag in an css style sheet file to #ed9c33. 
Notice you should use CSS-based menu (CSS mode) if you're using CSSfor your TD tags (and for other objects).