Recent Questions
Q: Last, I couldn't solve the issue I meet when I set up a long name for an dhtml side menu item: next item overlaps. Is it possible to specify the width of an item?
A: You can try to use the following dhtml side menu parameters to use combinedbackground for your items:
  var beforeItemImage = [,]; //left-side image for normal and mouse over state
  var itemBackImage = [,]; //background or image for normal and mouse over state
  var afterItemImage = [,]; //right-side image for normal and mouse over state
  var beforeItemImageW = '';
  var afterItemImageW = '';
  var beforeItemImageH = '';
  var afterItemImageH ='';
But you should create a small images in any Graph Editor, for example:
button_n_back.gif
button_n_left.gif
button_n_right.gif
button_o_back.gif
button_o_left.gif
button_o_right.gif
Q: When the menus drop down the background is white but it is see through, this is ok on the homepage but on the other pages it is making the text unreadable. Is there a way of keeping the background of the submenus solid so it isn't see through javascript expanding menu? 
A:  You should set the following parameter:
  var transparency="100";
Q: I have some problems with Deluxe Tree. 
I have set the   var tlevelDX to 5 to decrease the indent for each level of items, but would like to decrease the indent even more. Ican't find the parameter that will set the indent in pixels of thefirst level item. 
Also, is there a setting that will put text for a menu item on a second line? 
 I hope that you can help.
 
A: You can make the smallest indent this way: 
  var tlevelDX = 0; 
You are not able to have more little indent. This place is reservedfor + buttons. 
Try to set this parameter: 
  var tnoWrap=0; 
You can also use <br> tags in the item text, for example: 
  var tmenuItems = [ 
 ["line 1<br>line 2"], 
]; 
Q: I did not make anything complex - simply added a couple of menu items. As you may see the java swing popup menu being expanded overlaps with the rest of the table. I guess I am just not doing something right since it is a trivial case ... 
A:  Now you're using absolute position for the menu:
  var tabsolute=1;
You should use relative position.