MyBB Community Forums

Full Version: Move Avatar Under User name
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey I want to move the user avatar below the Username and User title

[Image: bm9FX6O.png]
admin panel >> templates >> your forum's active theme templates >> Post Bit Templates >> postbit_classic

find {$post['useravatar']}<br /> and move it below to {$post['usertitle']}<br /> and save the template

{$post['usertitle']}<br />
{$post['useravatar']}<br />
Find this code in Templates>yourtheme>Post bit Templates>postbit_classic

		<td class="{$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
		<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
		<span class="smalltext">
			{$post['usertitle']}<br />
			{$post['userstars']}
			{$post['groupimage']}
			{$post['useravatar']}<br />
			{$post['user_details']}<br />
		</span>

Replace it with this.[/php]

		<td class="{$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
		<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
		<span class="smalltext">
			{$post['usertitle']}<br />
			{$post['useravatar']}<br />
			{$post['userstars']}
			{$post['groupimage']}

			{$post['user_details']}<br />
		</span>
Thanks so much (:
Damn, .m..

You ninja'd me.