Link to ModThis mod adds a modbreak-tag to your forum. A modbreak is basically a tool for your moderators to make a clear statement in a topic, using a fieldset with a legend.
Possible usage:
[modbreak]
You aren't allowed to swear on this forum!
[/modbreak]
Will return (HTML):
<fieldset class="modbreak">
<legend>Modbreak</legend>
You aren't allowed to swear on this forum!
</fieldset>
Another possible use is:
[modbreak=Edit by Aaron]
I removed the link to a warez site!
[/modbreak]
Will return (HTML):
<fieldset class="modbreak">
<legend>Edit by Aaron</legend>
I removed the link to a warez site!
</fieldset>
Should you wish to style the modbreak (which isn't done by default), you can add the following lines to your theme's style.css:
.modbreak
{
border: 1px solid #000000;
}
.modbreak legend
{
color: #DD0000;
font-weight: bold;
}
I hope you find this mod useful.
