The demo link does not work. Do we have screencaps or another demo link?
--------------- Added [DATE]1218078055[/DATE] at [TIME]1218078055[/TIME] ---------------
Quote:
Originally Posted by Kerry-Anne
Step Six: Adding A Row For Subforum Information
When you have clicked on your category, the next page displays information abour the subforums. As we have removed this information, this requires adding back in.
To do this find
Code:
</td>
</tr>
</tbody>
<if condition="$childforumbits">
and add above it
Code:
<if condition="$show['subforums']">
</td>
</tr>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
This tells it to add an additional row if it is showing subforums. The width of this row is the full width of the forums.
|
My template looks like this
Code:
</table>
<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody>
<tr>
<td class="tcat" style="background:url(images/categories/cat_$forumid.gif) no-repeat;" colspan="<if condition="$vboptions[showmoderatorcolumn]">5<else />4</if>" height="75">
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><img src="/forums/images/clear.gif" width="100%" height="20" border="0"></a>
</td>
<td class="tcat" align="center">
<if condition="$childforumbits">
<a href="#top" onclick="return toggle_collapse('forumbit_$forumid')"><img id="collapseimg_forumbit_$forumid" src="$stylevar[imgdir_button]/collapse_tcat{$collapseimg_forumid}.gif" alt="" border="0" /></a>
</if>
</td>
</tr>
<tr align="center">
<td class="thead" width="5%"> </td>
<td class="thead" width="50%" align="$stylevar[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>
</tr>
</tbody>
<if condition="$childforumbits">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
$childforumbits
</tbody>
</if>
Your code does not match mine exactly. Where do I put it?