MyBB Community Forums

Full Version: position message
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi friends.

how to move this position:
[1] Go to:

ACP > Templates & Styles > Templates > [Theme Name] Templates > Show Thread Templates > showthread_classic_header
Find the code:
<td class="tcat" width="15%"><span class="smalltext"><strong>{$lang->author}</strong></span></td>

Change width="15%" to width="20%"

[2] Go to:

ACP > Templates & Styles > Templates > [Theme Name] Templates > Postbit Templates > postbit_classic
Find the code:
<td class="{$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;">

Change width="15%" to width="20%"

Remember, that 20% I have mentioned is an example. You can use any greater value until it appears correct, just remember to use the same value for both.

Note: Another method is setting table cell min-width through inline CSS, but I guess the above solution will solve your issue.
thanks effone.