Recent Questions
Q: I need a menu system where on the click of certain items, server side code on the page can be called and executed. Can that be done using deluxe menu?
A:  You can use your own Javascript code instead standard links. For example:
   var menuItems = [
 ["text", "javascript:your_code_here"]
 ];
Q: Is there any way of asigning the background color of the submenu (I onlyneed one level of nesting menus) different from the background color of thedhtml rollover?
A:  Create Individual Submenu Style and assign it for the first item in that case:
  var menuBackColor="#d1d1d1";
  var menuStyles = [
 ["menuBackColor=#FFFFFF"],
];
["mбs info","http://www.dimensionmultimedia.com/psoepruebas/?page_id=19","","","","","0","0","","","",],
Q: Java sub menu not working after upgrade to deluxe menu 3.0. Please check.
A: See, you've set the following parameter:
  var transparency="0";
That is mean that your submenus will be transparent. You won't seethem.
Try to set another value, for example:
  var transparency="100";
Q: I want to be able to put a small thumbnail icon in the description area of animated drop down menu. Here is a current line from my .js file for a single link.
  ["|'Slow Death Hook' Contest<br><br><br>Enter Your Favorite Fish Photos to Win!<br>Gary Parsons ","http://www.domain.com/site/featured_article.cfm?owner=AB18D298-0AC7-254E-B7248E9DCD0F9549 ",,,,,"0"],
 I want it to do this though:
  ["|'Slow Death Hook' Contest<br><br><br>Enter Your Favorite Fish Photos to Win!<br>Gary Parsons ","http://www.domain.com/site/featured_article.cfm?owner=AB18D298-0AC7-254E-B7248E9DCD0F9549 <br><br><img src="images/thumbnail.jpg">",,,,,"0"],
 The problem is the "'s around the img src.....it's throwing off your animated drop down menu.
 How do I fix that? 
A:  It is not correct to write menuItems in such way.
You should write:
  ["|'Slow Death Hook' Contest<br><br><br>Enter Your Favorite Fish Photos to Win!<br> Gary Parsons <br><br><img src='images/thumbnail.jpg'>","http://www.domain.com/site/featured_article.cfm?owner=AB18D298-0AC7-254E-B7248E9DCD0F9549",,,,,"0"],
Try that.