| 
       
          
                    When the java menu example is inside the <DIV> tag, it is shown, but doesn't scroll
       
      Return to Recent Questions
 
  
Q:
 I found the problem with de Deluxe Menus:   
 When the menu is inside the <DIV> </DIV> tags, the menu is shown, but does
 not scroll.
     
A:
 See, you use absolute position for this <div> 
  
<div STYLE="position:absolute;top:151px; left:0px">    
  
But you can use absolute position for the menu. Your menu will scroll
in this case.  
  
For example, you should set: 
  
var absolutePos=1;    
var posX="0";       
var posY="151px";   
  
And install your menu   
  
<div>        
  
<script type="text/javascript" src="data.js"></script>  
  
</div>       
  
Or, write:     
  
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>   
<script type="text/javascript">var dmWorkPath = "/";</script>      
<script type="text/javascript" src="dmenu.js"></script>        
<script type="text/javascript" src="data.js"></script> 
  
 
  
Return to Recent Questions
        
   |