MyBB Community Forums

Full Version: Profile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I was wondering if there was a way to move certain information in a members profile somewhere else in the profile... if that makes sense?
For example, I want to move 'Additional Info About [member]' from the right hand side of the screen to the left hand side so when people view members profiles that piece of information will be on the other side of the screen.
Is there a way to do this?
Thanks.
Open member_profile template

Find && Remove
{$profilefields}

Find
</td>
<td><img src="{$theme['imgdir']}/pixel.gif" height="1" width="8" alt=""/></td>

Replace by
<br /> {$profilefields}
</td>
<td><img src="{$theme['imgdir']}/pixel.gif" height="1" width="8" alt=""/></td>

And after that, you probably will notice that the signature box isn't at the same height of "<username> Forum Info", well that's cause the member_profile_signature template has a <br /> at the beginning , you'll need to remove that.
Thankyou LeX-. That worked perfectly!!