Seite 1 von 1
HyperWICHTIG: Ich krieg ne Krise
Verfasst: Di 8. Jul 2003, 14:16
von Andrusch
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?
Verfasst: Di 8. Jul 2003, 14:24
von [nf]
hi, hast du das style auch im head des Layouts eingebunden ?
Verfasst: Di 8. Jul 2003, 14:27
von Andrusch
ja, habe ich!
Verfasst: Di 8. Jul 2003, 17:15
von pulk
Verfasst: Di 8. Jul 2003, 17:55
von idea-tec
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>
den Code habe ich mir aus deiner seite herausgeholt...
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;
}