Hallo,
also, dass mit dem Fensterrand bzw. (<div id="foot">) ist ziemlich einfach. Du kannst das Bild im DIV als Hintergrund platzieren, z.B.: sowas:
#foot{
width:??px;
height:??px;
background: url(....bilddatei...) top center no-repeat;
}
und wenn Du das an einer bestimmten stelle haben willst, kannst Du es mit margin bzw. padding dahin verschieben, kurz gesagt:
#foot{
width:??px;
height:??px;
margin:??px ??px ??px ??px;
padding:??px ??px ??px ??px;
background: url(....bilddatei...) top center no-repeat;
}
Mit <table> arbeitet man wirklich nur dann, wenn man was wirklich mit Tabellen zu tub hat. Ansonsten überhaupt nicht.
Das andere Problem mit "repeat-x" habe ich nicht so ganz verstanden. Kannst Du mir die Internetseite nennen, dann kann ich mal rauf gucken. Hast Du es mal mit dem Attribut "position" absolute bzw. relative in der CSS versucht?
Gruß
tomtom