Hoi AlternativeComputing,

Suche in der block-smf_Center.php folgenden Code:
// Der Tabellenkopf für die Threads und Posts
$content = '<table width="100%" border="0" cellspacing="1" cellpadding="2" style="background: ' . $bgcolor2 . ';" class="smf-block list">
<tr>';
$content .= '<th colspan="' . (($show_icons) ? 2 : 1) . '">' . $txt['319'] . '</th>'; # Thema
if ($show_starter) {
$content .= '<th>' . $txt['109'] . '</th>'; # Themenstarter
}
if ($show_replies) {
$content .= '<th>' . $txt['110'] . '</th>'; # Antworten
}
if ($show_views) {
$content .= '<th>' . $txt['301'] . '</th>'; # Aufrufe
}
$content .= '<th>' . $txt['111'] . '</th>'; # Letzter Beitrag
$content .= '
</tr>
';
und ersetze ihn hiermit bzw. passe die Farbe an:
// Der Tabellenkopf für die Threads und Posts
$content = '<table width="100%" border="0" cellspacing="1" cellpadding="2" style="background: ' . $bgcolor2 . ';" class="smf-block list">
<tr>';
$content .= '<th style=background-color:#A7C325 colspan="' . (($show_icons) ? 2 : 1) . '">' . $txt['319'] . '</th>'; # Thema
if ($show_starter) {
$content .= '<th style=background-color:#A7C325>' . $txt['109'] . '</th>'; # Themenstarter
}
if ($show_replies) {
$content .= '<th style=background-color:#A7C325>' . $txt['110'] . '</th>'; # Antworten
}
if ($show_views) {
$content .= '<th style=background-color:#A7C325>' . $txt['301'] . '</th>'; # Aufrufe
}
$content .= '<th style=background-color:#A7C325>' . $txt['111'] . '</th>'; # Letzter Beitrag
$content .= '
</tr>
';