MyBB Community Forums

Full Version: Bad use of Space
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I make the text stretch out all the way to just before 'Threads' column?

[Image: DDM50U.png]
in general, theme's forumbit_depth1_cat template has widths defined like below
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>
<td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>

your theme might be having different values for width ; you can adjust it as required so that forum column gets adequate space ...

(2012-01-29, 10:51 AM)ranjani Wrote: [ -> ]in general, theme's forumbit_depth1_cat template has widths defined like below
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>
<td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>

your theme might be having different values for width ; you can adjust it as required so that forum column gets adequate space ...

Once again, you save the day ranjani.