Recent Questions
Q: I wonder if you can help me. I've uploaded all my files, including the menus to the client site. 
 All the menus were working fine, where each link was targeted to the frame "mainFrame" in the middle of the page. This morning, all the css javascript menu link targets don't work anymore. That is, the targeting info has not changed but the linked pages are opening up as a _parent page -- that is, replacing the entire page.
 
A: You should use absolute paths. 
See the url browser tried to open: 
 http://domain.com/a_bp/bpdoc/3sell/32_sales_order_management/321_sales_order/
7operations/72_monitor_operations/index.html 
instead of: 
 http://domain.com/7operations/72_monitor_operations/index.html 
  var pathPrefix_link = "http://domain.com/pages/"; 
These parameter allows to make links paths absolute. 
For example: 
  var pathPrefix_link = "http://domain.com/pages/"; 
  var menuItems = [ 
 ["text", "index.html", "icon1.gif", "icon2.gif"],
]; 
So, link path will be look so: 
http://domain.com/pages/index.html 
Please, try to use this parameter.
Q: I am having a lot of trouble trying to get the menu to work properly. I want to make sure that I get it working before I make the licesning purchase. 
 The menu is to be CSS based but while I have the main menu somewhat in location, none of the settings are correct. Can you help?
 
A:  See, the problem is that the script can't get css properties of the object if they are described in separate .css block (or file). 
 To get the value you should move .css style into style="POSITION: relative;" attribute.
Please, try to add your 
 css file -> inline css 
 Try to write so: 
<DIV id=if-navbar style="POSITION: relative;">
Q: Is it possible to centere mouse over drop down menu?
 
A: Check that you set relative position for the menu:
  var absolutePos=0;
  var posX="0px";
  var posY="0px";
Place your menu in DIV or TABLE with center alignment.
Q: I have menus generated by you deluxe menu package . They look fine on all my computer but look bad on my friends computer. 
 Can this be fixed?
 
A: Thanks for your interest in our products. 
Try to specify all units in "px", for example: 
  var menuHeight="22px"; 
Try to set exact width for menu item 
  var menuWidth="736px"; 
Try also not to set 
  var smWidth="0"; 
  var smHeight="0"; 
Please, see the attached data file. 
You can use additional parameters to make menu paths absolute:
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
These parameters allow to make images and links paths absolute. 
For example: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
  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 
http://domain.com/images/icon2.gif 
Please, try to use these parameters.