Tienes duplicado el <head> (dos veces, entero).
Y has vuelto a deshacer cambios que habíamos hecho... ahora, vuelve a estar la imagen grande, y no con tamaño máximo, como habíamos dicho.
Y además, ahora han aparecido tags de tabla que no había antes.
Y por último, no has hecho el cambio que decía en el post anterior:
javiexin escribió:Y en el código que va con cada imagen, cambia:
por
Voy a ponerte el código completo, REEMPLAZA el fichero post.html COMPLETO y NO LO TOQUES hasta que lo veamos funcionando.
Este es:
Código: Seleccionar todo
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Imagenes para tus post!!</title>
<style type="text/css">
<!--
.Estilo1 {
color: #0000FF;
font-weight: bold;
}
.Estilo2 {
text-align: center;
width: 300px;
display: inline-block;
padding: 5px;
}
.Estilo3 {
max-width: 250px;
max-height: 200px;
}
-->
</style>
<script language="javascript" type="text/javascript">
<!--
function add_code(text)
{
var area_ignore_name = /username_list|search/i;
var area_e=opener.document.getElementsByTagName('TEXTAREA');
for(var i=0;i<area_e.length;i++)
{
if(!area_e[i].name.match(area_ignore_name))
{
var area=area_e[i];
break;
}
}
area.value = area.value + text;
opener.focus();
window.close();
}
//-->
</script>
</head>
<body>
<p align="center" class="Estilo1">ELEGI LA IMAGEN QUE QUERES AGREGAR A TU POST:</p>
<div class="Estilo2"><img class="Estilo3" src="http://www.dreparaciones.com.ar/repa/adm/images/post/102.jpg" alt="" /><br />
<p><input type="text" value="[img]http://www.dreparaciones.com.ar/repa/adm/images/post/102.jpg[/img]" title="" style="width: inherit;" onclick="add_code(this.value);return 0;" /> </p>
<p> </p></div>
<div class="Estilo2"><img class="Estilo3" src="http://www.dreparaciones.com.ar/repa/adm/images/post/15idi.gif" alt="" /><br />
<p><input type="text" value="[img]http://www.dreparaciones.com.ar/repa/adm/images/post/102.jpg[/img]" title="" style="width: inherit;" onclick="add_code(this.value);return 0;" /> </p>
<p> </p></div>
</body>
</html>
-javiexin