Align Last Post Column?

In "forumhome_forumbit_level1_nopost" template...

Replace this:
PHP:
<tr align="center">
	  <td class="thead">&nbsp;</td>
	  <td class="thead" width="100%" align="$stylevar[align=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>


with this:
PHP:
<tr align="center">
      <td class="thead">&nbsp;</td>
      <td class="thead" width="50%" align="$stylevar[align=left]">$vbphrase[forum]</td>
      <td class="thead" width="36%">$vbphrase[last_post]</td>
      <td class="thead" width="8%">$vbphrase[threads]</td>
      <td class="thead" width="8%">$vbphrase[posts]</td>
      <if condition="$vboptions['showmoderatorcolumn']">
      <td class="thead">$vbphrase[moderator]</td>
      </if>
</tr>

If not found in above template, look in "forumhome" template.
 
Back
Top