I'm trying to do the same thing =S
at vBulletin.com this thread supposedly has the instructions for setting the column widths. However after doing them, 'threads' & 'posts' columns are still there.
I used the following in FORUMHOME and in FORUMDISPLAY templates:
Quote:
Originally Posted by Eq4Bits
I did the template edits in both ForumHome and ForumDisplay to where that snippet of code is:
PHP Code:
<tr align="center"> <td class="thead" width="0%"> </td> <td class="thead" width="75%" align="$stylevar[left]">$vbphrase[forum]</td> <td class="thead" width="25%">$vbphrase[last_post]</td> <td class="thead" width="0%">$vbphrase[threads]</td> <td class="thead" width="0%">$vbphrase[posts]</td> <if condition="$vboptions['showmoderatorcolumn']"> <td class="thead" width="0%">$vbphrase[moderator]</td> </if> </tr>
As you can see 75% +25% adds up to 100% but still the 'Threads' & 'Posts' columns with the 'counts' in them are showing. I only want the forum(s) and last posts showing. What else can I try?
|