Seite 1 von 1

Schriftgröße in Tabelle

Verfasst: Do 19. Okt 2006, 16:37
von T.Lorenz
Hallo,

ich habe einen Artikel mit dem Layout "Standard" erstellt, in diesem Layout wird das CSS format.css aufgerufen.

Jetzt habe ich folgendes Problem:
In dem Artikel sind normaler Text und eine Tabelle enthalten. Der Text wir auch korrekt wie im CSS hinterlegt mit 11px ausgegeben, aber die Schriftgröße IN der Tabelle ist deutlich größer und kann nicht auf die normale Größe von 11px angepasst werden.

Hab schon zig Varianten ausprobiert, aber ich werd jetzt bald wahnsinnig...

Im CSS muss doch sicherlich ein Eintrag für das Layout einer Tabelle hinterlegt werden, wer kann mir mein CSS ergänzen?

Code: Alles auswählen

body             {font-family: helvetica, arial, geneva, sans-serif; font-size: x-small; color: #000000}
.punkte   	 {font-family: helvetica, arial, geneva, sans-serif; font-size:13; color:#AE6B00; font-weight: bold}
.headline   	 {font-family: helvetica, arial, geneva, sans-serif; font-size:15; color:#000000; font-weight: bold}
.subheadline   	 {font-family: helvetica, arial, geneva, sans-serif; font-size:13; color:#AE6B00}
.text		 {font-family: helvetica, arial, geneva, sans-serif; font-size:12; color:#000000 }
.navigation {font-family: helvetica, arial, geneva, sans-serif; font-size:10; color:#FFFFFF;}

A:link           {font-family: helvetica, arial, geneva, sans-serif; font-size:13; text-decoration: none; color: #000000}
A:visited        {font-family: helvetica, arial, geneva, sans-serif; font-size:13; text-decoration: none; color: #000000}
A:hover          {font-family: helvetica, arial, geneva, sans-serif; font-size:13; text-decoration: none; color: #AE6B00}
A:active         {font-family: helvetica, arial, geneva, sans-serif; font-size:13; text-decoration: none; color: #AE6B00}


A.klein:link	{font-family: helvetica, arial, geneva, sans-serif; font-size:11; text-decoration: none; color: #000000}
A.klein:visited {font-family: helvetica, arial, geneva, sans-serif; font-size:11; text-decoration: none; color: #000000}
A.klein:hover	{font-family: helvetica, arial, geneva, sans-serif; font-size:11; text-decoration: none; color: #AE6B00}
A.klein:active	{font-family: helvetica, arial, geneva, sans-serif; font-size:11; text-decoration: none; color: #AE6B00}
Danke! :)

Verfasst: Do 19. Okt 2006, 16:50
von Dodger77
Was wäre denn mit sowas hier:

Code: Alles auswählen

td {
font-size: 12px;
}
Ansonsten ist das hier doch kein HTML-/CSS-Forum. Fürs erste würde ich einen Besuch bei

http://de.selfthtml.org

vorschlagen. Da gibt es übrigens auch ein Forum für HTML/CSS.