Recent Questions
Q: When using javascript tabbed menu, where do I place the text content related to the selected tab, (the text presented on the rest of the screen under the tab)? And who do I connect a specfic text to a certain tab?
A:  See, for each item you should assign the ID property of the contentDIV (see data file with your menu parameters). You should set  var tabMode=0;
 ["Style Name","contentName", "", "", "", "", "1", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Style Description","contentDescription", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Style Variations","contentVariations", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Empty","", "", "", "", "", "2", "", "", ],
And on your html page you should create DIV's with such ID. You canset background image for these DIV's in styles.
 <div id="contentName" style="height: 0%; visibility: hidden; background-image: url('img/back.jpg'); background-repeat:repeat-y;" class="tabPage">
 <br><br><br>
 <p align=center><img src="img/style01_title.gif" width=140 height=90 alt="Glass Style Tabs"></p> 
 <br><br><br> 
 You should paste content of javascript tabbed menu here!!!!!
 </div>
 <div id="contentDescription" style="height: 0%; visibility: hidden;" class="tabPage">
 <br><br><br>
 <p align=center><img src="img/style01_title.gif" width=140 height=90 alt="Glass Style Tabs"></p> 
 <br><br><br> 
 You should paste your description here!!!!!
 </div> 
Q: I'm trying to shrink the vertical size of the sub-menu entries in my menu: 
 I think I've specified all the parameters correctly in data.js, but itТs hard to tell what affects the height of the submenu entries. Even reducing the type from 10pt to 8pt didnТt shrink them at all.
 
A:  See, you set the following parameter: 
  var itemPadding = 7;
That is why you have such a big padding around the items. 
If you don't want to change the appearance of the main items youshould create Individual Style for the subitems. For example: 
  var menuStyles = [ 
 ["itemPadding=2px"], 
]; 
And assign this style for the first item in submenu.
Q: Once again, I need your help....I have gone through my eniter site to fix what it takes to keep this menu from hiding the flash header when you role over the main menu items. It still hides. The problem still exists. Help!
 
A:  You should add the following function in the beginning of your data file 
function dm_ext_ruleObjectHide() 
{ 
 // Safari detect 
 if ((parseInt(navigator.productSub)>=20020000) && (navigator.vendor.indexOf('Apple Computer') != -1) && (navigator.product=='Gecko')) 
 return true; 
 else 
 return false; 
} 
You should add this function each time you change your menu in DeluxeTuner as it deletes this function from your data file.
Q: I have just 2 more questions.
 1. Can the 3rd level be configured to be a javascript vertical menu?
 2. Can your menu be configured per the following spec? Once you click on a 3rd level option that level would disappear & the 1st & 2nd level would be breadcrumbed (stay visible to show you where you are). 
A:  1) Yes you can do it. Use smOrientation parameter in IndividualSubmenu Styles:
   var menuStyles = [
 ["smOrientation=0"], //id=0
];
Assign it to the first item in third submenu:
 ["Home","testlink.html", "", "", "", "", "", "", "", "", "", ],
 ["Product Info","", "default.files/icon1.gif", "default.files/icon1o.gif", "", "", "", "", "", "", "", ],
  ["|Features","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "", "", "", "", "", ],
  ["|Installation","", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "", "", "", "", "", ],
    ["||Description of Files","testlink.html", "default.files/icon6.gif", "default.files/icon6o.gif", "", "", "", "0", "", "", "", ],
2) No, it is not possible now. Your 3rd level submenu will be visible too.