Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/06/2009, 16:58
ssclamp
 
Fecha de Ingreso: octubre-2004
Mensajes: 289
Antigüedad: 19 años, 6 meses
Puntos: 10
Respuesta: Poner div sobre iframe

Hola Serenity

Siguiendo tu esquema, este es el resultado:
Código HTML:
<html>

<head>

<style type="text/css"> 
#imagen {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;
	width: 708px;
	height: 25px;
} 
#portacuadro {
	position:absolute;
	top: 20px;
	left: 20px;
	z-index: 1;
	width: 708px;
	height: 526px;

} 
</style>

</head>

<body>
<div id="portacuadro">
	<iframe name="cuadro" height="100%" width="100%" scrolling="no" border="0" frameborder="0" src="fotos.htm"></iframe>
</div>

<div id="imagen">
	<img src="logotipo.jpg" width="708" height="25">
</div>

</body>
</html> 
Saludos