Recent Questions
Q: I am testing your image based vertical menu. I am happy with it and about to buy the muti-site license if you can help me with one problem.
The menu looks different in IE compared to Firefox. In IE it is much smaller.
A: Try to specify units in "px":
var itemPadding="3px";
var itemStyles = [
["itemWidth=150px"],
]
var menuStyles = [
["smHeight=200px"],
];
Try that.
Q: I have purchased the Developer License for all products.
However in the Tuner tool I don't see any option for creating calendars.
How to design javascript calendars using the tuner tool? Where is the manual for Calendar?
A: We haven't added Calendar in Deluxe Tuner.
You can find it in the installed package:
C:\Program Files\Deluxe Menus\calendar\
Calendar, http://www.calendardatepicker.comQ: I am looking for Vista Style 1 - java popup menu for iweb (Mac)
Can you help?
A: To create your menu on MAC you can use HTML version of Deluxe Tuner (for MAC OS).
Downlaod the trial version from MAC
http://deluxe-menu.com/
http://deluxe-menu.com/deluxe-tuner-info.html
Deluxe Menu wasn't developed as iweb/Dreamweaver/Frontpage extension,BUT you can use it as standard Javascript files. To install the menuinto your html page:
1. open the page in your program
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.htmlThat's all.Q: I am a registered user, and I really like your menu system.
With my old menu system the user could right click on a menu item and the browser would display an option to open the page in a "New Tab".
Is there any way in the javascript menu html to allow the user to choose to open a link in a new tab?.
My users are restricted to using IE.
A: You can try to write the following code for your items:
["<a href='index.html' target='_blank' class='home'>Home</a>","", "", "", "", "Return to Index page", "", "0", "", ],
And create styles
.home{
color: #FFFFFF;}
.home:hover{
color: #FFBEBE;}
Try that.