MyBB Community Forums

Full Version: hi, how to make my forum to look like this?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
demo link : Click here

Click here



and look as the attachment. .trow1 look like in that forum. as well as the reputation bar.

Any links done b4 can any1 help add here? thank you.

guide needed.
To force a default postbit for all users you can use this plugin: http://community.mybb.com/thread-93564.html
Thank you , Aries-Belgium and Yaldaram.

It works out just as the described link. Thank you once again.
(2011-06-03, 09:18 AM)Sakuranohana Wrote: [ -> ]Thank you once again.

You're welcome Wink
Hi, anothing, was wondering whether u know how to insert background boxes to specific places inside post layout?, umm i mean, example : [post : 0] <-- theres a color background beneath it.

hmmm maybe some pictures might help

if picture not so clear, sample also as in the demo link above.

[Image: Testhelp.png]
For reputations, you may install this: http://mods.mybb.com/view/reputation-bars , then you would need to use CSS to style the <div> s
In template 'postbit_author_user', search:
{$lang->postbit_posts} {$post['postnum']}
And wrap it in a div, like this
<div class="postbit_posts">{$lang->postbit_posts} {$post['postnum']}</div>

Now in your global.css stylesheet of your theme, add this (for example):
.postbit_posts {
background: red;
}
But you can add any style you want.