MyBB Community Forums

Full Version: boarder
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How Can I add a boarder around stats like shown in picture 2.

Picture 1 is how it looks now.

[Image: attachment.php?aid=19942]
Open global.css in Advanced Mode and add this to the end:
.detailsborder {
    background: #fff;
    padding: 1px 4px;
    margin: 2px;
    border: 1px solid #000
}

Open the postbit_author_user template and replace everything with this:
<div class="detailsborder">{$lang->postbit_posts} {$post['postnum']}</div>
<div class="detailsborder">{$lang->postbit_joined} {$post['userregdate']}</div>
{$post['replink']}{$post['warninglevel']}

Open the postbit_reputation template and replace it with:
<div class="detailsborder">{$lang->postbit_reputation} {$post['userreputation']}</div>

Open the postbit_warninglevel template and replace it with:
<div class="detailsborder">{$lang->postbit_warning_level} <a href="{$warning_link}">{$warning_level}</a></div>
thank you so much