HyperWICHTIG: Ich krieg ne Krise

Gesperrt
Andrusch
Beiträge: 47
Registriert: Di 29. Apr 2003, 11:17
Wohnort: Berlin
Kontaktdaten:

HyperWICHTIG: Ich krieg ne Krise

Beitrag 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?
"Leute mit Mut und Charakter sind den anderen immer unheimlich." von Hermann Hesse
Besucht Andrusch-World
[nf]
Beiträge: 11
Registriert: Di 1. Jul 2003, 20:12
Kontaktdaten:

Beitrag von [nf] »

hi, hast du das style auch im head des Layouts eingebunden ?
Andrusch
Beiträge: 47
Registriert: Di 29. Apr 2003, 11:17
Wohnort: Berlin
Kontaktdaten:

Beitrag von Andrusch »

ja, habe ich!
"Leute mit Mut und Charakter sind den anderen immer unheimlich." von Hermann Hesse
Besucht Andrusch-World
pulk
Beiträge: 217
Registriert: Sa 2. Nov 2002, 09:57
Kontaktdaten:

Beitrag von pulk »

idea-tec
Beiträge: 1242
Registriert: Do 19. Sep 2002, 14:41
Wohnort: Dichtelbach
Kontaktdaten:

Beitrag 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;
		}
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!!! ;-)
Gesperrt