Dreamweaver Designer Problem

Status
Nicht offen für weitere Antworten.

syntax65

Grünschnabel
Hi!

ich hab mir gerade ne Band HP gemacht

Jedoch habe ich folgendes Problem:

Hier klicken

Das Hintergrundbild fängt nochmal an, ich will aber eher das es einmal lang gezogen da ist wie mache ich das

Vielen Dank schon mal im Vorraus

Mfg

Syntax
 
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Unbenanntes Dokument</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
	background-color: #000000;
	background-image:  url(/test_24.gif);
}
.Stil2 {
	font-family: Morpheus;
	font-size: 36px;
	color: #990000;
}
body,td,th {
	color: #FFFF00;
}
.Stil3 {font-size: 30px}
.Stil4 {color: #FF0000}
.Stil5 {font-size: 30px; color: #FF0000; }
-->
</style></head>

<body>
<table width="892" border="0" cellpadding="0" cellspacing="0">
  <!--DWLayoutTable-->
  <tr>
    <td width="700" height="150" valign="top"><img src="Untitled-1.jpg" width="700" height="150"></td>
  <td width="192">&nbsp;</td>
  </tr>
  <tr>
    <td height="35" valign="top"> <div align="center"></div>      <table width="200" border="1">
        <tr>
          <th height="29" scope="col"><a href="news.htm"><img src="band_03.gif" width="59" height="24" border="0"></a></th>
          <th scope="col"><div align="center"><a href="Band.htm"><img src="band_11.gif" width="51" height="19" border="0"></a></div></th>
          <th scope="col"><a href="gallery.htm"><img src="band_18.gif" width="83" height="23" border="0"></a></th>
          <th scope="col"><div align="center"><a href="Contact.htm"><img src="band_13.gif" width="86" height="21" border="0"></a></div></th>
          <th scope="col"><div align="center"><a href="http://123gb.de/gb.php?user=TargetX"><img src="contact_06.gif" width="84" height="23" border="0"></a></div></th>
          <th scope="col"><div align="center"><a href="Impressum.htm"><img src="band_20.gif" width="101" height="25" border="0"></a></div></th>
        </tr>
          </table></td>
  <td>&nbsp;</td>
  </tr>
  <tr>
    <td height="809" valign="top"><div align="center" class="Stil2">
      <p>Target X Nu-Metal</p>
      <p>&nbsp;</p>
      <p><span class="Stil3">Herzlich Willkommen auf </span></p>
      <p class="Stil3">der Homepage der Nu-Metal band</p>
      <p class="Stil3">TARGET X!</p>
      <p class="Stil5">
        <object width="425" height="350">
          <param name="movie" value="http://www.youtube.com/v/0oJupF1G2tw">
          <embed src="http://www.youtube.com/v/0oJupF1G2tw" type="application/x-shockwave-flash" width="425" height="350"></embed>
        </object>
</p>
      <p class="Stil5">&nbsp;</p>
      <p class="Stil5"><span class="Stil11 Stil12">CopyRight (c) TargetX-Music.de 2006 -</span></p>
      <p class="Stil3"><span class="Stil11 Stil12 Stil4"> All Rights Reserved</span></p>
      <p class="Stil3">&nbsp;</p>
      <p class="Stil5">&nbsp;      </p>
      <p class="Stil3">&nbsp;</p>
      </div></td>
  <td></td>
  </tr>
  <tr>
    <td height="6"></td>
    <td></td>
  </tr>
</table>
</body>
</html>

und wo genau muss das jetzt hin ^^
 
Da die Hintergrundgrafik offensichtlich nur horizontal wiederholt werden soll, lautet in diesem Fall der Wert repeat-x.

Notiert wird die Eigenschaft hier:

Code:
body {
	background-color: #000000;
	background-image: url(/test_24.gif);
	background-repeat: repeat-x;
}
Man kann die drei Eigenschaften aber auch mit der background-Eigenschaft zusammenfassen:

Code:
body {
	background: #000 url(/test_24.gif) repeat-x;
}
 
Status
Nicht offen für weitere Antworten.
Zurück