MyBB Community Forums

Full Version: postbit_author_user spacing help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
guys,

I need some help with why there's a spacing issue with the location area in the postbit.

here's the postbit_author_user code:

<div align="center"><div class="postbit-box">
<strong>Posts:</strong> <a href="search.php?action=finduser&amp;uid={$post['uid']}">{$post['postnum']}</a><br />
	<strong>{$lang->postbit_joined}</strong> {$post['userregdate']}<br />
	{$post['replink']}
<strong>Location:</strong> {$post['fid1']}
</div></div>

and a few screenshots:

[attachment=26226]
[attachment=26227]
[attachment=26228]
[attachment=26229]

as you'll see, some look fine, others don't. I checked the user's location in the admin cp from the first screenshot attached and there's no spacing in the text at all, but when viewing a post, there is...

here's my forum and the problem is with the 'ace navy' theme. you'll have to go to the bottom right and choose it in the quick theme area, otherwise you'll see a different theme.
Try changing text-align to left in your .postbit-box css. Right now it is justified.
(2012-05-12, 08:38 AM)Leefish Wrote: [ -> ]Try changing text-align to left in your .postbit-box css. Right now it is justified.

that did the trick! thanks, Lee!!!