Recent Questions
Q: I'd like to create  a tabbed menu which has about 9 or 10 main tabs. 
 I'd like to conserve the horizontal space, and wrap the menu after 4 or 5 tabs to have two rows of main tabs. Some tabs have sub menus, some don't. 
 The first main tab has about 10 items, and I'd like the user to be able to click on that main tab to see the 10 items. 
 I was going along splendidly with tab mode on. Then I get too far to the right and want to wrap. 
 hence that is why I want two rows, and apparently need to add the $ to wrap the menu around to a second row. 
 Do I need to use two tab menus to accomplish this?
 
A:  This doesn't work in TabMode=1. 
I suppose that it will be better to use two menus on the page.
Q: I am sure this is a pretty minor thing…When one of my dhtml menu dropdown items is a link to a url, is there a setting to change the cursor to a hand versus the normal arrow? Basically, I want the links of the dhtml menu dropdown items to look like most other links on any webpage.
A: Try to set the following parameter:
  var itemCursor="pointer";
Q: When I open my site in Internet Explorer 6.0 the main drop menu code shows up nicely but the drop-down sub-menus are separated. The drop menu code 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 drop menu code 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 am having a problem trying to figure out how to generate a link to javascript popup window.
A: You can show the popup window when you hover, click or mouseout on some elements on yourpage.
For example you've added an image in your html page. 
You should specify the ID for it, for example:
<p><img id="open_popup" border="0" src="images/submenu-bg.gif" width="170" height="29"></p>
In the Deluxe Tuner you should enter 'open_popup' object ID in the onMouseOver,onClick or onMouseOut fields.
Actually you can assign id to any object on your page manually. You should specify ID's - id="xxxx" for <a>, <div>, <img> ... tags.
Or you want to open a popup onMouseover, onClick or onMouseout on a link.
So, you should create a link (you can also use other object) on your page and set id="" for it, for example:
<a href="javascript:;" id="link">Open popup OnClick</a>
<a href="javascript:;" id="over">Open popup OnMouseover</a>
<a href="javascript:;" id="out">Open popup OnMouseOut</a>
In Deluxe Tuner you should set:
onMouseOver - over
onMouseOut - out
onClick - link
If you want to show the popup when your page loads you should leave these fields empty:
 onMouseOver:"",
 onMouseOut:"",
 onClick:"",