MyBB Community Forums

Full Version: Horizontal user postbits to vertical?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi Leefish, thanks for the help.

What i have now is that my postbit_author_user looks like this:

<div style="white-space: pre-line;">%%TYL_NUMTHANKEDLIKED%%<br />
{$lang->postbit_posts} {$post['postnum']}<br />
{$lang->postbit_joined} {$post['userregdate']}<br />
Location: {$post['fid1']}<br />
Garage:<a href="garage.php?action=list&amp;search=username&amp;searchterm={$post['username']}&amp;exactuser=1"> {$post['fid5']}</a><br />
<if in_array($GLOBALS['forum']['fid'], array(21,22,24)) then>
{$post['replink']}
</if>
</div>

Which has appeared to make everything the same which is nice, but as you can see from the attachment, the 'Author' and 'Message' columns don't align properly?
Yea, the problem is in your showthread_classic_header template.

Open it up and replace the code with this:

<tr>
			<td class="tcat" width="25%"><span class="smalltext"><strong>{$lang->author}</strong></span></td>
			<td class="tcat"><span class="smalltext"><strong>{$lang->message}</strong></span></td>
		</tr>
Pages: 1 2