Recent Questions
Q: Hi there ... a while ago I had asked you what I need to change to prevent exit pops from being activated, but I don't think it's working. 
 For example, a regular link that I want: 
 onClick="exit=false" 
 How do I do it with dhtml vertical menu? 
 Before, in the "text" box in the "Item Parameters" window, you had me do the following: 
 <span onClick='exit=false;'>click here</span> 
 But that doesn't seem to work. Any other suggestions? Thanks very much.
A: I suppose that you should move menuItems from the data file to yourhtml page directly (where you define exit variable).
<script>
 menuItenms = [
 ...
 ],
</script>
Q: When I open my site in Internet Explorer 6.0 The main menu showsup nicely but the drop-down sub-menus are separated. The menu work very nicely in a Firefox browser but not in IE.
 
A:  There are some problems also with your css. 
The problem is that the script can't get css properties of the object if they are described in separate .css block (or file). 
In other words, you can't get the value of "position" attribute of the object if the object doesn't have this property within inline style(style="position:relative"). To get the value you should move .css style into style="" attribute. 
Please, try to add your 
 css file -> inline css, for example: 
You should add style="position:relative;" 
to the 
 <DIV id="right"> 
So, you'll have: 
 <DIV id=right style="POSITION: relative;"> 
Check that.
Q: I can’t seem to figure out how to specify the width of individual horizontal menu items for the html menu. I would like to specify that each menu item on the horizontal take up just 113px regardless of the number of characters in the item. Is there a way of doing that?
A: You should use   var itemStyles to set an individual item style. Forexample:
  var itemStyles = [
 ["itemWidth=113px"]
];
  var menuItems = [
 ["text 1", "link", "icon1", "icon2", "tip", "target", "0"],
 ["text 2", "link", "icon1", "icon2", "tip", "target", "0"],
 ["text 3", "link", "icon1", "icon2", "tip", "target", "0"],
];
Where "0" - style number in itemStyles that contains the parametersfor items width.
Use Deluxe Tuner GUI to create and assign individual styles.
Q: I am trying to make the tab menu to work correctly and after extensive testing and I have come across a problem that I can seem to get resolved. I am using images for the tab menu with no text and <divs> to display information about each javascript new menu tab. However while the page loads I can see all the content from all the <div> javascript new menu tabs and when the page if fully loaded, the web page then displays the content correctly with all the content hidden until the correct tab is selected. Mind you this is the only thing on the webpage so there shouldn’t be any load time problems. 
 Please advice what is happen to resolve this issue. 
A: Try to set display: none; property for the style of your DIV, forexample:
 <div id="content1" style="display: none;" class="tabPage">
 <br><br><br>
 <p align=center><img src="../image/img/logo_DM.gif" width=262 height=56 alt="Deluxe-Menu.com"></p>
 </div>
 <div id="content2" style="display: none;" class="tabPage">
 <br><br><br>
 <p align=center><img src="../image/img/logo_DT.gif" width=262 height=56 alt="Deluxe-Tree.com"></p>
 </div>