Ihr Nudeln*gg* Ihr hättet gleich sehen können, dass das hintergrundbild schon da ist, aber sich der größe von dem td anpasst. also wenn mehr text da ist, dann mehr hintergrunbild.
Ich habe das td jetzt an die bildgröße angepasst und voilá hier habt ihr es.
Wisst ihr wie ich drauf gekommen bin? Ich habe den hintergrund mal wieder weiß gemacht und den text in schwarz. und dann sah ich ein kleines rechteck. Danach habe ich hintergruind aus css gelöscht und es war weg. gut, dann wusste ich das es das hintergrundbild ist, und der größe von dem text anpasst.
naja, jetzt bekommt ihr mal code, und ich eine pause*gg*
Text musste halt selber positionieren.
Code: Alles auswählen
<html>
<head>
<title>frieder's homepage</title>
<style>
.eins {
background-image: url(bg.jpg);
background-repeat: no-repeat;
}
.font1 {
font-family: Helvetica, Times;
color: #FFFFFF;
font-size: 13px;
font-weight: normal;
text-decorations: none;
text align: left;
}
</style>
</head>
<body bgcolor="#000000">
<img src="banner.jpg"><br />
<table widht="700" height="700" class="eins">
<tr>
<td width="700" height="700" class="font1">Test...</td>
</tr>
</table>
</body>
</html>