Stehen die Klassen im HTML-Head? Innerhalb einer CSS-Section.
z.b. so:
head>
<title>File Manager - Overview</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../_css/apps.css" rel="stylesheet" type="text/css">
<link href="../../core/_css/navigation.css" rel="stylesheet" type="text/css">
<link href="../_css/gridflat/grid.css" rel="stylesheet" type="text/css" />
<link href="../_css/dialog2006.css" rel="stylesheet" type="text/css" />
<link href="../_css/menu/menu.css" rel="stylesheet" type="text/css" />
<script src="../_js/menu.js"></script>
<script src="../_js/grid.js"></script>
<script src="../_js/dialog2005.js"></script>
<!-- grid format -->
<style>
.active-controls-grid {height: 100%; font: menu;}
.active-column-0 {width: 200px;}
.active-column-1 {width: 80px; text-align: right;}
.active-column-2 {width: 150px;}
.active-column-3 {width: 120px;}
.active-column-4 {width: 0px;display:none}
.active-column-5 {width: 0px;display:none}
.active-box-image {height: 16px;} /* for firefox 0.8 */
.active-grid-column {border-right: 1px solid threedlightshadow;}
.active-grid-row {border-bottom: 1px solid threedlightshadow;}
.list-column-120 {width:120px}
.list-column-default {}
</style>
</head>
Tata - das ist der Fehler, Du mußt die in den HTML-Head schreiben, oder noch besser in eine externe CSS-Date, die dann von allen Seiten referenziert wird, das spart Traffic und Ärger.
wie hier:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="description" content="Antworten" />
<meta name="keywords" content="PHP, MySQL, bulletin, board, free, open, source, smf, simple, machines, forum" />
<script language="JavaScript" type="text/javascript" src="http://atnotes.de/Themes/default/script.js"></script>
<script language="JavaScript" type="text/javascript"><!--
var smf_theme_url = "http://atnotes.de/Themes/atnotes";
var smf_images_url = "http://atnotes.de/Themes/atnotes/images";
// --></script>
<title>Antworten</title>
<link rel="stylesheet" type="text/css" href="http://atnotes.de/Themes/atnotes/style.css" />
<link rel="alternate" type="application/rss+xml" title="AtNotes-RSS" href="http://atnotes.de/index.php?type=rss;action=.xml" />
<link rel="shortcut icon" href="http://atnotes.de/Themes/atnotes/images/atnotes-images/favicon.ico" />
<link rel="help" href="http://atnotes.de/index.php?action=help" target="_blank" />
<link rel="search" href="http://atnotes.de/index.php?action=search" />
<link rel="contents" href="http://atnotes.de/index.php" />
<link rel="prev" href="http://atnotes.de/index.php?action=;topic=36863.0;prev_next=prev" />
<link rel="next" href="http://atnotes.de/index.php?action=;topic=36863.0;prev_next=next" />
<link rel="index" href="http://atnotes.de/index.php?action=;board=3.0" />
</head>
Das CSS einfach in eine Seite packen und die auf Text/CSS setzen, oder eine css.datei reinladen, beides geht
Grüße David