Recent Questions
Q: I have another question regarding the popup window. I need to use an iframe within the popup window. Is there any way I can close the onmouseover popup from the page loaded within the iframe? Something like "parent.document.getElementById('windowid').hide();". Any help would be appreciated. 
A:  You can close the onmouseover popup using the following function:document.getElementById('win').hide();
Unfortunately it won't work if you use iframe as window content.
You open another page in the popup (in Iframe) so you cannot accessdocument.getElementById('win').hide();
element which is situated on the first page.
When you use text or object_id as window content the content of the popup will be situatedon the same page so you can access document.getElementById('win') element and hide it.
There is a workaround.
Use text as content type and add the following code inside popup:
<a onclick="document.getElementById('win').hide();">...</a> <iframe></iframe>
Your link will work in that case.
Q: For some reason all of the menu items are squished together when I put the js code in my page. 
 Is my site's CSS overriding the ones set in the menu css? If so how do I get around this?
 
A: See, the problem is that the script can't get css properties of the object if they are described in separate .css block (or file). 
 To get the value you should move .css style into style="" attribute. 
Please, try to add your 
 css file -> inline css
Q: I've recently purchased and implemented your menu. While it's definitely very good, I have a small issue I'm hoping you can help me resolve. 
 When running over regular http, the menu drops down and shows in front of any form select dropdowns as it should. However, when running over SSL (https), the menu shows up with the form select box in front of it. 
 Any help for fixing this would be greatly appreciated.
 
A: Please, check that you've set the following parameter: 
  var dmObjectsCheck=1; 
Please, use dmenu_add.js file. 
For more info, please, see: 
http://deluxe-menu.com/objects-overlapping-sample.html 
Q: I have set it to: 
   var tlevelDX=0; 
 It has helped somewhat but there still is a gap between the left side and the image icon. Is there any other parameter I can alter to push it more to the left?
A:  You can try also to set the following parameters: 
  var texpandBtn=["","",""]; 
  var texpandBtnW=0; 
  var texpandBtnH=0;