PDA

View Full Version : How to Increase this Space


yousufkanan
09-11-2019, 01:21 PM
How can i increase this Last post Size?

https://vborg.vbsupport.ru/external/2019/09/1.gif

PinkMilk
09-11-2019, 02:35 PM
FORUMHOME template find:

<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>


Replace with:
<td class="thead" width="60%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="20%">$vbphrase[last_post]</td>
<td class="thead" width="10%">$vbphrase[threads]</td>
<td class="thead" width="10%">$vbphrase[posts]</td>


You can always play around with the ratio of each column just make sure the ratio always equals 100:
60 + 20 + 10 + 10 = 100

For those using the moderater column this should also be included in the ratio 100 split over 5 columns rather than just 4 as above.
<td class="thead" width="50%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="20%">$vbphrase[last_post]</td>
<td class="thead" width="10%">$vbphrase[threads]</td>
<td class="thead" width="10%">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="10%">$vbphrase[moderator]</td>
</if>


This can and probably should be done in the FORUMDISPLAY template to.

yousufkanan
09-14-2019, 02:57 AM
Its working But Post Looks short. How can i show more ??

https://vborg.vbsupport.ru/external/2019/09/9.jpg

PinkMilk
09-14-2019, 05:14 PM
Its working But Post Looks short. How can i show more ??

vBulletin Options > Forum Listings Display Options > Last Thread Title Maximum Displayed Characters

lange
09-15-2019, 11:18 AM
And if you want to display all your content in two columns, you put all your code in a table like this one:

<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="75%">your code</td>
<td width="25%">&nbsp;</td>
</tr>
</table>

This table is valid for forumhome, forumdisplay, etc.