MyBB Community Forums

Full Version: Thread issue: text in a wrong place
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can someone help me with this issue? Everything is fine but when I open the thread I see something like that. Text is not showing up on the right but under a huuuge empty space and avatar. It looks like a signature. Hope you understand what I mean. I want to move post text where the arrow is. 

[Image: eFEknmL.png]

Everything is ok when I'm using an admin account:

[Image: gHMMcoG.png]

Any ideas how to solve it?
Can you post the contents of postbit_classic template?
(2019-10-02, 05:06 PM)DoctorX Wrote: [ -> ]Can you post the contents of postbit_classic template?

{$ignore_bit}{$deleted_bit}
<a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<div class="post classic {$unapproved_shade}" style="{$post_visibility}" id="post_{$post['pid']}">
<div class="post_author scaleimages">
	{$post['useravatar']}
	<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>
</div>
<div class="post_content">
	<div class="post_head">
		{$post['posturl']}
		{$post['icon']}
		<span class="post_date">{$post['postdate']} <span class="post_edit" id="edited_by_{$post['pid']}">{$post['editedmsg']}</span></span>
	{$post['subject_extra']}
	</div>
	<div class="post_body scaleimages" id="pid_{$post['pid']}">
		{$post['message']}
	</div>
	{$post['attachments']}
	{$post['signature']}
	<div class="post_meta" id="post_meta_{$post['pid']}">
		{$post['iplogged']}
		<div class="float_right">
			{$post['poststatus']}
		</div>
	</div>
	{$post['input_editreason']}
</div>
<div class="post_controls">
	<div class="postbit_buttons author_buttons float_left">
		{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']}
	</div>
	<div class="postbit_buttons post_management_buttons float_right">
		{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quickrestore']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_report']}{$post['button_warn']}{$post['button_purgespammer']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}
	</div>
</div>
</div>
mmm it seems to be fine.
may i have your forum url? i want to check the page source of showthread. maybe it is a plugin that breaks the template.
Here is the url: https://newconic.pl
Just click on a random topic Big Grin

I installed 2 plugins last time: Shoutbox and Advanced Sidebox
I checked it.
Try to disable Advanced Sidebox plugin and see if that gonna resolve it.
That was the first thing I did - I also cleared cookies but it didn't help.
Looks like a CSS problem, the total width of two <div> blocks exceeds 100%. Check global.css of your current theme for following entries with width:, padding: and margin::
.post.classic .post_author

.post.classic .post_content
Yes! It works!

Was 14 in post_author and 90 in post_content.

Thank you very much!