Recent Questions
Q: I found the problem with de Deluxe Menus: 
 When the menu is inside the <DIV> </DIV> tags, the menu is shown, but does not scroll.
 
A:  See, you use absolute position for this <div> 
<div STYLE="position:absolute;top:151px; left:0px"> 
But you can use absolute position for the menu. Your menu will scrollin this case. 
For example, you should set: 
  var absolutePos=1; 
  var posX="0"; 
  var posY="151px"; 
And install your menu 
<div> 
<script type="text/javascript" src="data.js"></script> 
</div> 
Or, write: 
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> 
<script type="text/javascript">  var dmWorkPath = "/";</script> 
<script type="text/javascript" src="dmenu.js"></script> 
<script type="text/javascript" src="data.js"></script>
Q: I've tried to add the pathPrefix_img as suggested and I'm still having trouble with images. 
 Can you provide anymore feedback on what I'm doing wrong?
 
A: Now you have such paths: 
  var pathPrefix_img="http://www.domain-name.com/images/";
and 
  var arrowImageMain=["CFTopMenu.files/arrv_white_1.gif",""]; 
So, the full path we'll be: 
http://www.domain-name.com/images/CFTopMenu.files/arrv_white_1.gif 
Is it right? 
I've tried to download your image from this link. There is no such image. 
If you want to put all your images into the "images" folder you should write so: 
  var pathPrefix_img="http://www.domain-name.com/images/"; 
and 
  var arrowImageMain=["arrv_white_1.gif",""]; 
Please, check that you upload all your images on the server in the right places.
Q: I am evaluating your Deluxe Tuner / Tab program and was wondering how to add content below the tabs, like you have on your site. 
 You have the tabs, then a content area below each tab. How is this done with your product.
 
A:  You should use ID attribute of object to show in the second parameterof bmenuItems. You set it in the "Item Parameters" window ("Link"parameter). 
You should also set: 
  var tabMode = 0; 
So, you'll have, for example, the following bmenuItems: 
 ["tab text","div1", ...], 
 ["tab text","div2", ...], Here "div1" and "div2" is IDs of objects within your html page, for example: 
 <div id="div1">text 1</div> 
 <div id="div2">text 2</div> 
You can also see examples, which you can find in the trial package.
Q: I do have issues. There are not the problems when you are on the home page (you can click on one of the dropdown submenus and go there. 
 However, when you try to go to another page from there to another page on a nother drop down, nothing happens except javascript erros. The dropdowns physical work, in that they drop down, but the links don't go anywhere. Does that make sense.
 
A: See, the problem was in your dmWorkPath parameter 
On all pages placed in the subfolder you should write it in thefollowing way: 
<script type="text/javascript">  var dmWorkPath = "../ifnav.files/";</script> 
Please, correct it. 
You should also use additional parameters to make menu paths absolute: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://www.infocusnet.org/design/"; 
These parameters allow to make images and links paths absolute. 
For example: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://www.infocusnet.org/design/"; 
  var menuItems = [ 
 ["text", "index.html", "icon1.gif", "icon2.gif"], 
]; 
So, link path will be look so: 
http://domain.com/pages/index.html 
 
Images paths will be look so: 
http://domain.com/images/icon1.gif 
Please, use pathPrefix_link parameter.