Recent Questions
Q: I never succeed to see the images in the dhtml menu examples using my default folder hierarchy (ie : a folder for the html files and a folder for the js files). The only way for me was to create the data.files folder in the html folder. It works but it does not follow my production standard. Did I forget something ?
A: You should set relative paths according to your html page.
For example, you have such file structure:
web-content/
data/
dmenu.js
data.js
Artwork/
image.gif
...
pages/
1.html // page with the dhtml menu examples
2.html // page with the dhtml menu examples
...
So in Deluxe Tuner you should open image.gif file.
You will have, for example:
d:\webpages\site\web-content\Artwork\image.gif
Then you should delete "d:\webpages\site1\web-content\" and add ../prefix. The path will be:
../Artwork/image.gif
You can also set path_prefix
var pathPrefix_img = "../Artwork/";
Or you can try to use absolute paths, for example:
var pathPrefix_img = "http://domain.com/images/";
Q: I created a tree menu based on your template Vista Style 7.
I would like to know if there are some possibilities to set the x coordinate of the submenus. I would like to have a tree menu with submenus which are not moving to the right when expanding the main menu but staying under it.
A: You can only try to use the following parameter to change submenuposition:
var tlevelDX=0;
Q: Is there any way to get around the ActiveX control warning every time I load the website from the CD? I think Internet Explorer doesnt like the menu system.
A: You should adjust your browser settings.
Tools/Internet Options/Advanced Options/
and set
"Allow active content from CDs to run on My Computer".
There is no way to enable these preferences automatically, in othercase there are no reasons to create security preferences.
Q: When I maximize the screen the popup windows appear to open below taskbar.
Is there a setting to correct this so that windows always appear above the cascading navigation bar?
A: You should set the following parameter to show submenus above the top items:
var subMenuVAlign="bottom";
But notice that if there will be no enough space above the menu your submenus will be
shown under the menu.