Recent Questions
Q: When I roll my mouse over my menu, it appears halfway down the page, not next to the menu. This only happens when I enclose the code in <div></div> layers. Is there a way to fix this?
A: It is possible that you have some problems with your css.
The problem is that the script can't get css properties of the object if they are described in separate .css block (or file).In other words, you can't get the value of "position" attribute of the object if the object doesn't have this property within inline style(style="position:absolute"). To get the value you should move .css style into style="" attribute.
Please, try to add your
css file -> inline css, for example:
You should add <DIV id=SiteMenu>
to the
style="position:absolute;"
So, you'll have:
<DIV id=SiteMenu style="position:absolute;">
Check that.
Q: I must say, I'm glad I found your products! I am thoroughly impressed with your products! Once we get everything figured out and our menu set up, we'll be purchasing a license for our site.
However, I did have a question. I cannot seem to figure out how to get the individual menu styles to be applied to any of my java script menu items through the Deluxe Tuner. I've looked through through your documentation, but I cannot find anything that explains to me how I do this in the Deluxe Tuner. All I could find is this link:
http://deluxe-menu.com/individual-item-styles-info.html Which I don't quite fully understand, and by the looks of it, it doesn't appear to explain to me how I customize my individual menu item styles through the Deluxe Tuner.
Could you please either explain to me how to do this, or provide me a link that gives me directions on how to get this to work.
I look forward to doing business with you!
A: To create Individual styles click "Edit Individual Styles..." button.
1) In the "Individual Styles" window click "Add Style", enter the name
of the new style.
2) Edit java script menu parameters of your style
4) Click "OK" button.
5) Select items (you can use Ctrl and Shift buttons to select group ofitems) and assign "Item Style"/"Submenu Style" to it. (in the "Item Parameters" window)
Q: We would like to use standard images for the main menue and add popup menues by using deluxe menue. The popups are triggered by hovering the cursor above the main menueimages and they should stay visible as long as the cursor is in the image.
If the cursor leaves the image, the popup should be closed unless it is in the popup menue.
A: See, you can use one Deluxe Menu (image-based) with images for the mainitems and submenus or you can use several pop up menus for each image.
http://deluxe-menu.com/popup-mode-sample.html
You should use onMouseover event.
Q: Do you have an extremely simple example of modifying drop down menus with the JavaScript API?
A: You should use the following function:
function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
<script language="javascript" >
dm_ext_changeItem(0, 0, 1, ["", "", "new_icon.gif", "new_icon_o.gif", "",,""]);
</script>