- Filters and Transitional effects - Horizontal or vertical orientation - Top items and submenus have a shadow - Special JavaScript API for changing javascript menu "on-the-fly" - Personal CSS styles for separate menu elements - Relative/Absolute menu position - Several menus on one page - UL/LI items structure
Good menu is an essential part of website commercial success. If people can't find their way around the site, they will fast give up seeking and retire, never to return. So, it's extreme serious that your website has a accurate, precise, prompt, and navigation of immaculate appearance. Don't let your web site guests to get lost. Try Deluxe Menu!
Q: How can I upgrade to Deluxe Menu v2.0? Now I'm using v1.14.
A: How to upgrade to v2.00 --------------------------------------------------------------- You can download the licensed engine .js files from the same link in your license message. Deluxe Menu v2.00 has new parameters and features. To upgrade to v2.00 you should do the following.
Step 1.     1.1 For Windows users       a. Run Deluxe Tuner v2.0       (can be found in the trial menu package v2.0       http://deluxe-menu.com/deluxe-menu.zip).       b. Open menu data file (.js file where menu parameters are placed): select File/Open…       c. Save the file: select File/Save, then click "No" button when the dialog box appears.
    1.2 For other OS users       a. Open menu data file (.js file where menu parameters are placed) in a text editor.       b. Make sure that the following variables exist in the data file:
      var keystrokes = 0;       var dm_focus = 1;       var dm_actKey = 113;
      var dynamic = 0;       var smHideOnClick = 1;       var itemAlignTop = 'left';       var smSmartScroll = 1;
      var dmAJAX = 0;       var dmAJAXCount = 30;       var dmRTL = 0;       var dmObjectsCheck = 0;       var menuBackRepeat = "repeat";       var menuHeight = "";       var transDuration2 = 200;
If one of the variables doesn't exist - add it at the beginning of the file.
      c. Save the file.
Step 2. Now open HTML-page that contains Deluxe Menu.
Step 3. Replace existent tags of the menu by the following code:
Step 4. Save HTML-page.
Step 5. New engine v2.00 has 7 .js files. They are:       - dmenu.js       - dmenu4.js       - dmenu_add.js       - dmenu_dyn.js       - dmenu_key.js       - dmenu_cf.js (new v2.00)       - dmenu_popup.js (new v2.00)
Replace all old .js files by the files from v2.00.
Try that.
Q: I'm using your Delux Menu and I would like to know how to change the back ground color of the sub drop down menu from the teal color to a gray and am nothaving any luck locating this option. Please advise.
A: Try to use the following parameters:
var menuBackColor="#C0C0C0"; var itemBackColor=["#C0C0C0","#65BDDC"];
You can also check Individual Styles. It is possible that you setbackground color there.
Q: Can you tell me how I can position my menu-tree with a relative position and make it floatable at the same time?
A:Unfortunately now it is not possible. Your menu will float withabsolute position only.
Q: A couple days ago I purchased the multi-website license of Deluxe Menu/Tree/Tabs/Popup Window/Calendar for US$149.00
I am having a very hard time getting the popup window to do just a basic function.
All I want is to have a link that I click on the page and the dhtml menu windows pop up.
As it is, the page automatically opens the popup window on loading.
I'm not a Javascript programmer which is why I purchased your product as it seemed I could pick a couple basic values in the GUI and it would create the script and code for me.
It would be REALLY handy if you had a couple of examples of how to create the following:
- Open the popup window upon the page loading
- Open the popup window when the user clicks a link
- Open the popup window when the user mouses over a link
- Close the popup window when the user mouses out
The help section doesn't even provide a menu item for the popup window.
Finding support for it on your site is difficult and what I can find is better suited for someone with Javascript knowledge.
Is there any way you can provide me the code to do this?
Thanks very much for your time and assistance.
A: We have such example on our website: > - Open the popup dhtml menu windows upon the page loading To open the popup window upon the page loading you should set thefollowing parameter: openAfter=0 deluxePopupWindow.attachToEvent(win,'openAfter=0,,,,,') You can find this parameter in Deluxe Tuner. See on-load.zip example. > - Open the popup window when the user clicks a link Create the popup window in Deluxe Tuner and save it as html. UseonClick event for a link.
See how you should write your link: <a class="sampleLink" title="Click to open sample" href="javascript:;" onclick="deluxePopupWindow.open('win', '<DIV style=\'PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; COLOR: #d33a3a; PADDING-TOP: 10px; TEXT-ALIGN: center\'><B>Sample content</B></DIV><DIV style=\'font: 13px;text-align: center; color:#666666; \'><EM>This is a simple HTML code for content. Here you may also set link to content page or ID of some element.</EM>', 'Safari Style', 'width=250,height=100,resizable,scrollbars,minimizable,fullscreen,middle,right,fade-effect,opacity=1,floatable=yes', 'windows_safari')"><b>this link</b></a> opens a medium-sized dhtml floating window. where (see on-click.js file) 'win' - is winID '<DIV style=\'PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; COLOR: #d33a3a; PADDING-TOP: 10px; TEXT-ALIGN:center\'> <B>Sample content</B></DIV><DIV style=\'font: 13px;text-align: center; color:#666666; \'><EM>This is a simple HTML code for content. Here you may also set link to content page or ID of some element.</EM>' - content of your popup window 'Safari Style' - window title 'width=250,height=100,resizable,scrollbars,minimizable,fullscreen,middle,right,fade-effect,opacity=1,floatable=yes' - parameters of the popup window'windows_safari' - window skin
Notice that you shouldn't set openAfter parameter in on-click.jsfile: deluxePopupWindow.attachToEvent(win,',,,,,')
> - Open the popup window when the user mouses over a link > - Close the popup window when the user mouses out
You should create such popup in the same way as in the previous point,but use onMouseOver/onMouseOut events.
<a class="sampleLink" title="Click to open sample" href="javascript:;" onMouseOver="deluxePopupWindow.open('win', '<DIV style=\'PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; COLOR: #d33a3a; PADDING-TOP: 10px; TEXT-ALIGN: center\'><B>Sample content</B></DIV><DIV style=\'font: 13px;text-align: center; color:#666666; \'><EM>This is a simple HTML code for content. Here you may also set link to content page or ID of some element.</EM>', 'Safari Style', 'width=250,height=100,resizable,scrollbars,minimizable,fullscreen,middle,right,fade-effect,opacity=1,floatable=yes', 'windows_safari')"><b>this link</b></a> opens a medium-sized dhtml floating window.
<a class="sampleLink" title="Click to open sample" href="javascript:;" onMouseOut="deluxePopupWindow.open('win', '<DIV style=\'PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; COLOR: #d33a3a; PADDING-TOP: 10px; TEXT-ALIGN: center\'><B>Sample content</B></DIV><DIV style=\'font: 13px;text-align: center; color:#666666; \'><EM>This is a simple HTML code for content. Here you may also set link to content page or ID of some element.</EM>', 'Safari Style', 'width=250,height=100,resizable,scrollbars,minimizable,fullscreen,bottom,left,fade-effect,opacity=1,floatable=yes', 'windows_safari')"><b>Open popup window</b></a>
The dropdown next to it which says 'paragraph' by default contains Heading 1, ... ich möchte gerne in meinem CMSimple gerne mit der klasse FPDF arbeiten
The dropdown next to it which says 'paragraph' by default contains Heading 1, ... ich möchte gerne in meinem CMSimple gerne mit der klasse FPDF arbeiten
Bloggers can access the Dashboard from a menu link at the front of the website. ... party applications including Joomla, Mambo, WordPress and CMSimple. ... Display the feeds as a dropdown menu giving a clean look to the
I am trying to implement the Ultimate CSS only drop-down menu from ... to make it horizontal and a relative positon so that you can control the dropdown menu positon .... Support for CMS Integration of YAML (Language: English), CMSimple
I am trying to implement the Ultimate CSS only drop-down menu from ... to make it horizontal and a relative positon so that you can control the dropdown menu positon .... Support for CMS Integration of YAML (Language: English), CMSimple
Internet Explorer | Whitespace Bug | Dropdownmenu .... websitebaker, CMsimple oder andere einfache, kleine CMS kannst du dir ja ... Durch CSS können alle Block-Elemente mittels margin:auto; horizontal zentriert werden
Internet Explorer | Whitespace Bug | Dropdownmenu .... websitebaker, CMsimple oder andere einfache, kleine CMS kannst du dir ja ... Durch CSS können alle Block-Elemente mittels margin:auto; horizontal zentriert werden
The dropdown next to it which says 'paragraph' by default contains Heading 1, ... ich möchte gerne in meinem CMSimple gerne mit der klasse FPDF arbeiten
Tutorial: How to create flash drop down menus and site navigation. ... I will present you Flash Menu Factory (FMF for short) is a valuable tool, .... Support for CMS Integration of YAML (Language: English), CMSimple
I am trying to implement the Ultimate CSS only drop-down menu from ... to make it horizontal and a relative positon so that you can control the dropdown menu positon .... Support for CMS Integration of YAML (Language: English), CMSimple
Bloggers can access the Dashboard from a menu link at the front of the website. ... party applications including Joomla, Mambo, WordPress and CMSimple. ... Display the feeds as a dropdown menu giving a clean look to the
Internet Explorer | Whitespace Bug | Dropdownmenu .... websitebaker, CMsimple oder andere einfache, kleine CMS kannst du dir ja ... Durch CSS können alle Block-Elemente mittels margin:auto; horizontal zentriert werden
Bloggers can access the Dashboard from a menu link at the front of the website. ... party applications including Joomla, Mambo, WordPress and CMSimple. ... Display the feeds as a dropdown menu giving a clean look to the
Tutorial: How to create flash drop down menus and site navigation. ... I will present you Flash Menu Factory (FMF for short) is a valuable tool, .... Support for CMS Integration of YAML (Language: English), CMSimple
Tutorial: How to create flash drop down menus and site navigation. ... I will present you Flash Menu Factory (FMF for short) is a valuable tool, .... Support for CMS Integration of YAML (Language: English), CMSimple