Hello,
here is a solution for your problem:
CSS:
<style type="text/css">.dropdown-shadow{ -webkit-box-shadow: 5px 4px 10px #333333; box-shadow: 5px 4px 10px #333333;}.dropdown-parent{ padding-left: 7px; padding-top: 7px; padding-right: 7px;}</style>
JavaScript:
//Initialization of jqxMenu$("#jqxMenu").jqxMenu({ width: '600', height: '30px', theme: 'classic' });//Set shadow to jqxMenu's submenus and padding to their wrapper$('.jqx-menu-dropdown').addClass('dropdown-shadow').parent().addClass('dropdown-parent');
In the code above after the initialization of jqxMenu you have to set shadow to all it’s submenus and padding to the submenu’s wrapper.
If your shadow is with bigger length the padding should be bigger.
Best regards,
Minko
jQWidgets Team
http://jqwidgets.com/