M
Maik
Wenn ich deine Source-Schnippsel in einem HTML-Template einfüge und die Seite anschliessend im Browser öffne, sehe ich überhaupt keine Links, weil die Linkfarbe und die Tabellenzellen-Hintergrundfarbe identisch sind (#003399) !
Habe im nachfolgenden Quelltext das bgcolor -Attribut aus der entsprechenden Tabellenzelle entfernt, damit die Links sichtbar werden, und die CSS-Klassen editiert:
[ Browsercheck: FF 1.0.2, IE 6.0, MOZ 1.6, NN 7.0, OP 7.23 ]
greez, maik.l
Habe im nachfolgenden Quelltext das bgcolor -Attribut aus der entsprechenden Tabellenzelle entfernt, damit die Links sichtbar werden, und die CSS-Klassen editiert:
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title></title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
div.Stil1 {
font-family: Arial, Helvetica, sans-serif, "Arial Black";
font-weight: bold;
font-size: small;
color: #FFFFFF;
text-align: right;
}
a:link { text-decoration: none;
color: #003399; }
a:visited { text-decoration: none;
color: #003399; }
a:active { text-decoration: none;
color: #003399; }
a:hover { text-decoration: none;
color: #8AB0FF; }
a.navi:link { text-decoration: none;
color: #003399; }
a.navi:visited { text-decoration: none;
color: #003399; }
a.navi:active { text-decoration: none;
color: #003399; }
a.navi:hover { text-decoration: none;
color: #8AB0FF; }
-->
</style>
</head>
<body>
<div align="center">
<table width="826" high="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="800">
<div align="left"><a href="index.php"><img src="img/logo_o_n3.jpg" width="791" height="31" border="0" alt="zur Hauptseite"></a></div>
</td>
</tr>
<tr bgcolor="#CB6300">
<!-- NAVI -->
<td>
<div class="Stil1">
<a class="navi" href="index.php?s=list&show=4&id=0">dvds</a> | suchen | drucken
</div>
</td>
</tr>
<table>
</div>
</body>
</html>
greez, maik.l