Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/05/2010, 09:44
Avatar de BloodShadow
BloodShadow
 
Fecha de Ingreso: marzo-2010
Ubicación: El Salvador
Mensajes: 393
Antigüedad: 14 años
Puntos: 52
Respuesta: Problema con imagen de fondo de tabla

en primer lugar, si estas con html y css no hagas tu sitio con tablas

en cuanto a tu problema, no revise en el navegador tu codigo, pero a simple vista vi tu error

Código HTML:
<table width="95%" height="87%" align="center" style="background:url('medio6.png')no-repeat style=width:"100%; height:"100%" border=3>
<tr>
<td></td>
</tr>
</table> 
Deberia estar asi

Código HTML:
<table width="95%" height="87%" align="center" style="background: url(medio6.png) no-repeat 0 0; width:100%; height:100%;" border=3>
<tr>
<td></td>
</tr>
</table>