Currently i am showing fbml.dialog like this :
FB.ui(
{
'method': 'fbml.dialog',
'display': 'dialog',
'fbml': "<h1>this is some fbml markup</h1>",
'width': 575
},
function() {
alert(true, 'callback was invoked');
}
);
How to show the blue colored facebook header(with close button) on this dialog?
This is not really an answer to your question but I too got frustrated with trying to get my Facebook dialogues rendering so instead I used JQuery UI and used the following styles (assumes dialogue id is ‘dialogue’).
I hope this helps.