Me alegro que hayas podido... Me temo que tengas problemas con el alto del iframe... para que te tome el alto automaticamente puedo compartirte este bloque de JS...
Código HTML:
<script language="javascript" type="text/javascript">
function iFrameHeight() {
var h = 0;
if ( !document.all ) {
h = document.getElementById('ID_DE_IFRAME').contentDocument.height;
document.getElementById('ID_DE_IFRAME').style.height = h + 60 + 'px';
} else if( document.all ) {
h = document.frames('ID_DE_IFRAME').document.body.scrollHeight;
document.all.ID_DE_IFRAME.style.height = h + 20 + 'px';
}
}
</script>
Y en el iframe...
Código HTML:
<iframe onload="iFrameHeight()" id="ID_DE_IFRAME"