Recent Questions
Q: We have a question and a problem.
This is a link to our website with your menue:
http://domain.bon.at/philosophie.html
Down the navigation point "FAQґs" is a submenue like darm, diverses, einlagen etc....)
If you click on a link in this submenue a new window open _BLANK!
Is it possible to open the new site in a popup in dhtml drop down menu, like 800 x 600 or something?
A: You should paste the following code inside 'Link' field of menuItems (you can do it inDeluxe Tuner):
javascript:window.open('http://www.google.com','_blank','height=600,width=800, status=yes,toolbar=no,menubar=no,location=no');Q: Is transparent drop down menu compatable with MS Expression Web?
A: Deluxe Menu wasn't developed as Dreamweaver/Frontpage extension,
BUT you can use it as standard Javascript files. To install the menu into your html page:
1. open the page in Dreamweaver/Frontpage
2. open html source code of the page
3. add several rows of code (<script> tags), For info see:
http://deluxe-menu.com/installation-info.html
That's all.
Q: I am using the menu in a frameset, and I would like for the selected menu branch of the side navigation bar to stay highlighted after the user moves the mouse to another window (where the menu brings up a new page),just so the user knows where he/she is. Is that possible?
A: If you open links in the another frame (window) the initial frame with your menu isnot reloaded, so the clicked item will be highlighted.
You should set the following parameters:
var ttoggleMode=1;
var tpressedFontColor="#AAAAAA";
You can also set the following parameter to save menu state:
var tsaveState=1;
var tsavePrefix="menu1";
If you install the menu without frames. On your pages you should call the following function/functions to expand/highlight items, for example:
<script>
dtreet_ext_expandItem (dtreet_ext_getItemIDByIndex (0, 0), 1);
dtreet_ext_setPressedItem (0, dtreet_ext_getItemIDByIndex (0, 1));
</script>
See more info about API functions here:
http://www.deluxe-tree.com/functions-info.html
Example:
http://deluxe-tree.com/highlight-selected-menu-item-sample.htmlQ: Is there a way to have the sub menus open to the left instead of the right?
A: You should set the following parameter:
var smViewType=2;