Hallo zusammen,
ich habe gerade das Problem, dass ich eine normale HTML-Datei mit css formatieren möchte.
Dazu habe ich eine css-Datei stylesheet.css und die Startseite.htm
in der Startseite wird die css-Datei eingebunden über
<link rel="stylesheet" type="text/css" href="stylesheet.css">
das ganze logischerweise im header-Bereich der HTML-Datei.
in der CSS-Datei gibt es mehrere Klassen, darunter u.a. solche:
TR.header {
background: #90ee90;
}
TR.headerNavigation {
background: #90ee90;
}
TD.headerNavigation {
font-family: Verdana, Arial, sans-serif;
font-size: 10px;
background: #90ee90;
color: #ffffff;
font-weight : bold;
}
body {
background: #90ee90;
color: #000000;
margin: 0px;
}
diese werden auch definitiv richtig in der HTML-Seite aufgerufen. Nur leider erscheint die Seite nicht in einem grün-Ton, den ich testweise eingestellt habe, sondern weiterhin im normalen weiss.
die Startdatei hat als Quelltext folgendes:
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
<!-- [url=http://www.computerhilfen.de/fachbegriffe-h-Header.html][b]header[/b][/url] //-->
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr class="header">
<td valign="middle"><a href="http://meine.domain.de/index.php"><img src="images/store_logo.png" border="0" width="250" height="76"></a></td>
<td align="right" valign="bottom"><a href="http://meine.domain.de/account.php"><img src="images/header_account.gif" border="0" alt="Ihr Konto" title=" Ihr Konto " width="30" height="30"></a> <a href="http://meine.domain.de/shopping_cart.php"><img src="images/header_cart.gif" border="0" alt="Warenkorb" title=" Warenkorb " width="30" height="30"></a> <a href="http://meine.domain.de/checkout_shipping.php"><img src="images/header_checkout.gif" border="0" alt="Kasse" title=" Kasse " width="30" height="30"></a> </td>
</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="1">
<tr class="headerNavigation">
<td class="headerNavigation"> <a href="http://meine.domain.de" class="headerNavigation">Startseite</a> » <a href="http://meine.domain.de/index.php" class="headerNavigation">Katalog</a></td>
<td align="right" class="headerNavigation"><a href="http://meine.domain.de/account.php" class="headerNavigation">Ihr Konto</a> | <a href="http://meine.domain.de/shopping_cart.php" class="headerNavigation">Warenkorb</a> | <a href="http://meine.domain.de/checkout_shipping.php" class="headerNavigation">Kasse</a> </td>
</tr>
</table>
(...)
Kann mir jemand helfen, was ich falsch mache...
da ich selbst keine Erklärung mehr dafür habe.
Danke für Hilfe