craiovaforum |
02-15-2006 06:32 PM |
works fine, except for a small glitch.
some vars in the template modification are wrong.
your readme file sais to add the following code:
Code:
<tbody>
<tr>
<td class="thead" colspan="2"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_stats')"><img id="collapseimg_forumhome_stats" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_urt].gif" alt="" border="0" /></a>Users Registered Today: $numregtoday</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_stats" style="$vbcollapse[collapseobj_forumhome_urt]">
<tr>
<td class="alt2"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="Users Registered Today" border="0" /></td>
<td class="alt1" width="100%"><div class="smallfont">$regtoday</div></td>
</tr>
</tbody>
this makes the collapse buttons for the Users Registered Today and Forum statistics windows conflict with each other.
the code should be:
Code:
<tbody>
<tr>
<td class="thead" colspan="2"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_urt')"><img id="collapseimg_forumhome_stats" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_urt].gif" alt="" border="0" /></a>Users Registered Today: $numregtoday</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_urt" style="$vbcollapse[collapseobj_forumhome_urt]">
<tr>
<td class="alt2"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="Users Registered Today" border="0" /></td>
<td class="alt1" width="100%"><div class="smallfont">$regtoday</div></td>
</tr>
</tbody>
|