MyBB Community Forums

Full Version: Custom USER INFO
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i need to turn it: http://i.imgur.com/NwP5sVr.png

on it http://i.imgur.com/SZSUeZ4.png

can someone make it?
original tut here : http://myskins.org/Thread-Add-Boxes-to-M...n=lastpost
For this you need to edit few templates and its easy.
First you need to work with css :

Copy the below code and paste it in your theme global.css at the bottom.

.pbit {
        background: #fff;
        border-radius: 3px;
        border: 1px double #dadada;
        font-size: 11px;
        font-weight: normal;
        margin-bottom: 3px;
        padding: 6px 5px 5px;
        text-align: left;
}

Then navigate to your theme templates > Open Postbit Templates > Postbit_ Author _ User templates
Copy this code and replace it in your templates :

	<div class="pbit">{$lang->postbit_posts} {$post['postnum']}</div>
	<div class="pbit">{$lang->{$lang->postbit_joined} {$post['userregdate']}</div>
	<div class="pbit">{$lang->{$post['replink']}</div>
        <div class="pbit">{$lang->{$post['warninglevel']}</div>

Save the templates and the thing should work for you Smile
Hope this helps,
regards,
Ty envira!