Ich versuche gerade auf meiner Homepage, die Textgröße und Farbe in eine separate .css Datei auszulagern. Das Funktioniert auch ganz gut. Aber die Links in den Texten bekomme ich nicht auf richtige Größe. Es fällt kaum auf aber es ist so. Schaut mal genau hin. Das Wort Emergenza-Festival ist ein Link. Siehe hier: http://www.arrezt.de/test/
Wer kann mir helfen.
Der Quelltext der htm Seite:
HTML
<html>
<head>
<title>ARREZT</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="stylesheet.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#1D1D1D" MARGINWIDTH="0" MARGINHEIGHT="0">
<table border=0 align=left cellspacing=0 cellpadding=0 >
<tr>
<td align=center valign=middle width=477 height=348>
<table border=0 align=center width="85%">
<tr>
<td valign=top>
28.01.05</p></td>
<td valign=top>
Wir haben es geschafft und sind mit dem 2. Platz eine Runde weiter. Die
Rede ist vom 1. Step des [url='http://www.emergenza.de']Emergenza-Festivals[/url]
im Logo Hamburg.</p></td>
</tr>
</table>
</p></td>
</tr>
</table>
</body>
</html>
Alles anzeigen
Die .css Datei:
Code
h1 {font-family:verdana font-size:10px; color:#000000; text-align:center;}
p {font-family:verdana; font-size:10px; color:#98A0A7; text-align:justify;}
a:link {color:#98A0A7; text-decoration:none; font-size:10pt; font-family:verdana;}
a:visited {color:#98A0A7; text-decoration:none; font-size:10pt; font-family:verdana;}
a:hover {color:#C0C0C0; text-decoration:none; font-size:10pt; font-family:verdana;}
a:active {color:#98A0A7; text-decoration:none; font-size:10pt; font-family:verdana;}
body {
scrollbar-base-color:#444644;
scrollbar-track-color:#444644;
scrollbar-face-color:#42505B;
scrollbar-highlight-color:#444644;
scrollbar-3d-light-color:#42505B;
scrollbar-dark-shadow-color:#42505B;
scrollbar-shadow-color:#444644;
scrollbar-arrow-color:
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
margin-bottom: 0px
}
Alles anzeigen