Moving stuff around..

This is an archive of the phpBB 2.0.x support forum. Support for phpBB2 has now ended.
Forum rules
Following phpBB2's EoL, this forum is now archived for reference purposes only.
Please see the following announcement for more information: viewtopic.php?f=14&t=1385785
Locked
Twister263
Registered User
Posts: 13
Joined: Fri May 04, 2007 1:08 am

Moving stuff around..

Post by Twister263 »

As of right now I have forum stats in the Header and PM stuff on the bottom...if I wanted to swtich the two around how would I go about doing that?

Thanks.
User avatar
Noxwizard
Support Team Leader
Support Team Leader
Posts: 10552
Joined: Mon Jun 27, 2005 8:41 pm
Location: Texas, USA
Name: Patrick Webster
Contact:

Re: Moving stuff around..

Post by Noxwizard »

You will need to edit:
templates/{your_template}/overall_header.tpl
templates/{your_template}/overall_footer.tpl
[Support Template] - [Read Before Posting] - [phpBB Knowledge Base]
Do not contact me for private support, please share the question in our forums.
Twister263
Registered User
Posts: 13
Joined: Fri May 04, 2007 1:08 am

Re: Moving stuff around..

Post by Twister263 »

What would I need to edit in those files?
User avatar
Noxwizard
Support Team Leader
Support Team Leader
Posts: 10552
Joined: Mon Jun 27, 2005 8:41 pm
Location: Texas, USA
Name: Patrick Webster
Contact:

Re: Moving stuff around..

Post by Noxwizard »

You'll need to find the part with the statistics and the part with the PMs and swap them.
[Support Template] - [Read Before Posting] - [phpBB Knowledge Base]
Do not contact me for private support, please share the question in our forums.
Twister263
Registered User
Posts: 13
Joined: Fri May 04, 2007 1:08 am

Re: Moving stuff around..

Post by Twister263 »

Its not in there..
User avatar
dellsystem
Former Team Member
Posts: 3879
Joined: Sat Apr 09, 2005 8:54 pm
Location: Montreal
Name: Wendy
Contact:

Re: Moving stuff around..

Post by dellsystem »

link to your website?
Former moderator and website team member | My MODs, and more (GitHub)
Twister263
Registered User
Posts: 13
Joined: Fri May 04, 2007 1:08 am

Re: Moving stuff around..

Post by Twister263 »

User avatar
Noxwizard
Support Team Leader
Support Team Leader
Posts: 10552
Joined: Mon Jun 27, 2005 8:41 pm
Location: Texas, USA
Name: Patrick Webster
Contact:

Re: Moving stuff around..

Post by Noxwizard »

To move the statistics to the bottom:
Open: templates/fusion/index_body.tpl
Find and Cut:

Code: Select all

     <!-- top table setup -->
<table border="0" cellpadding="0" cellspacing="0"  width="100%" align="center" background="templates/fusion/images/cat_back.gif">
  <tr>
    <td width="150" height="27" align="left" valign="bottom">
    <img border="0" src="templates/fusion/images/cat_top_ls.gif" width="150" height="27"></td>
    <td width="100%" align="center">
<span class="cattitle">- |Forum Stats| -</span></td>
     <td width="150" height="27" align="right" valign="top">
    <img border="0" src="templates/fusion/images/cat_top_rs.gif" width="150" height="27"></td>
  </tr>
</table>
        <!-- End top table setup -->

<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
  <tr> 

	<td bgcolor="#36383F" align="left" valign="bottom"><span class="gensmall">
	{TOTAL_USERS}, {TOTAL_POSTS}, {L_AVERAGE_USER_POSTS} <b>{AVERAGE_USER_POSTS}</b> <br />
	{NEWEST_USER}
	</span></td>
	<td bgcolor="#36383F" align="right" valign="bottom"><span class="gensmall">
	<a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br />
	{CURRENT_TIME}<br />
	<!-- BEGIN switch_user_logged_in -->
	{LAST_VISIT_DATE}<br />
	<!-- END switch_user_logged_in -->

</span></td>

</tr><tr> 
	<td class="row1" align="center" valign="middle" rowspan="3"><img src="templates/fusion/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
</tr><tr>
	<td style="border-top: 1px solid #181B16" colspan="2" bgcolor="#36383F" align="left"><span class="gensmall"><b>{TOTAL_USERS_ONLINE} &nbsp; {RECORD_USERS}</b></span></td>
  <tr> 
	<td class="row1" align="left"><span class="gensmall"><b>{UOT_COUNT}</b> {UOT_TITLE}:&nbsp;{UOT_LIST}&nbsp;</span></td>
  </tr>
</tr><tr>
	<td colspan="2" bgcolor="#36383F" align="left"><span class="gensmall">{LOGGED_IN_USER_LIST}</span></td>
  </tr>
</table>

  <!-- bottom table setup -->
    <table height="14" width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="60" height="14" align="left" valign="top">
        <img src="templates/fusion/images/ls_main_table_bottom.gif" width="60" height="14"></td>
        <td height="14" width="100%" background="templates/fusion/images/extended_main_table_bottom.gif"><img src="templates/fusion/images/clear.gif" width="100%" height="14"></td>
        <td width="60" height="14" align="right" valign="top">
            <img border="0" src="templates/fusion/images/rs_main_table_bottom.gif" width="60" height="14"></td>
      </tr>
    </table>
  <!-- End bottom table setup -->

<br />
Find:

Code: Select all

<br clear="all" />
Paste the code from earlier after that line.

To move the PM info to the top:
Find and Cut (still in index_body):

Code: Select all

<!-- BEGIN switch_user_logged_in -->
     <!-- top table setup -->
<table border="0" cellpadding="0" cellspacing="0"  width="100%" align="center" background="templates/fusion/images/cat_back.gif">
  <tr>
    <td width="150" height="27" align="left" valign="bottom">
    <img border="0" src="templates/fusion/images/cat_top_ls.gif" width="150" height="27"></td>
    <td width="100%" align="center">
<span class="cattitle"><a href="privmsg.php?folder=inbox" class="cattitle">Private Messages</a></span></td>
     <td width="150" height="27" align="right" valign="top">
    <img border="0" src="templates/fusion/images/cat_top_rs.gif" width="150" height="27"></td>
  </tr>
</table>
        <!-- End top table setup -->

<table width="100%" cellpadding="4" cellspacing="1" border="0" bgcolor="#000000">
  <tr> 
	<td class="row1" width="22" align="center" valign="middle">&nbsp;</td>
	<td class="row2" align="left"><span class="gensmall">{PRIVATE_MESSAGE_INFO} - <a href="privmsg.php?folder=inbox">Inbox</a> | <a href="privmsg.php?folder=sentbox">Sentbox</a> | <a href="privmsg.php?folder=outbox">Outbox</a> | <a href="privmsg.php?folder=savebox">Savebox</a></span></td>
  </tr>
</table>

  <!-- bottom table setup -->
    <table height="14" width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="60" height="14" align="left" valign="top">
        <img src="templates/fusion/images/ls_main_table_bottom.gif" width="60" height="14"></td>
        <td height="14" width="100%" background="templates/fusion/images/extended_main_table_bottom.gif"><img src="templates/fusion/images/clear.gif" width="100%" height="14"></td>
        <td width="60" height="14" align="right" valign="top">
            <img border="0" src="templates/fusion/images/rs_main_table_bottom.gif" width="60" height="14"></td>
      </tr>
    </table>
  <!-- End bottom table setup -->
<!-- END switch_user_logged_in -->
Find:

Code: Select all

  <!-- BEGIN catrow -->
Paste the code from the last cut above this line.
[Support Template] - [Read Before Posting] - [phpBB Knowledge Base]
Do not contact me for private support, please share the question in our forums.
Twister263
Registered User
Posts: 13
Joined: Fri May 04, 2007 1:08 am

Re: Moving stuff around..

Post by Twister263 »

Doesn't move everything...heres the indexbody:

Code: Select all

     <!-- top table setup -->
<table border="0" cellpadding="0" cellspacing="0"  width="100%" align="center" background="templates/fusion/images/cat_back.gif">
  <tr>
    <td width="150" height="27" align="left" valign="bottom">
    <img border="0" src="templates/fusion/images/cat_top_ls.gif" width="150" height="27"></td>
    <td width="100%" align="center">
<span class="cattitle">- |Forum Stats| -</span></td>
     <td width="150" height="27" align="right" valign="top">
    <img border="0" src="templates/fusion/images/cat_top_rs.gif" width="150" height="27"></td>
  </tr>
</table>
        <!-- End top table setup -->

<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
  <tr> 

	<td bgcolor="#36383F" align="left" valign="bottom"><span class="gensmall">
	{TOTAL_USERS}, {TOTAL_POSTS}, {L_AVERAGE_USER_POSTS} <b>{AVERAGE_USER_POSTS}</b> <br />
	{NEWEST_USER}
	</span></td>
	<td bgcolor="#36383F" align="right" valign="bottom"><span class="gensmall">
	<a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br />
	{CURRENT_TIME}<br />
	<!-- BEGIN switch_user_logged_in -->
	{LAST_VISIT_DATE}<br />
	<!-- END switch_user_logged_in -->

</span></td>

</tr><tr> 
	<td class="row1" align="center" valign="middle" rowspan="3"><img src="templates/fusion/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
</tr><tr>
	<td style="border-top: 1px solid #181B16" colspan="2" bgcolor="#36383F" align="left"><span class="gensmall"><b>{TOTAL_USERS_ONLINE} &nbsp; {RECORD_USERS}</b></span></td>
  <tr> 
	<td class="row1" align="left"><span class="gensmall"><b>{UOT_COUNT}</b> {UOT_TITLE}:&nbsp;{UOT_LIST}&nbsp;</span></td>
  </tr>
</tr><tr>
	<td colspan="2" bgcolor="#36383F" align="left"><span class="gensmall">{LOGGED_IN_USER_LIST}</span></td>
  </tr>
</table>

  <!-- bottom table setup -->
    <table height="14" width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="60" height="14" align="left" valign="top">
        <img src="templates/fusion/images/ls_main_table_bottom.gif" width="60" height="14"></td>
        <td height="14" width="100%" background="templates/fusion/images/extended_main_table_bottom.gif"><img src="templates/fusion/images/clear.gif" width="100%" height="14"></td>
        <td width="60" height="14" align="right" valign="top">
            <img border="0" src="templates/fusion/images/rs_main_table_bottom.gif" width="60" height="14"></td>
      </tr>
    </table>
  <!-- End bottom table setup -->

<br />

  <!-- BEGIN catrow -->
     <!-- top table setup -->
<table border="0" cellpadding="0" cellspacing="0"  width="100%" align="center" background="templates/fusion/images/cat_back.gif">
  <tr>
    <td width="150" height="27" align="left" valign="bottom">
    <img border="0" src="templates/fusion/images/cat_top_ls.gif" width="150" height="27"></td>
    <td width="100%" align="center">
<span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
     <td width="150" height="27" align="right" valign="top">
    <img border="0" src="templates/fusion/images/cat_top_rs.gif" width="150" height="27"></td>
  </tr>
</table>
        <!-- End top table setup -->

<table width="100%" cellpadding="4" cellspacing="1" border="0" bgcolor="#000000">
  <tr> 
	<th class="thCornerL" height="10" nowrap="nowrap">&nbsp;</th>
	<th class="thCornerL" height="10" nowrap="nowrap" align="left">&nbsp;{L_FORUM}&nbsp;</th>
	<th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_TOPICS}&nbsp;</th>
	<th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_POSTS}&nbsp;</th>
	<th class="thCornerR" nowrap="nowrap">&nbsp;{L_LASTPOST}&nbsp;</th>
  </tr>
  <!-- BEGIN forumrow -->
<!-- IF ! forumrow.PARENT -->
  <tr> 
	<td class="row1" align="center" valign="middle"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="22" height="26" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
	<td class="row2" width="100%"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
	  </span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
	  </span><!-- IF catrow.forumrow.MODERATORS --><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}<br /></span><!-- ENDIF -->
	  <!-- BEGIN sub --><!-- DEFINE $HAS_SUB = 1 --><!-- IF catrow.forumrow.sub.NUM > 0 -->, <!-- ELSE --><span class="genmed">{L_SUBFORUMS}: <!-- ENDIF -->{catrow.forumrow.sub.LAST_POST_SUB} <a href="{catrow.forumrow.sub.U_VIEWFORUM}" <!-- IF catrow.forumrow.sub.UNREAD -->class="topic-new"<!-- ENDIF --> title="{catrow.forumrow.sub.FORUM_DESC_HTML}">{catrow.forumrow.sub.FORUM_NAME}</a><!-- END sub -->
	  <!-- IF $HAS_SUB --></span><!-- UNDEFINE $HAS_SUB --><!-- ENDIF -->
	</td>
	<td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.TOTAL_TOPICS}</span></td>
	<td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.TOTAL_POSTS}</span></td>
	<td class="row1" align="center" valign="middle" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
 </tr>
<!-- ENDIF -->
   <!-- END forumrow -->
</table>

  <!-- bottom table setup -->
    <table height="14" width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="60" height="14" align="left" valign="top">
        <img src="templates/fusion/images/ls_main_table_bottom.gif" width="60" height="14"></td>
        <td height="14" width="100%" background="templates/fusion/images/extended_main_table_bottom.gif"><img src="templates/fusion/images/clear.gif" width="100%" height="14"></td>
        <td width="60" height="14" align="right" valign="top">
            <img border="0" src="templates/fusion/images/rs_main_table_bottom.gif" width="60" height="14"></td>
      </tr>
    </table>
  <!-- End bottom table setup -->
<Br>
  <!-- END catrow -->

<!-- BEGIN switch_user_logged_in -->
     <!-- top table setup -->
<table border="0" cellpadding="0" cellspacing="0"  width="100%" align="center" background="templates/fusion/images/cat_back.gif">
  <tr>
    <td width="150" height="27" align="left" valign="bottom">
    <img border="0" src="templates/fusion/images/cat_top_ls.gif" width="150" height="27"></td>
    <td width="100%" align="center">
<span class="cattitle"><a href="privmsg.php?folder=inbox" class="cattitle">Private Messages</a></span></td>
     <td width="150" height="27" align="right" valign="top">
    <img border="0" src="templates/fusion/images/cat_top_rs.gif" width="150" height="27"></td>
  </tr>
</table>
        <!-- End top table setup -->

<table width="100%" cellpadding="4" cellspacing="1" border="0" bgcolor="#000000">
  <tr> 
	<td class="row1" width="22" align="center" valign="middle">&nbsp;</td>
	<td class="row2" align="left"><span class="gensmall">{PRIVATE_MESSAGE_INFO} - <a href="privmsg.php?folder=inbox">Inbox</a> | <a href="privmsg.php?folder=sentbox">Sentbox</a> | <a href="privmsg.php?folder=outbox">Outbox</a> | <a href="privmsg.php?folder=savebox">Savebox</a></span></td>
  </tr>
</table>

  <!-- bottom table setup -->
    <table height="14" width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="60" height="14" align="left" valign="top">
        <img src="templates/fusion/images/ls_main_table_bottom.gif" width="60" height="14"></td>
        <td height="14" width="100%" background="templates/fusion/images/extended_main_table_bottom.gif"><img src="templates/fusion/images/clear.gif" width="100%" height="14"></td>
        <td width="60" height="14" align="right" valign="top">
            <img border="0" src="templates/fusion/images/rs_main_table_bottom.gif" width="60" height="14"></td>
      </tr>
    </table>
  <!-- End bottom table setup -->
<!-- END switch_user_logged_in -->

<table width="100%" cellspacing="0" border="0" align="center" cellpadding="2">
  <tr> 
	<td align="left" valign="top"><span class="gensmall">{S_TIMEZONE}</span></td>
	<td valign="top" align="right"><span class="gensmall">
<!-- BEGIN switch_user_logged_in -->
<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a> | 
<!-- END switch_user_logged_in -->
<a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a></span><br><br></td>
  </tr>

<!-- BEGIN switch_user_logged_out -->
<form method="post" action="{S_LOGIN_ACTION}">
	<tr> 
	  <td colspan="2" align="right" valign="middle" height="28"><span class="gensmall">
		<input class="post" type="text" name="username" size="10" />
		<input class="post" type="password" name="password" size="10" maxlength="32" />
		<input type="submit" class="mainoption" name="login" value="{L_LOGIN}" /><br />
		<input class="text" type="checkbox" name="autologin" />&nbsp;{L_AUTO_LOGIN} 
		</span> </td>
	</tr>
  </table>
</form>
<!-- END switch_user_logged_out -->

<br clear="all" />

<table cellspacing="0" border="0" align="center" cellpadding="5" class="forumline2">
  <tr> 
	<td width="22" align="center"><img src="templates/fusion/images/on.gif" alt="{L_NEW_POSTS}"/></td>
	<td><span class="gensmall">{L_NEW_POSTS}</span></td>
	<td>&nbsp;&nbsp;</td>
	<td width="22" align="center"><img src="templates/fusion/images/off.gif" alt="{L_NO_NEW_POSTS}" /></td>
	<td><span class="gensmall">{L_NO_NEW_POSTS}</span></td>
	<td>&nbsp;&nbsp;</td>
	<td width="22" align="center"><img src="templates/fusion/images/lock.gif" alt="{L_FORUM_LOCKED}" /></td>
	<td><span class="gensmall">{L_FORUM_LOCKED}</span></td>
  </tr>
</table>
See if you can fix it..I tried and it looks weird...
User avatar
Noxwizard
Support Team Leader
Support Team Leader
Posts: 10552
Joined: Mon Jun 27, 2005 8:41 pm
Location: Texas, USA
Name: Patrick Webster
Contact:

Re: Moving stuff around..

Post by Noxwizard »

Here:

Code: Select all

<!-- BEGIN switch_user_logged_in -->
     <!-- top table setup -->
<table border="0" cellpadding="0" cellspacing="0"  width="100%" align="center" background="templates/fusion/images/cat_back.gif">
  <tr>
    <td width="150" height="27" align="left" valign="bottom">
    <img border="0" src="templates/fusion/images/cat_top_ls.gif" width="150" height="27"></td>
    <td width="100%" align="center">
<span class="cattitle"><a href="privmsg.php?folder=inbox" class="cattitle">Private Messages</a></span></td>
     <td width="150" height="27" align="right" valign="top">
    <img border="0" src="templates/fusion/images/cat_top_rs.gif" width="150" height="27"></td>
  </tr>
</table>
        <!-- End top table setup -->

<table width="100%" cellpadding="4" cellspacing="1" border="0" bgcolor="#000000">
  <tr> 
   <td class="row1" width="22" align="center" valign="middle">&nbsp;</td>
   <td class="row2" align="left"><span class="gensmall">{PRIVATE_MESSAGE_INFO} - <a href="privmsg.php?folder=inbox">Inbox</a> | <a href="privmsg.php?folder=sentbox">Sentbox</a> | <a href="privmsg.php?folder=outbox">Outbox</a> | <a href="privmsg.php?folder=savebox">Savebox</a></span></td>
  </tr>
</table>

  <!-- bottom table setup -->
    <table height="14" width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="60" height="14" align="left" valign="top">
        <img src="templates/fusion/images/ls_main_table_bottom.gif" width="60" height="14"></td>
        <td height="14" width="100%" background="templates/fusion/images/extended_main_table_bottom.gif"><img src="templates/fusion/images/clear.gif" width="100%" height="14"></td>
        <td width="60" height="14" align="right" valign="top">
            <img border="0" src="templates/fusion/images/rs_main_table_bottom.gif" width="60" height="14"></td>
      </tr>
    </table>
  <!-- End bottom table setup -->
<!-- END switch_user_logged_in -->
<br />

  <!-- BEGIN catrow -->
     <!-- top table setup -->
<table border="0" cellpadding="0" cellspacing="0"  width="100%" align="center" background="templates/fusion/images/cat_back.gif">
  <tr>
    <td width="150" height="27" align="left" valign="bottom">
    <img border="0" src="templates/fusion/images/cat_top_ls.gif" width="150" height="27"></td>
    <td width="100%" align="center">
<span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
     <td width="150" height="27" align="right" valign="top">
    <img border="0" src="templates/fusion/images/cat_top_rs.gif" width="150" height="27"></td>
  </tr>
</table>
        <!-- End top table setup -->

<table width="100%" cellpadding="4" cellspacing="1" border="0" bgcolor="#000000">
  <tr> 
   <th class="thCornerL" height="10" nowrap="nowrap">&nbsp;</th>
   <th class="thCornerL" height="10" nowrap="nowrap" align="left">&nbsp;{L_FORUM}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_TOPICS}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_POSTS}&nbsp;</th>
   <th class="thCornerR" nowrap="nowrap">&nbsp;{L_LASTPOST}&nbsp;</th>
  </tr>
  <!-- BEGIN forumrow -->
<!-- IF ! forumrow.PARENT -->
  <tr> 
   <td class="row1" align="center" valign="middle"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="22" height="26" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
   <td class="row2" width="100%"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
     </span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
     </span><!-- IF catrow.forumrow.MODERATORS --><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}<br /></span><!-- ENDIF -->
     <!-- BEGIN sub --><!-- DEFINE $HAS_SUB = 1 --><!-- IF catrow.forumrow.sub.NUM > 0 -->, <!-- ELSE --><span class="genmed">{L_SUBFORUMS}: <!-- ENDIF -->{catrow.forumrow.sub.LAST_POST_SUB} <a href="{catrow.forumrow.sub.U_VIEWFORUM}" <!-- IF catrow.forumrow.sub.UNREAD -->class="topic-new"<!-- ENDIF --> title="{catrow.forumrow.sub.FORUM_DESC_HTML}">{catrow.forumrow.sub.FORUM_NAME}</a><!-- END sub -->
     <!-- IF $HAS_SUB --></span><!-- UNDEFINE $HAS_SUB --><!-- ENDIF -->
   </td>
   <td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.TOTAL_TOPICS}</span></td>
   <td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.TOTAL_POSTS}</span></td>
   <td class="row1" align="center" valign="middle" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
</tr>
<!-- ENDIF -->
   <!-- END forumrow -->
</table>

  <!-- bottom table setup -->
    <table height="14" width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="60" height="14" align="left" valign="top">
        <img src="templates/fusion/images/ls_main_table_bottom.gif" width="60" height="14"></td>
        <td height="14" width="100%" background="templates/fusion/images/extended_main_table_bottom.gif"><img src="templates/fusion/images/clear.gif" width="100%" height="14"></td>
        <td width="60" height="14" align="right" valign="top">
            <img border="0" src="templates/fusion/images/rs_main_table_bottom.gif" width="60" height="14"></td>
      </tr>
    </table>
  <!-- End bottom table setup -->
<Br>
  <!-- END catrow -->

<table width="100%" cellspacing="0" border="0" align="center" cellpadding="2">
  <tr> 
   <td align="left" valign="top"><span class="gensmall">{S_TIMEZONE}</span></td>
   <td valign="top" align="right"><span class="gensmall">
<!-- BEGIN switch_user_logged_in -->
<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a> | 
<!-- END switch_user_logged_in -->
<a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a></span><br><br></td>
  </tr>

<!-- BEGIN switch_user_logged_out -->
<form method="post" action="{S_LOGIN_ACTION}">
   <tr> 
     <td colspan="2" align="right" valign="middle" height="28"><span class="gensmall">
      <input class="post" type="text" name="username" size="10" />
      <input class="post" type="password" name="password" size="10" maxlength="32" />
      <input type="submit" class="mainoption" name="login" value="{L_LOGIN}" /><br />
      <input class="text" type="checkbox" name="autologin" />&nbsp;{L_AUTO_LOGIN} 
      </span> </td>
   </tr>
  </table>
</form>
<!-- END switch_user_logged_out -->

<br clear="all" />

     <!-- top table setup -->
<table border="0" cellpadding="0" cellspacing="0"  width="100%" align="center" background="templates/fusion/images/cat_back.gif">
  <tr>
    <td width="150" height="27" align="left" valign="bottom">
    <img border="0" src="templates/fusion/images/cat_top_ls.gif" width="150" height="27"></td>
    <td width="100%" align="center">
<span class="cattitle">- |Forum Stats| -</span></td>
     <td width="150" height="27" align="right" valign="top">
    <img border="0" src="templates/fusion/images/cat_top_rs.gif" width="150" height="27"></td>
  </tr>
</table>
        <!-- End top table setup -->

<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
  <tr> 

   <td bgcolor="#36383F" align="left" valign="bottom"><span class="gensmall">
   {TOTAL_USERS}, {TOTAL_POSTS}, {L_AVERAGE_USER_POSTS} <b>{AVERAGE_USER_POSTS}</b> <br />
   {NEWEST_USER}
   </span></td>
   <td bgcolor="#36383F" align="right" valign="bottom"><span class="gensmall">
   <a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br />
   {CURRENT_TIME}<br />
   <!-- BEGIN switch_user_logged_in -->
   {LAST_VISIT_DATE}<br />
   <!-- END switch_user_logged_in -->

</span></td>

</tr><tr> 
   <td class="row1" align="center" valign="middle" rowspan="3"><img src="templates/fusion/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
</tr><tr>
   <td style="border-top: 1px solid #181B16" colspan="2" bgcolor="#36383F" align="left"><span class="gensmall"><b>{TOTAL_USERS_ONLINE} &nbsp; {RECORD_USERS}</b></span></td>
  <tr> 
   <td class="row1" align="left"><span class="gensmall"><b>{UOT_COUNT}</b> {UOT_TITLE}:&nbsp;{UOT_LIST}&nbsp;</span></td>
  </tr>
</tr><tr>
   <td colspan="2" bgcolor="#36383F" align="left"><span class="gensmall">{LOGGED_IN_USER_LIST}</span></td>
  </tr>
</table>

  <!-- bottom table setup -->
    <table height="14" width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="60" height="14" align="left" valign="top">
        <img src="templates/fusion/images/ls_main_table_bottom.gif" width="60" height="14"></td>
        <td height="14" width="100%" background="templates/fusion/images/extended_main_table_bottom.gif"><img src="templates/fusion/images/clear.gif" width="100%" height="14"></td>
        <td width="60" height="14" align="right" valign="top">
            <img border="0" src="templates/fusion/images/rs_main_table_bottom.gif" width="60" height="14"></td>
      </tr>
    </table>
  <!-- End bottom table setup -->

<br />

<table cellspacing="0" border="0" align="center" cellpadding="5" class="forumline2">
  <tr> 
   <td width="22" align="center"><img src="templates/fusion/images/on.gif" alt="{L_NEW_POSTS}"/></td>
   <td><span class="gensmall">{L_NEW_POSTS}</span></td>
   <td>&nbsp;&nbsp;</td>
   <td width="22" align="center"><img src="templates/fusion/images/off.gif" alt="{L_NO_NEW_POSTS}" /></td>
   <td><span class="gensmall">{L_NO_NEW_POSTS}</span></td>
   <td>&nbsp;&nbsp;</td>
   <td width="22" align="center"><img src="templates/fusion/images/lock.gif" alt="{L_FORUM_LOCKED}" /></td>
   <td><span class="gensmall">{L_FORUM_LOCKED}</span></td>
  </tr>
</table>
[Support Template] - [Read Before Posting] - [phpBB Knowledge Base]
Do not contact me for private support, please share the question in our forums.
Twister263
Registered User
Posts: 13
Joined: Fri May 04, 2007 1:08 am

Re: Moving stuff around..

Post by Twister263 »

How would I get the "(0 new messages)" to show up?...
User avatar
Noxwizard
Support Team Leader
Support Team Leader
Posts: 10552
Joined: Mon Jun 27, 2005 8:41 pm
Location: Texas, USA
Name: Patrick Webster
Contact:

Re: Moving stuff around..

Post by Noxwizard »

{PRIVATE_MESSAGE_INFO} will print out the "# new messages".
[Support Template] - [Read Before Posting] - [phpBB Knowledge Base]
Do not contact me for private support, please share the question in our forums.
Locked

Return to “2.0.x Support Forum”