MyBB Community Forums

Full Version: Any way to increase this text?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Greetings,

Is there any way to increase the text here (word count)

[Image: 63188599ej2.png]


TY.
If you had searched for this, it has been explained many times before - so you would have got a quicker answer to your question.

In ./inc/functions_forumlist.php, find:

$lastpost_subject = my_substr($lastpost_subject, 0, 25)."...";

Increasing the 25 will show more of the text. Remember that more will stretch the size of the column...
TY for reply. LOL I didn't know what to search for.


TY again.
One more question, is it possible to align the text to left side?
In Forum Bit Templates, in forumbit_depth1_cat, change

<td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>

to

<td class="tcat" width="200" align="left"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>

In forumbit_depth2_cat, change

<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>

to

<td class="{$bgcolor}" valign="top" align="left" style="white-space: nowrap">{$lastpost}</td>

forumbit_depth2_forum, change

<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>

to

<td class="{$bgcolor}" valign="top" align="left" style="white-space: nowrap">{$lastpost}</td>
TY bro. God bless you.