MyBB Community Forums

Full Version: Move username/ranktitle/rankimage above avatar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys!

Hope you're all well.

I'm trying to put all the username/ranktitle/rankimage (author_information) stuffs above the avatar, without changing the other contents of the post_content, but it's been pretty tough so far.

I already changed to that classic-post configuration like I've seen in many requests similar to this one here, but it seems to stay under the avatar like that by default.

Forum link test-post: https://pizzatododia.com.br/showthread.p...pid=1#pid1

I'm sure it's something easy to change in global.css, but I've been messing around and around for hours without success now. Can someone help me? 

I also tried messing with the author_information, but it doesn't move up.

Thanks a lot!
Your theme > templates > Post bit templates > postbit_classic

<div class="post_author scaleimages">
	<div class="author_information">
				{$post['useravatar']}
			<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
			<span class="smalltext">
				{$post['usertitle']}<br />
				{$post['userstars']}
				{$post['groupimage']}
			</span>
	</div>
	<div class="author_statistics">
		{$post['user_details']}
	</div>
</div>
[Image: c6AsOAi.png]

This is how it looks on default.

	<div class="post_author scaleimages">
		<div class="author_information">
			<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
			<span class="smalltext">
				{$post['usertitle']}<br />
				{$post['userstars']}
				{$post['groupimage']}
			</span>
		</div>
		<div class="author_statistics">
			{$post['user_details']}
		</div>
		{$post['useravatar']}
	</div>

[Image: hRUiUwL.png]
And now it has title, stars, image above user avatar.