
12-19-2006, 11:35 AM
|
|
|
Join Date: May 2006
Posts: 200
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Clochard
Hello,
first, excuse my bad english  ,
I have Hardcoded the width of the Tables.
In Template forumhome_forumbit_level1_nopost
Original
Code:
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="175">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
My changed
Code:
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="55%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="30%">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
And it works fine, you must change width in percent and not in pixel.
Greetings, Clochard
www.family-of-baelgun.de
|
Yep that one worked TY
|