Recent Questions
Q: Do you have documentation for the paramaters for the apycom DHTML menu.
I'm try to figure out how to get a javascript menu link to open in the same window instead of a new window..
  ["|Legal","http://www.yahoo.com/","","","",,,], 
A:  You can find more info about menu parameters here:
http://www.dhtml-menu.com/menu/dhtml-sliding-menu-items-info.html
You should write:
 ["|Legal","http://www.yahoo.com/","","","","_self",,],
Q: I need to set individual itemtargets for a number of menu items for the web drop down menu? 
A: You can set target parameter for all items:
  var itemTarget="_blank";
or  var itemTarget="main";
Where main - is the name of the main frame where you want to open the link.
or for each item individually:
["Home","testlink.html", "", "", "", "_blank", "", "", "", "", "", ],
...
["Home","testlink.html", "", "", "", "main", "", "", "", "", "", ],
Q: I am trying to use the following horizontal tabs menu: 
http://deluxe-tabs.com/file/templates/deluxe-tabs-style-3.html 
 My problem is that the bitebackimage is not showing as you can see in the example below. 
 All the left and right side images appear, but not the repeating button background. All the images are in the same directory and have the same URL to point to them. 
 Any ideas on what the problem might be?
A:  The reason is in your styles. Now you have in style.css file: 
TABLE { 
 FONT-SIZE: 10pt; BACKGROUND-REPEAT: no-repeat; FONT-FAMILY: Arial,Helvetica,sans-serif 
} 
TR { 
 FONT-SIZE: 10pt; BACKGROUND-REPEAT: no-repeat; FONT-FAMILY: Arial,Helvetica,sans-serif 
} 
TD { 
 FONT-SIZE: 10pt; BACKGROUND-REPEAT: no-repeat; FONT-FAMILY: Arial,Helvetica,sans-serif 
} 
You should write: 
TABLE { 
 FONT-SIZE: 10pt; FONT-FAMILY: Arial,Helvetica,sans-serif 
} 
TR { 
 FONT-SIZE: 10pt; FONT-FAMILY: Arial,Helvetica,sans-serif 
} 
TD { 
 FONT-SIZE: 10pt; FONT-FAMILY: Arial,Helvetica,sans-serif 
}
Q: I have tried various different ways, but I cannot get a separator image I have specified in the Separators section of javascript menu builder to display. I have verified that the image exists, but still nothing. The rest of the menu works perfectly. Any help will be appreciated. 
A: 		To add a separator you should
//--- Separators
  var separatorImage=""; //for subitems (top items in vertical menu)
  var separatorWidth="100%";
  var separatorHeight="3px";
  var separatorAlignment="right";
  var separatorVImage="separator.gif"; //for the top items (subitems items in vertical menu)
  var separatorVWidth="100%";
  var separatorVHeight="2px";
  var separatorPadding="";
You can create separators using menuItems (you can do it in DeluxeTuner, use "Add separator" button), for example:
    ["||All Images","gallery_all.html", , , , "_self", , , , ],
    ["||-"],
    ["||Pricing & Ordering Info","gallery_pricing.html", , , ,"_self", , , , ],
Try that. You can also send us a copy of your html page (including .js files) ora direct link to your website, so we can check it.