Good navigation is an important step to website success. If people can't find their way around the site, they will quickly give up looking and leave, never to return. So, it's absolute vital that your website has a fast, neat, and eye-pleasing navigation. Don't allow your website visitors 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: Using the example menu you have, how do i make the sub-menu for the 'Sample' menu item a multi-column and leave the 'Product Info' menu item as is. I only want certain sub-menus to have multi-columns. I don't want all menu items to have a multi-column sub.
A:Please, see the attached example. You should use individual styles.
var menuStyles = [ ["smColumns=2"], ["smColumns=1"], //style 1 ];
Q: I evaluated Deluxe Menu over the weekend and I really like it. I believe I'll be buying it this week. I have one question. Is it possible for the menu to be aware of what page you have selected and highlight the corresponding menu item on that page.
A:You should set a pressed item using Javascript API:
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion)
Sets a current pressed item. menuInd - index of a menu on a page, >= 0. submenuInd - index of a submenu, >= 0. itemInd - index of an item, >=0. recursion = true/false - highlight parent items.
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem. You can't get this ID after you reload your page. That is why you should write your own code on PHP.
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>
Divider between Page Menu Bar items Page & Category Menu Bars. ... I would like to have a '|' in between the items in the Page Menu Bar so that it would look ... PerryM, Page & Category Menu Bars, 3, Dec 3, 2009 10:03 AM
13 sept. 2008... margin:0; vertical-align:middle; } #top-divider{ width:878px; height:49px; .... en usinage' est décalée sous le menu et à priori je ne vois pas pourquoi . .... (tournant sous Wordpress) L'affichage est géré par les CSS et tout ... Ajouter un commentaire - Permalink (#3). Ajouter un commentaire
can fuel divider be repair? 6/84, 2011/1/8 22:40 Mabel ... Search. Advanced Search. Main Menu ... Fact No 1: Top 3 models for exceeding the 500000km mileage 1.W124 = 5 cars (36%) ... www.ahmadfadhilzhafri.wordpress.com
In other words (and taking the vertical divider as an example) the height should be a certain ... font-size: 0.8em; } ul#menu { margin: 50px 0 300px; overflow: auto; background: #ccc; ... Pippin's Pages - Web Design/Development Specializing in Wordpress ... Powered by vBulletin® Version 3.7.3
Changed: Duration divider from 'hyphen' to 'bullet' (inspired by Fusion) ... 1.7 .3. Changed: Added TV Show Title to 'Recently Added Episodes' list ... Added: Ability to add up to 6 custom sub menu buttons to Apps, Video, Music, Movies and TV .... Protected by Akismet, We recommend WordPress blogs
3) What does the S-curve mean, normally there should be a diagonal line like in .... http://jaimsthesweetspot.wordpress.com/ ... An other assumption, that it is divider between Shade and Highlight. .... Same applies when you change the "Work color space" (sRGB, Adobe-RGB) in the "Adjustment" menu
and for the divider i have done this to the template.css : .... I wanted to check the link which indicates inclusion of Joomla menu in phpbb forum ... Free Joomla Templates, Free WordPress Themes, Free phpBB3 Styles
3. why is there no answer from anybody on the joomla team to the issues here? ... Excerpt & Read More divider (a la Articles in J1.5) ... preferably using a shortcut or hidden menu item which takes them to the Post a New Entry ..... For an idea of features, see the multi-user version of WordPress:
Sep 18, 2010 ... Soup or Root now has a Blog!! souproot.wordpress.com Original Post: ... Please see fit to donate via Paypal to [email protected] ... on your Droid: Home>Menu> Settings>Applications>Development>USB Debugging .... Divider
A menu and icon galleries are automatically created, with the newest ... 3.) If desired, change the "sort" config variable (below the instructions) ... Edit the "getcount," "perpage," and "divider" variables as desired. ... General, => Coppermine / Stramm, => WordPress, => PHPMotion, => Cutenews
(IMG:http://everythingblaxx.files.wordpress.com/2010/01/screenshot07.jpg) .... Step 3 YOU ARE DONE to restore go to MENU > BACKUP > RESTORE > SELECT THE FILE ..... panel then behaves as a pair of voltage dividers with connected outputs
3. In the Love of Lesbian artist page, in the Albums area, click on the album art ... The window does not change size, nor does the divider move. ... (Open an IE8 window to MSN.com and use the Pages>Text Size menu. .... I just finished my very first website, using WordPress and a good code theme,
It has a divided main dish and 3 small covered containers that fit in those ... of bento boxes - uses a 950mL lock & lock box that came with 3 inside dividers. ..... I have really simplified how I made bento these days, and onigiri aren't often on the menu anymore. .... http://mosaica.wordpress.com
Ok so i have a menu, with dividers all in css etc... It works great but how do i manage to get the last menu item to NOT have a ... 3) Use in firebug ... Free Joomla Templates, Free WordPress Themes, Free phpBB3 Styles
Joined: Tue Jun 02, 2009 3:27 pm. Posts: 2466 ... I am working with WordPress and the code I am using is the following: ... to see it (look at the headline and the menu while the page is loading). ... Could you please let me know how I can reduce the space between the buttons and the divider line?
Changed: Background Filter fade animations to 3 separate Filters with visible ... Changed: Duration divider from 'hyphen' to 'bullet' (inspired by Fusion) .... The home menu doesn't seem to update the way I configure it: the Programs icon still .... Protected by Akismet, We recommend WordPress blogs