There is a possibility to make changes in the look and feel of a popup.
For this you need to take the following steps:
<style>
.my-first-class {
/*some styles*/
}
.my-second-class {
/*some styles*/
}
</style>
var dhxPopup = new dhx.Popup({
css:"my-first-class my-second-class"
});
popup.show();
Related sample: Popup. Custom Css
Back to top