Version: 2.01, by Roms
Developer Last Online: Nov 2023
Category: Mini Mods -
Version: 3.6.7
Rating:
Released: 12-18-2006
Last Update: 06-02-2007
Installs: 129
Template Edits
No support by the author.
Signature Legend
By: Roms, AN-net, and Sledgstone
Easy, 1-5 mins
This will add a simple legend (border) and members username around each members signature. Organize and make signatures look personalized for each user, easily.
(this adds the border, curved corners, and "username's sig:" around the users signature.)
Note: If you want the signature forced to the bottom of each post (Postbit Legacy) please use the second version (V2). I have left the old Version (V1) if you only want the signature enhanced.... Please Note it may not work on heavily moded sites...
Please remember to click Mark as Installed if you use this modification. (See Mod Options >)
If you use it please click INSTALL. Thanks :banana:
I tried viewing your site but you have it so guests can't view... so I'm not sure what the problem may be. It mainly works with the postbit legacy and it will not work properly with some styles. This mod was mainly made for people using the default vB style/ legacy and then customizing their site from there.
If you don't have any customizations already in your postbit you could revert the 'postbit legacy' template and then modify it with my code and it should work.
Hi there...I've installed this, but I'm looking over the code...and would like to know....I had installed a different hack not too long ago that was very simple and changed everyone's sig to use small font. I really like this cause some of my members have a bit much of wording that I really don't mind so long as the code forces all their text in their sig to small font.
I'm no coder by ANY means...so I'm not really sure here....but I do see the change that was made in my previous postbits.
Code:
<if condition="$post['signature']">
<!-- sig -->
<div class="smallfont">
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
How can I edit your hack code to force the member's sigs to go into small font?
Hi there...I've installed this, but I'm looking over the code...and would like to know....I had installed a different hack not too long ago that was very simple and changed everyone's sig to use small font. I really like this cause some of my members have a bit much of wording that I really don't mind so long as the code forces all their text in their sig to small font.
I'm no coder by ANY means...so I'm not really sure here....but I do see the change that was made in my previous postbits.
Try this:
PHP Code:
<if condition="$post['signature']">
<!-- sig -->
<hr size="1" style="color:$stylevar[tborder_bgcolor]" />
<div class="smallfont" valign="bottom">
<fieldset><legend>$post[username]'s Sig:</legend>$post[signature]</fieldset>
</div>
<!-- / sig -->
</if>