I'm trying to put a drop shadow around a jqueryui dialog box. Something like:
<div id="dialog-form" class="ui-widget-shadow ui-corner-all">
Some stuff in the box with a shadow around it
</div>
and then doing:
$(function () {
$("#dialog-form").dialog({
resizable: false,
height: 300,
width: 350,
modal: true
});
});
in the javascript section. How can I make a shadow around the dialog-form
dialog?