Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format when asking a question.
Inside dhtmlwindow.js, the following line is what renders the IFRAME used by the window to show content:
Code:
t.contentarea.innerHTML='<iframe src="" style="margin:0; padding:0; width:100%; height: 100%" name="_iframe-'+t.id+'"></iframe>'
If you wish to completely remove any borders of the IFRAME from showing, try adding the part in red to this line:
Code:
t.contentarea.innerHTML='<iframe src="" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="margin:0; padding:0; width:100%; height: 100%" name="_iframe-'+t.id+'"></iframe>'
Bookmarks