MyBB Community Forums

Full Version: How can i move the contact details to the right
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When I am browsing the profile page I get the information tab and under that in a new tab the pm,email functions how can i move that right next to the information tab.
Hi,

you have to edit two theme templates:

First - member_profile

Open member_profile template to edit, search {$contact_details} and move it from old position right above {$profilefields}. - so that it look like that:
<---snip--->
<td width="50%" valign="top">
    {$contact_details}
    {$profilefields}
    {$signature}
<--snip-->

Second - member_profile_contact_details

Replace template content with:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder tfixed">
	<colgroup>
	<col style="width: 30%;" />
	</colgroup>
	<tr>
		<td colspan="2" class="thead"><strong>{$lang->users_contact_details}</strong></td>
	</tr>
	{$website}
	{$sendemail}
	{$sendpm}
	{$contact_fields['icq']}
	{$contact_fields['aim']}
	{$contact_fields['yahoo']}
	{$contact_fields['skype']}
	{$contact_fields['google']}
</table>
<br />