HyperWICHTIG: Ich krieg ne Krise
HyperWICHTIG: Ich krieg ne Krise
Leute, ich weiß partout nicht mehr weiter. Eure ganzen Tipps bringen mir nichts. Egal, was ich in der format.css ändere, egal ob ich den Cache meines Browsers lösche oder nicht, die Links in meinen Webseiten erscheinen schwarz, obwohl in der format.css sowohl für die Links als für den rollover-effekt eine andere Farbe angegeben ist, nämlich weiß und hellblau. WORAN LIEGT DAS??? Bin ich für Contenido zu blöd?
"Leute mit Mut und Charakter sind den anderen immer unheimlich." von Hermann Hesse
Besucht Andrusch-World
Besucht Andrusch-World
ja, habe ich!
"Leute mit Mut und Charakter sind den anderen immer unheimlich." von Hermann Hesse
Besucht Andrusch-World
Besucht Andrusch-World
Code: Alles auswählen
<td width="150" colspan="1" height="22" align="center" style="border: 1px; border-bottom:1px; border-color: #000000; border-style: solid; background-color: #999999; padding-left:12px">
<a href="front_content.php?idcat=48&client=1&lang=1"><font size="2" face="Verdana" color="#000000">
Der Webmaster</font>
also .. da wird KEINERLEI Schriftformatierung mitgegeben, sondern im Modul selbst direkt der Font übergegeben!!!
Du solltest im Layout oder dem Modul schon irgendwie mitteilen was die <td> oder der font
für ne klasse hat und nicht fix -> "<font size="2" face="Verdana" color="#000000">" mitgeben!!!
du solltest in der css-datei folgende dinge zuordnen:
1.) a (alle hrefs generell)
2.) td (alle <td> generell)
3.) font (font generell)
das ganze nach folgendem Muster (dann klappts auch automatisch mit dem hover):
Code: Alles auswählen
body {
background-color : #ffffff;
}
font {
font-size : 10px;
font-family : Verdana;
font-weight : normal;
font-style : normal;
text-decoration : none;
color : #13137d;
}
font:link {
font-size : 10px;
font-family : Verdana;
font-weight : normal;
font-style : normal;
text-decoration : underline;
color : #13137d;
}
font:visited {
font-size : 10px;
font-family : Verdana;
font-weight : normal;
font-style : normal;
text-decoration : none;
color : #13137d;
}
font:aktive {
font-size : 10px;
font-family : Verdana;
font-weight : normal;
font-style : normal;
text-decoration : none;
color : #13137d;
}
font:hover {
font-size : 10px;
font-family : Verdana;
font-weight : normal;
font-style : normal;
text-decoration : underline;
color : #AA080C;
}
a {
color : #13137d;
font-size : 10px;
font-family : Verdana;
font-weight : normal;
text-decoration : underline;
}
a:link {
color : #13137d;
font-size : 10px;
font-family : Verdana;
font-weight : normal;
text-decoration : underline;
}
a:visited {
color : #13137d;
font-size : 10px;
font-family : Verdana;
font-weight : normal;
text-decoration : underline;
}
a:aktive {
color : #13137d;
font-size : 10px;
font-family : Verdana;
font-weight : normal;
text-decoration : underline;
}
a:hover {
color : #AA080C;
font-size : 10px;
font-family : Verdana;
font-weight : normal;
text-decoration : underline;
}
td {
font-size : 10px;
font-family : Verdana;
font-weight : normal;
font-style : normal;
text-decoration : none;
color : #13137d;
}
td:link {
font-size : 10px;
font-family : Verdana;
font-weight : normal;
font-style : normal;
text-decoration : underline;
color : #13137d;
}
td:visited {
font-size : 10px;
font-family : Verdana;
font-weight : normal;
font-style : normal;
text-decoration : none;
color : #13137d;
}
td:aktive {
font-size : 10px;
font-family : Verdana;
font-weight : normal;
font-style : normal;
text-decoration : none;
color : #13137d;
}
td:hover {
font-size : 10px;
font-family : Verdana;
font-weight : normal;
font-style : normal;
text-decoration : underline;
color : #AA080C;
}
MfG, Karsten
Nicht Können bedeutet nicht, dass man etwas nicht beherrscht, sondern lediglich, dass man sich nicht traut es zu tun ;-)
| Internet | Ihr Logo deutschlandweit auf T-Shirts |
Diplomatie: Jemanden so in die Hölle zu schicken, dass er sich auf die Reise freut!!! ;-)
Nicht Können bedeutet nicht, dass man etwas nicht beherrscht, sondern lediglich, dass man sich nicht traut es zu tun ;-)
| Internet | Ihr Logo deutschlandweit auf T-Shirts |
Diplomatie: Jemanden so in die Hölle zu schicken, dass er sich auf die Reise freut!!! ;-)