La tabla, no sé, pero ppor lo pronto tenes una imagen dentro del head
<img id="fondo" src="/recursos/bkground2.png" />
<sTYLE>
BODY { background: url(/recursos/bkground2.png) background-repeat: repeat-x;}
</STYLE>
</head>
Empezá por estructurar debidamente tu html, algo así
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<link rel="shortcut icon" href="/recursos/favicon.ico"> <link rel="stylesheet" type="text/css" href="style.css">
body{ background: url(/recursos/bkground2.png) background-repeat: repeat-x; margin: 0px;}
#fondo{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index:-50;
background-repeat: repeat-x;
}
<img id="fondo" src="/recursos/bkground2.png" alt="" name="fondo"> <table id="tablach" border="0">
y después recien corregí la posición de los elementos si no se ajustan a lo que vos querés
saludos