I'm using the jquery dialog plugin and the default is to have all 4 corners of the titlebar rounded. You can see the markup that the dialog produces here
http://jqueryui.com/demos/dialog/#theming
In the that example you can see on the ui-dialog-titlebar
div there is a class called ui-corner-all
, I would like to change that to ui-corner-top
. Is there a way to set the type of rounded corner class when I initiate the dialog?
There is the hacky option of editing the jquery UI dialog javascript file to have that class always in there but that seems inflexible.
Thanks