not sure but its probably the
forumhome_loggedinusers template, right?
here its the original :
________________________
<tr id="cat">
<td bgcolor="{categorybackcolor}" colspan="6"><a href="online.php?s=$session[sessionhash]"><normalfont color="{categoryfontcolor}"><b>Currently Active Users</b></normalfont></a><normalfont color="{categoryfontcolor}"><b>: $totalonline</b></normalfont></td>
</tr>
<tr>
<td bgcolor="{firstaltcolor}" colspan="6"><smallfont>
<nobr>There are currently $numberregistered members and $numberguest guests on the boards.</nobr> |
<nobr>Most users ever online was $recordusers on $recorddate at $recordtime.</nobr><br>
$activeusers</smallfont></td>
</tr>
______________________________________________
for removing the moderators column I had to do this change:
Template: forumhome_loggedinusers
Change:
colspan="6"
to
colspan="5"
and
colspan="6"
to
colspan="5"
____________-
for putting images at categories I did this:
Find the following code:
code:
<tr id="cat">
<td bgcolor="{categorybackcolor}" colspan="6">
and replace it with the following code:
code:
<tr id="cat">
<td background="{imagesfolder}/frontpage/cat_bg_01.gif" bgcolor="{categorybackcolor}" colspan="6">
____________________
so the template right now looks like that :
<tr id="cat">
<td background="{imagesfolder}/frontpage/cat_bg_01.gif" bgcolor="{categorybackcolor}" colspan="5"><a href="online.php?s=$session[sessionhash]"><normalfont color="{categoryfontcolor}"><b>Currently Active Users</b></normalfont></a><normalfont color="{categoryfontcolor}"><b>: $totalonline</b></normalfont></td>
</tr>
<tr>
<td bgcolor="{firstaltcolor}" colspan="5"><smallfont>
<nobr>There are currently $numberregistered members and $numberguest guests on the boards.</nobr> |
<nobr>Most users ever online was $recordusers on $recorddate at $recordtime.</nobr><br>
$activeusers</smallfont></td>
</tr>
________________-
do you see anything wrong on this?
|