Such mal in den CSS Dateien nach:
prosilver:
colours.css
Code: Alles auswählen
/* Post noticies */
.notice {
border-top-color: #CCCCCC;
}
content.css
Code: Alles auswählen
/* Post noticies */
.notice {
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
width: auto;
margin-top: 1.5em;
padding-top: 0.2em;
font-size: 1em;
border-top: 1px dashed #CCCCCC;
clear: left;
line-height: 130%;
}
subsilver2
In subsilver2 wird keine CSS der EDIT_MESSAGE / EDIT_REASON zugeordnet.
Demnach müsste man in der
styles / subsilver2 / viewtopic_body.html
beim folgenden original Code die neu hinzuzufügenden CSS Eigenschaften mit einbauen:
Code: Alles auswählen
<!-- IF postrow.EDITED_MESSAGE or postrow.EDIT_REASON -->
<!-- IF postrow.EDIT_REASON -->
<br /><br />
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<td class="row3"><span class="gensmall">{postrow.EDITED_MESSAGE}</span></td>
</tr>
<tr>
<td class="row2"><span class="genmed">{postrow.EDIT_REASON}</span></td>
</tr>
</table>
<!-- ELSE -->
<br /><br />
<span class="gensmall">{postrow.EDITED_MESSAGE}</span>
<!-- ENDIF -->
<!-- ENDIF -->