FORUMDISPLAY template editing .. need help?

Cloner

New Member
cuz my forum is arabic so i edited the style so it can work with arabic

anyways the issue is .. i wanna change the last posts, views and posts count Tables size in the FORUMDISPLAY ..

i get it to work in FORUMHOME by changing this code

Code:
 <tr align="center">
      <td class="thead">&nbsp;</td>
      <td class="thead" width="100%" align="$stylevar[align=left]">$vbphrase[forum]</td>
          <td class="thead" width="200">$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>
to
Code:
<tr align="center">
      <td class="thead" width="5%">&nbsp;</td>
      <td class="thead" width="50%" align="$stylevar[align=left]">$vbphrase[forum]</td>
      <td class="thead" width="25%">$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="0%">$vbphrase[moderator]</td>
      </if>
the problem now is in the FORUMDISPLAY


well if someone doesn't understand yet .. look at the pix


i want this FORUMDISPLAY

look like this HOMEDISPLAY
 
Back
Top