How do I change the background color of the title bar of a jQuery dialog?
I have looked at the themeroller but it does not seem to work for me.
Thanks
Sometimes you can't edit the css file. So you can try this:
dialog = $('').dialog({ title: 'Dialog with css for title bar', open: function() { $(this).parents(".ui-dialog:first").find('.ui-dialog-titlebar').css('background-color','#275D9E'); } });