Quote:
Originally Posted by Sofia
You want to use a "td" ? If you want it, you must do that:
In your template forumhome_forumbit_level1_nopost
Find:
HTML Code:
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
Replace by:
HTML Code:
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">7<else />6</if>">
In the template forumhome_forumbit_level2_post
Find
HTML Code:
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
Add below:
HTML Code:
<td class="alt1"><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img border="0" src="images/misc/iconforums/$forum[forumid].gif" hspace="4px" align="left"/></a></td>
In the template forumhome
Find:
HTML Code:
<thead>
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead">$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>
</thead>
Replace by:
HTML Code:
<thead>
<tr align="center">
<td class="thead"> </td>
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead">$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>
</thead>
|
Dear Sofia,
Thank you for replying. However, I'm running into some trouble. Of the 3 codes you have asked to replace, I was able to locate only the second one. In template 1 and 3 you have mentioned, there is no such code which you have pointed out to replace. I think this may be because I'm using a custom skin.
I'll paste the code for the 3 templates in the next post. Hopefully, you would be able to point out where I'm missing something.