MyBB Community Forums

Full Version: div profile [+img]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello guys, I dont touch in mybb for a long time and I not remember some thing
in the first time, sorry for my english, i'm brazilian

how i can resize the div of profile members in the thread?
and i want move the rank below avatar member
[Image: 1BEHq-.png]
1. for the first issue :
go to Your theme templates > postbit templates > postbit_classic templates >

Find this code :
<td class="{$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}">

change the width to 20% and save the template.

Next navigate to the Templates > Showthread templates > showthread_classic_header

Find width=15% change it to 20%.

This will solve the first issue Smile

2. IN the postbit_classic template find :
<span class="smalltext">
			{$post['usertitle']}<br />
			{$post['userstars']}
			{$post['groupimage']}
			{$post['useravatar']}<br />
			{$post['user_details']}
		</span>

Just change the order you like to have .
That means

<span class="smalltext">
			{$post['usertitle']}<br />
			{$post['useravatar']}<br />
                        {$post['userstars']}
			{$post['groupimage']}
			{$post['user_details']}
		</span>

This would solve the issue 2.

Hope this helps,
regards,
thx bro you has saved my life ;D