Recent Questions
Q: For example if you use the Growing Goodness menu located under Media Categories the first category is Agriculture w/ a sub category "Community Supported (CSA)" it is the sub category that is an active link. Is it possible to have only the active link "Community Supported (CSA) underlined and not Agriculture? And the same for all the other active links in this menu, all that have hyperlinks assigned to them. 
A: You can write your links in the following way: 
 ["Channels","", , , , , , , , ], 
  ["|<a class='menu' href='http://growinggoodness.com/callingfromthecoast.htm'>Eco-Friendly</a>","", , , , "_self", , , , ],
  ["|<a class='menu' href='http://growinggoodness.com'>Farmers Market</a>","", , , , "_", , , , ], 
 ["Media Categories","", , , , , , , , ], 
  ["|Agriculture","", , , , , , , , ], 
    ["||<a class='menu' href='http://growinggoodness.com/csa.htm'>Community Supported (CSA)</a>","", , , , "_self", , , , ], 
    ["||Movie Trailers","", , , , , , , , ], 
    ["|||<a class='menu' href='http://growinggoodness.com/farmboymovie.htm'>Farmboy</a>","", , , , "_self", , , , ], 
    ["|||<a class='menu' href='http://growinggoodness.com/strongrootsfragilefarms.htm'>Strong Roots, Fragile Farms</a>","", , , , "_self", , ,, ], 
    ["|||<a class='menu' href='http://growinggoodness.com/therealdirtonfarmerjohn.htm'>The Real Dirt On Farmer John</a>","", , , , "_self", , ,, ], 
And create a style: 
A.menu { 
color: #FFF; 
text-decoration: none;} 
A.menu:hover { 
color: #FFF; 
text-decoration: underline;} 
Q: I am a software developer interested in using deluxe menu for my company’s website. One of the important features of our website is multiple language support, typically Chinese.
 Does deluxe menu have support for Chinese or other Unicode characters?
 
A: You're able to use any characters for Deluxe Menu in the same way asyou use them for standard html page. 
The only issue is that submenus can be shown in incorrect positionwhen you're using dir=rtl for your page. 
Please, try a trial version. 
Q: I am using a licensed copy of Deluxe Menu and am extremelyhappy with the dhtml mouseover menu and the functionalities provided. Great Work!! 
 I wanted to know how to hide/ disable a dhtml mouseover menu item for a particular user/roleid in .ASP.Net1.1
 Kindly help me out with this problem as soon as possible. 
A: You can find more info here:
http://deluxe-menu.com/dynamic-functions-sample.html
You can try to use API functions in that case:
function dm_ext_changeItemVisibility (menuInd, submenuInd, itemInd, visibility)
To disable items you should set the target parameter to "_".
You can try to use the following function
function disable() {
 dm_ext_changeItem(0, 1, 1, ["", "", "", "", "", "_"]);
 }
to disable your dhtml mouseover menu items.
Q: Does Deluxe-Menu work on .ASPX pages.  Actually, I have got them to but the icons don’t appear. This may just be a path issue but I don’t see anything on your site saying that it will work with ASPX.Please let me know.
 
A: Deluxe Menu works fine on .ASPX pages. 
You should install Deluxe Menu on the .aspx page in the same way asyou install it on the html page. 
You can use additional parameters to make menu paths absolute:
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
These parameters allow to make images and links paths absolute.
For example: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
  var menuItems = [ 
 ["text", "index.html", "icon1.gif", "icon2.gif"], 
]; 
So, link path will be look so: 
http://domain.com/pages/index.html 
Images paths will be look so: 
http://domain.com/images/icon1.gif 
http://domain.com/images/icon2.gif 
Please, try to use these parameters.