I\'m looking to style a modal dialog (using UI Dialog) with unique CSS that is separate from the traditional dialog, so in essence to have two jQuery dialogs that each look
The current version of dialog has the option "dialogClass" which you can use with your id's. For example,
$('foo').dialog({dialogClass:'dialog_style1'});
Then the CSS would be
.dialog_style1 {color:#aaa;}