Hi ...
dann mach das ganze wieder rückgängig ..
dafür machst du folgendes ...
suche in der css-Datei
Code: Alles auswählen
td.subtitle {
background-color: #CFCFCF;
width: 100%;
height: 25px;
color: #555555;
font-size: 12px;
font-family: sans-serif;
}
danach einfügen:
Code: Alles auswählen
td.subfooter {
background-color: #669900;
width: 100%;
height: 25px;
color: #555555;
font-size: 12px;
font-family: sans-serif;
}
suche in der overall_footer.tpl
Code: Alles auswählen
<table width="100%" cellpadding="0" cellspacing="0" bgcolor="669900">
<tr>
<td class="subtitle"><div align="center">© by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> <span class="small">| tpl © by <a href="http://www.andrewcharron.tk">Andrew Charron</a></span> | Alexander Meurer
<div class="small"></div>
</div></td>
</tr>
</table>
ersetze mit:
Code: Alles auswählen
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="subfooter"><div align="center">© by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> <span class="small">| tpl © by <a href="http://www.andrewcharron.tk">Andrew Charron</a></span> | Alexander Meurer
<div class="small"></div>
</div></td>
</tr>
</table>
Markus