| 
       
          
                    I only want one sub-menu to have  multi-columns in html dropdown menu.
       
      Return to Recent Questions
 
  
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  
];             
  
...             
      ["More Samples","testlink.htm"],   
            ["|Group 1","", , , , , "3", "1", , ], //assign style 1   
  
Try that.  
  
 
  
Return to Recent Questions
        
   |