Tema: Error en SMF
Ver Mensaje Individual
  #8 (permalink)  
Antiguo 14/02/2007, 07:49
Avatar de dogcat
dogcat
 
Fecha de Ingreso: diciembre-2003
Ubicación: Alicante
Mensajes: 325
Antigüedad: 21 años
Puntos: 2
Re: Error en SMF

Hola de nuevo, encontré un código para meter un layer, el código es ese:

Código:
<html>
<head>
<title>Prueba</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
function esconde_anuncio(divId) 
{ if (document.layers) document.layers[divId].visibility = 'hide';
else if (document.all) document.all[divId].style.visibility = 'hidden';
else if (document.getElementById) document.getElementById(divId).style.visibility = 'hidden';
}
function mostrar_anuncio(divId) 
{ state=typeof topPos;
if(state=='undefined') topPos=-260;
if(topPos < 75)
{ topPos+=3;
if (document.layers) document.layers[divId].top = topPos;
else if (document.all) document.all[divId].style.top = topPos;
else if (document.getElementById) document.getElementById(divId).style.top = topPos; 

setTimeout("mostrar_anuncio('pop');",20);
}
}
</script>
</head>
<BODY onload="mostrar_anuncio('pop')">
<script type="text/javascript">
if (parseInt(navigator.appVersion) >= 4 && navigator.javaEnabled()) 
{ document.write('<div id="pop" style="position:absolute;top:-260;">');
document.write('<table cellpadding="0" cellspacing="1" bgcolor="#7FA3C7" border="0"><tr><td><table cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" border="0">');
document.write('<tr><td align="right" height="24"><a href="javascript:void(0)" onclick="esconde_anuncio(\'pop\')"><img src="http://www.hiphopyaik.com/imagenes/close.gif" border="0" alt="Cerrar Ventana"></a></td></tr>');
document.write('<tr><td align="center"><font size="2"><b><i>Anuncios Relacionados\'</b></font>');
document.write('</table></td></tr></table>');
document.write('</div>');
if (document.layers) document.layers.pop.left = ((window.innerWidth / 2) - (330 / 2));
else if (document.all) document.all.pop.style.left = ((document.body.offsetWidth / 2) - (330 / 2));
else if (document.getElementById) document.getElementById("pop").style.left = ((window.innerWidth / 2) - (330 / 2));
}
</script>
</body>
</html>
DUDA 1: ¿Donde meto la publi de adsense dentro del layer? porque pruebo y pruebo pero me da error el layer...
DUDA 2: ¿Cómo hago para que aparezca a la izquierda del todo de la página?

GRACIAS!