Recent Questions
Q: The menu maps to the width size of the longest menu item on the list, can you tell me how I can restrict this, and have a fixed menu size.
A: Unfortunately it is really so.
You can try to wrap your text.
You should set the following parameter:
var noWrap = 0;
or use <br> tags within menuItems.
Q: I want to separate the main items with an image in the website navigation bar.
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:
var menuItems = [
["item 1"],
["-"], // this item is separator
["item 2"],
];
Q: The html text shows through the item background.
How do I make to item and menu backgrounds override the page text?
A: Try to set the following parameter
var transparency="100";
Q: Do you have a few examples of how to create clickable links for html popup?
A: You can find such example here:
http://deluxepopupwindow.com/javascript-close-popup-safari.html
See how you should write your link:
<a class=sampleLink title="Click to open sample" href="javascript:;"
onClick="deluxePopupWindow.open('safari', 'New Popup window', '#2: Popup window',
width=250,height=50,resizable,minimizable,fullscreen,centerscreen,middle,right,,fade-effect,
opacity=0.95,floatable=no', 'windows_safari')">Click here to open</a>