Cita:
Iniciado por FFL
Muchas gracias Cehojac!
Sinb embargo, el código que tengo referido al tamaño es esto:
Código PHP:
<script language="javascript">
parent.pageTitle = "financing";
parent.iframeHeight = '500px'
</script>
<script language="javascript" type="text/javascript">
<!--
function resizeIframe() {
if(self==parent) return false; /* Checks that page is in iframe. */
else if(document.getElementById&&document.all) /* Sniffs for IE5+.*/
var FramePageHeight = framePage.scrollHeight + 10; /* framePage
is the ID of the framed page's BODY tag. The added 10 pixels prevent an
unnecessary scrollbar. */
parent.document.getElementById('content').style.height=FramePageHeight;
/* "iframeID" is the ID of the inline frame in the parent page. */
}
//-->
No tengo lo que a ti te aparece. No sé si es normal. Según esto no debería tener este problema, no? Ya intenté cambiar el parent.iframeHeight = '500px' a algo más alto (700px por ejemplo) pero no ha resultado.
Además, acabo de actualizar el link "OUR FILMS" y tengo el mismo problema pero al revés: se ve todo en Firefox pero no en IE. Qué lata!
A ver si se te ocurre algo más y muchas gracias otra vez por tu sugerencia!
FFL
el problema es que el Javacript que estas usando redimensiona el iframe pero funciona sólo parta IE5 y superiores
intenta poner este script
<script language="javascript">
parent.pageTitle = "financing";
parent.iframeHeight = '500px'
parent.iframeScroll='yes';
</script>
o en el estilo content coloca esto:
<!--[if lt IE]>
overflow-y:scroll;
<![endif]-->