Remove close button from modal header

How do I remove the close button from modal headers? Sorry if it's obvious, but I've looked around for a while now and I can't find a way to remove it.

Thanks.

Well if your using the pre-built modal, then it's locked so you can't. You can either build the modal manually so you have control and still have drag/drop support or right click the modal in the Overview pane and Convert to HTML and manually edit it that way without darg/drop support.

Or you can just add this to your CSS or use the Options pane to hide it.

.modal-header .close {
  display:none;
}

Saj

Ok, good to know I wasn't just missing it. I'll figure something out.

Thanks for the sanity check.

Chuck