Date line and (edit etc) line above sig rather than below it ?

The content is in two separate templates.

Signatures are part of the message template and the timestamp, controls, links, etc. are part of the post template.
 
So no easy way to do it ?

Try this...


Under Appearance -> Styles -> your style -> message

Find
Code:
        <xen:if is="{$visitor.content_show_signature} && {$message.signature}">
            <div class="baseHtml signature ugc"><aside>{xen:raw $message.signatureHtml}</aside></div>
        </xen:if>

Move right below:
Code:
        {xen:raw $messageAfterTemplate}
 
Top Bottom