MyBB Community Forums

Full Version: Some help with customizing my header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there, I want to put the same box as in the second picture on my website's header. I want it to contain stats and stuff like that for the user after he logs in.
My site: http://i.imgur.com/2PUskBd.png
Target site: http://i.imgur.com/YvzIXgD.png
Thanks a lot!
Not sure about all the stats as they look like a plugin (uploaded/ downloaded) but it's just a div with the welcomeblock inside it.

You'll need to edit Templates > Theme > Header Templates > header_welcomeblock_member, along with a few edits in your header template, also add the css in global.css.   


<div class="userinfo float_right">
{$welcomeblock}
</div>

#userinfo {
     background: #ccc;
    padding: 10px;
    text-align: left;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;

}