MyBB Community Forums
Move Avatar Under User name - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Community Archive (https://community.mybb.com/forum-106.html)
+--- Forum: Archived Forums (https://community.mybb.com/forum-143.html)
+---- Forum: Archived Development and Support (https://community.mybb.com/forum-155.html)
+----- Forum: MyBB 1.6 (https://community.mybb.com/forum-138.html)
+------ Forum: 1.6 General Support (https://community.mybb.com/forum-127.html)
+------ Thread: Move Avatar Under User name (/thread-146064.html)



Move Avatar Under User name - rainbowdash93 - 2013-09-29

Hey I want to move the user avatar below the Username and User title

[Image: bm9FX6O.png]


RE: Move Avatar Under User name - .m. - 2013-09-29

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 />



RE: Move Avatar Under User name - Triexe - 2013-09-29

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>



RE: Move Avatar Under User name - rainbowdash93 - 2013-09-29

Thanks so much (:


RE: Move Avatar Under User name - Triexe - 2013-09-29

Damn, .m..

You ninja'd me.