In showflat/showthreaded.php look for code simular to this:
<br /> if ($Signature) {<br /> $Signature = str_replace("\n","<br />",$Signature);<br /> $Signature = "<br /><br />--------------------<br />$Signature";<br /> }<br />
And modify the dashed line accordingly.
You may want to place a variable in so it can be changed from the admin area.
Example:
<br /> if ($Signature) {<br /> $Signature = str_replace("\n","<br />",$Signature);<br /> $Signature = "<br /><br />{$theme['sig_line']}<br />$Signature";<br /> }<br />
and then in your admin >> edit theme.inc.php add this at the bottom text area:
<br />$theme['sig_line'] = '========================';<br />
Change the value to what ever you want of course.

I believe this will work. I haven't tested it though.
