|
| Author |
Message |
juliejesta
Joined: 06 Jun 2006
Posts: 33
|
Posted: 7/5/2006, 10:16 am Post subject: how do i move the "who's online" box up? |
|
|
at the moment its at the bottom of the forums on the index page! i think near the tops better?
but how do i do that! please and thanks _________________ Julie.
www.ParentsTime.co.uk |
|
| Back to top |
|
 |
Mercury
Joined: 24 Oct 2005
Posts: 184
|
Posted: 7/6/2006, 8:30 pm Post subject: |
|
|
Directly above the forum list (albeit with some space in between, just like how it is on the bottom)?
Though your code may be a bit different, it should be similar enough to recognize:
Open index_body.tpl as it resides in the respective template's directory (i.e.--"/templates/{enter template name here}/"), highlight and copy the following code near the end of the file (from <table to </table>):
| Code: |
<table width="95%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" colspan="2" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}" class="cattitle">{L_WHO_IS_ONLINE}</a></span></td>
</tr>
<tr>
<td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/Boyz/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}</span>
</td>
</tr>
<tr>
<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE} [ {L_WHOSONLINE_ADMIN} ] [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}</span></td>
</tr>
</table> |
Then paste that code directly above. . .
| Code: |
<table width="95%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<th colspan="2" class="thCornerL" height="25" nowrap="nowrap"> {L_FORUM} </th>
<th width="50" class="thTop" nowrap="nowrap"> {L_TOPICS} </th>
<th width="50" class="thTop" nowrap="nowrap"> {L_POSTS} </th>
<th class="thCornerR" nowrap="nowrap"> {L_LASTPOST} </th> |
which lies near the top of the file. _________________ [ The Infinity Program Forum ]
“Tomorrow, every Fault is to be amended; but that Tomorrow never comes.”
— Benjamin Franklin, Poor Richard's Almanack |
|
| Back to top |
|
 |
~HG~
Joined: 25 Sep 2005
Posts: 423
Location: Australia
|
|
| Back to top |
|
 |
|