sylem |
12-13-2006 03:37 PM |
Need template help with Forum Column Mod
I have the Aria skin (from vBstyles) installed on my board, and I've downloaded and installed this mod:
https://vborg.vbsupport.ru/showthrea...=99829&page=18
And everything is working beautifully except I can't edit the template correctly so what ends up happening is my forum columns get this extra gray box on the right side of them. On the instructions it says:
PHP Code:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++ edit template forumhome_forumbit_level1_nopost +++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
if your columnized forums should be below open for post categories, you also have to change level1_post that way..
find: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <if condition="$childforumbits"> <tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}"> $childforumbits </tbody> </if> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
replace with: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <if condition="$childforumbits"> <tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}"> <if condition="$forum['subforumcolumns'] > 1"> <tr> <td class="alt1" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>"> <table style="border: none; width: 100%;"> $childforumbits </table> </td> </tr> <else /> $childforumbits </if> </tbody> </if> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The only problem is, on the Aria skin on that template, I have to work with this:
PHP Code:
<if condition="$childforumbits"> <tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}"> <tr align="center"> <td class="thead"> </td> <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td> <td class="thead"> $vbphrase[threads] </td> <td class="thead"> $vbphrase[posts] </td> </tr> $childforumbits </if>
So its made it pretty difficult to integrate in there without messing up the forums. Can anyone help me out?
|