Thomas J.S.: css / scrollbalken - ich werd´noch verrückt....!

Beitrag lesen

Hallo,

ich brauche mal dringed Eure Hilfe!

----------
Not Found
The requested URL /v2/newsletter/index.php was not found on this server.
----------

Da können wir nur schwer helfen.

Aber was möchtest du mit dieser merkwürdigen Verschachtelung im CSS erreichen?
body {
 background:#58563D;
 font-family: arial;
 font-size: 11px;
 scrollbar-face-color: #A79871;
 scrollbar-shadow-color: #58563D;
 scrollbar-highlight-color: #D0C9B7;
 scrollbar-3dlight-color: #D0C9B7;
 scrollbar-darkshadow-color: #58563D;
 scrollbar-track-color: #58563D;
 scrollbar-arrow-color: #D0C9B7;
  a:link {
  color: #eeeeee;
  text-decoration: none;
  }
  a:visited {
  color: #F8F6EF;
  text-decoration: none;
  }
  a:active {
  color: #F8F6EF;
  text-decoration: none;
  }
  a:hover {
  color: #F8F6EF;
  text-decoration: underline;
  }
 }

Das ist falsch. Du solltest die Definition für body abschließen, bevor du die Linksfarben definierts (vergiss mal das <body link=""..> etc!
Der Rest deiner CSS ist auch falsch: es kugelt ein "}" nur zum Spaß im CSS herum. Wenn du unterschiedliche Linkfarben in Tabellenzellen verwenden möchtest als im Rest der Seite, muss du entweder mit Klassen arbeiten, oder richtig "Verschachteln"
td a:link { ...}
td a:hover { ...}
etc.

Grüße
Thomas