Recent Questions
Q: I have setup some tabs on a site that I am designing and for some reason when I click on a drop down menu links tab and it links to another page it automatically highlights the first tab in the row. I have tried fiddling with it and have not been able to figure it out. Can someone point me in the right direction to have the correct tab selected after i click it and goto the page. 
A:  Deluxe Tabs doesn't support API functions which can return theselected drop down menu links tab.
You can set "bselectedItem" and "  var bselectedSmItem" parametersbased on your link before you call your data file.
For example, move "  var bselectedItem" and "  var bselectedSmItem" drop down menu links parametersfrom your data file to your code.
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
   var bselectedItem=<?php echo $seltabs; ?>;
   var bselectedSmItem=<?php echo $selsmtabs; ?>;
 </script>
 <SCRIPT src="data.js" type=text/javascript></SCRIPT>
 </TD>
You should define seltabs and selsmtabs using server side script.
You can also set it on every page before you call data.js file, forexample:
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
   var bselectedItem=4;
   var bselectedSmItem=3;
 </script>
 <SCRIPT src="data.js" type=text/javascript></SCRIPT>
 </TD>
 Try that.
Q: I have just purchased your Deluxe Menu multi site license and I'm really enjoying it. I've been able to tweak a menu tree template to achieve the plain and simple expandable menu that I was looking for. However, I do have one quick question. My drop down menu in java script is overlapping some of my page content in both IE and Firefox. I've had the absolute positioning option turned off and on and the menu links still overlap. In Firefox they even move the page content quite a bit. I'm still playing around with it I just thought I would email for suggestions. Any help or tips you can offer would be greatly appreciated. 
A:  Try to set the following parameter to wrap text:
  var tnoWrap=0;
Q: The menus I am trying to change, it seems as though thetransparency is too light. 
Where in the drop down menu asp do you reduce some of the transparency? 
A: Use the following parameter:
  var transparency="100";
Q: I am wanting to load menu items from a sql database but I cannot understand how to do it using the example you provided. 
 I am using asp but do not know how to incorporate it into the above javascript. Would it be possible for you to provide me with an example please? I tried using <%  …… %> but this did not work.
 
A:  Unfortunately we don't have example with ASP.
The example of the menu working with PHP/MYSQL you can find here:
http://deluxe-menu.com/rq-loading-bar-MySQL-support.html