MyBB Community Forums

Full Version: Need Some Help With Postbit.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I think pictures are better way to communicate the problem so here is the image ---
[Image: 2209a4.png]

I need to move the user info as depicted in the picture (only till HQBux)
Also I want to make a box type layout separately for awards besides the user info...

Help is really appreciated Smile

Thanks in advance Smile
Go to => "postbit" of "postbit template"
Find:-
<td class="smalltext post_author_info" width="165" >
{$post['user_details']}
</td>

and replace with this:-
<td class="smalltext post_author_info" width="165" >
	{$post['user_details']}
</td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;</td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;</td>

What will this code do ??
P.S. what is &nbsp; ???
^ that &nbsp; is html code for a space AND it is used in above code to get
an empty cell in the table to get your required user info shifted to left !!
Ohhkk lemme try then !
Will post back Smile
(2011-07-17, 02:12 PM)sumicool Wrote: [ -> ]Ohhkk lemme try then !
Will post back Smile

Sure Smile
Well got a prob again Undecided

When I give an user two awards the space between the user info is increased and the user info shifts more towards the left Sad


[Image: a214c0.png]
I wanted to have something like this so that the awards no matter how many remain in that box.
Screenshots of an error ?
I see you fixed it now. Do you have another problem with your awards?
(2011-07-17, 03:05 PM)Jason L. Wrote: [ -> ]I see you fixed it now. Do you have another problem with your awards?

No he has not, I just saw his error now in his site, Here is Fix:-

Find this,
<td class="smalltext post_author_info" width="165" >
    {$post['user_details']}
</td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;</td><td><center>

and replace with this:- [Do not do any Changes], Just Copy paste it, This should fix that.

<td class="smalltext post_author_info" width="165" >
    {$post['user_details']}
</td>
<td width="165"><center>

and do not do any edit to it. I have done these changes as per your site configuration, Hope this Works for you.
Pages: 1 2