MyBB Community Forums

Full Version: Post Bit help!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If anyone help me to get MyBB postbit like this:
[Image: selection031r.png]

I would apperciate that. Also that is vBulletin. I just want to get it as close to that as possible?!?!?

Thanks!Big Grin
Add the following code in your global.css
.post_userdetails {
	background: #FFFFFF;
	color: #000000;
	padding: 3px;
	margin: 1px;
	border: 1px solid #00131E;
	border-bottom: 2px solid #00131E;
	text-align: left;
	font-size: 11px;
}

Now Open postbit_author_user and Replace all code with this;
<div class="post_userdetails">{$lang->postbit_posts} {$post['postnum']}</div>
	<div class="post_userdetails">{$lang->postbit_joined} {$post['userregdate']}</div>
	{$post['replink']}{$post['warninglevel']}

Now open postbit_reputation template and Replace all code with this;
<div class="post_userdetails">{$lang->postbit_reputation} {$post['userreputation']}</div>

Now open postbit_warninglevel template and Replace all code with this;
<div class="post_userdetails">{$lang->postbit_warning_level} <a href="{$warning_link}">{$warning_level}</a></div>

Save all templates and stylesheets. Your Postbit-User Details should look like this;
[Image: attachment.php?aid=199]

For reputation bars, you may install this: http://yaldaram.com/showthread.php?tid=784
(2011-07-30, 04:53 AM)Yaldaram Wrote: [ -> ]Add the following code in your global.css
.post_userdetails {
	background: #FFFFFF;
	color: #000000;
	padding: 3px;
	margin: 1px;
	border: 1px solid #00131E;
	border-bottom: 2px solid #00131E;
	text-align: left;
	font-size: 11px;
}

Now Open postbit_author_user and Replace all code with this;
<div class="post_userdetails">{$lang->postbit_posts} {$post['postnum']}</div>
	<div class="post_userdetails">{$lang->postbit_joined} {$post['userregdate']}</div>
	{$post['replink']}{$post['warninglevel']}

Now open postbit_reputation template and Replace all code with this;
<div class="post_userdetails">{$lang->postbit_reputation} {$post['userreputation']}</div>

Now open postbit_warninglevel template and Replace all code with this;
<div class="post_userdetails">{$lang->postbit_warning_level} <a href="{$warning_link}">{$warning_level}</a></div>

Save all templates and stylesheets. Your Postbit-User Details should look like this;
[Image: attachment.php?aid=199]

For reputation bars, you may install this: http://yaldaram.com/showthread.php?tid=784

I did all that and it looks like this still:
http://premiergamerz.com/forums/showthre...960#pid960
You didn't added the following class in global.css;
.post_userdetails {
    background: #FFFFFF;
    color: #000000;
    padding: 3px;
    margin: 1px;
    border: 1px solid #00131E;
    border-bottom: 2px solid #00131E;
    text-align: left;
    font-size: 11px;
}
(2011-07-31, 06:27 PM)Yaldaram Wrote: [ -> ]You didn't added the following class in global.css;
.post_userdetails {
    background: #FFFFFF;
    color: #000000;
    padding: 3px;
    margin: 1px;
    border: 1px solid #00131E;
    border-bottom: 2px solid #00131E;
    text-align: left;
    font-size: 11px;
}


Everytime I save it as that it goes back to this:
.post_userdetails {
background: #000000;
padding: 3px;
margin: 1px;
border: 1px solid #00131E;
border-bottom: 2px solid #00131E;
text-align: left;
There is no class in the global.css: http://premiergamerz.com/forums/cache/th...global.css It means you probably added this class in any other theme's global.css
(2011-07-31, 06:58 PM)Yaldaram Wrote: [ -> ]There is no class in the global.css: http://premiergamerz.com/forums/cache/th...global.css It means you probably added this class in any other theme's global.css

Huh? What does this mean?
I mean that you probably added this class in wrong theme. Because its not visible in the global.css of the theme your website currently using.