Quote:
Originally Posted by Club3G
It's appearing outside of the main profile field box for me. Any way to move it to where Group Memberships is now?
Example:
http://www.sevenstring.org/forum/member.php?u=23
Working fine otherwise, thanks.
[high]* Club3G clicks install[/high]
|
That's how I did it. Just FIND:
PHP Code:
<td class="tcat" width="50%">$vbphrase[group_memberships]</td>
REPLACE it with:
PHP Code:
<td class="tcat" width="50%">$vbphrase[timezone_image]</td>
Then FIND:
PHP Code:
<td class="panelsurround" align="center">
<div class="panel">
<div align="$stylevar[left]">
<div class="fieldset">
<table cellpadding="0" cellspacing="$stylevar[formspacer]px" border="0">
<tr>
<if condition="$show['membergroups']">
<td></td>
<else />
<td><strong><phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase></strong></td>
</if>
</tr>
$membergroupbits
</table>
</div>
</div>
</div>
</td>
REPLACE it with:
PHP Code:
<td class="panelsurround" align="center">
<div class="panel">
<div align="$stylevar[center]">
<div class="fieldset">
<table cellpadding="0" cellspacing="$stylevar[formspacer]px" border="0">
<tr>
<td><img src="gmtimage.php?gmt=$userinfo[timezoneoffset]&localtime=$userinfo[localtime]&localdate=$userinfo[localdate]#gif.gif" alt="$vbphrase[timezone_image]"/></td>
</tr>
</table>
</div>
</div>
</div>
</td>
and you should be all set.