Archive for portalogy.myfastforum.org For all your portal needs
 



       portalogy.myfastforum.org Forum Index -> General Support
Danaldinho

Would this be possible

Nick would this be possible to do this like at the bottom of a forum:



Or wouldnt it be possible

Thanks
admin(Nick_NR)

post your code for top posters and newest members and I'll knock something up.
Danaldinho

Nick Your Great, You Do Know That Dont You Razz Cool Laughing Smile Very Happy Wink

Top Posters Code:

Spoiler:

Code:
<table width="100%" cellpadding="4" cellspacing="0" border="0" class="forumline" align="center">
<!--BEGIN switch_topposters_title -->     
   <tr>
    <th class="tableleft" align="left"><div class="left-image"></div></td>
    <th class="tablemiddle" align="center"><font color="FFFFFF">Top Posters</font></td>
    <th class="tableright" align="right"><div class="right-image"></div></td>
     </tr>
<!--END switch_topposters_title -->          
</table>

<table width="100%" cellpadding="4" cellspacing="0" border="0" align="center"  class="tablebottom">
  <!-- BEGIN topposters -->
  <tr>
   <td class="row2"><span class="topictitle"><a href="{topposters.U_PROFILE}" class="topictitle">{topposters.NAME}</a></span></td>
   <td class="row2"><span class="topictitle">{topposters.POSTS}</a></span></td>
  </tr>
  <!-- END topposters -->
</table>



Newest Members Code:

Spoiler:

Code:
<form method="post" action="{S_LATESTMEMBERLIST_MODE_ACTION}">
  <table width="160%" cellpadding="3" cellspacing="1" border="0" class="forumline" align="center">
   <tr>
     <th class="thTop" nowrap="nowrap">Username</th>
   
   <th class="thTop" nowrap="nowrap">Posts</th>
   </tr>
   <!-- BEGIN latestmemberlist -->
   <tr>
     <td class="{latestmemberlist.ROW_CLASS}" align="center"><span class="gen"><a href="{latestmemberlist.U_VIEWPROFILE}" class="gen">{latestmemberlist.USERNAME}</a></span></td>
     <td class="{latestmemberlist.ROW_CLASS}" align="center" valign="middle"><span class="gen">{latestmemberlist.POSTS}</span></td>
   </tr>
   <!-- END latestmemberlist -->
  </table>
</form>



Also In That Other Box, I Was Going To Add Something Like This Into It:

Spoiler:

Our users have posted a total of 23364 articles
Our users have posted a total of 2186 threads
Most users ever online was 93 on 11 Aug 2007 09:07 am
We have 487 registered users
The newest registered user is Lyssandra

editor

Give this a try:

Code:
<table width="100%" border="0" cellpadding="3">
  <tr>
    <td colspan="3"><span class="cattitle">Forum Statistics</span></td>
  </tr>
  <tr>
    <td><font color="FFFFFF">Top Posters</font></td>
    <td><font color="FFFFFF">Newest Members</font></td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>
   
   <table width="100%" cellpadding="4" cellspacing="0" border="0" align="center">
  <!-- BEGIN topposters -->
  <tr>
   <td class="row2"><span class="topictitle"><a href="{topposters.U_PROFILE}" class="topictitle">{topposters.NAME}</a></span></td>
   <td class="row2"><span class="topictitle">{topposters.POSTS}</a></span></td>
  </tr>
  <!-- END topposters -->
</table>

</td>
    <td>
   
<form method="post" action="{S_LATESTMEMBERLIST_MODE_ACTION}">
  <table width="160%" cellpadding="3" cellspacing="1" border="0" class="forumline" align="center">
   <tr>
     <th class="thTop" nowrap="nowrap">Username</th>
   
   <th class="thTop" nowrap="nowrap">Posts</th>
   </tr>
   <!-- BEGIN latestmemberlist -->
   <tr>
     <td class="{latestmemberlist.ROW_CLASS}" align="center"><span class="gen"><a href="{latestmemberlist.U_VIEWPROFILE}" class="gen">{latestmemberlist.USERNAME}</a></span></td>
     <td class="{latestmemberlist.ROW_CLASS}" align="center" valign="middle"><span class="gen">{latestmemberlist.POSTS}</span></td>
   </tr>
   <!-- END latestmemberlist -->
  </table>
</form>

</td>
    <td>
   
   <span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_TOPICS}<br />{TOTAL_USERS_ONLINE}<br />{TOTAL_USERS}<br />{NEWEST_USER}</span>
   
   </td>
  </tr>
</table>


If it isn't right leave it up and let me know what isn't working right and I'll have a fiddle
Danaldinho

Nick i put that code on my forum and its at the bottom on www.manuforum.co.uk

But i would like it to be like on that screenshot, so its a main header saying for statistics and it looks a bit uneven too with the tables

Thanks
editor

You'll have to tweak the topposters to show a similar th part like the new members, leave the forumline class's on each component so you only have to place a tiny bit of new styling into your css.

Css style:
Code:
.statsextra {border-right: 1px solid #990000; border-left: 1px solid #990000; border-top: 1px solid #990000; border-bottom: 0px solid #990000;}


Code:
<table width="100%" border="0" cellpadding="3" align="center" cellspacing="0">
  <tr>
    <td colspan="3" class="statsextra"><span class="cattitle">Forum Statistics</span></td>
  </tr>
  <tr>
    <td><span class="cattitle"><font color="FFFFFF">Top Posters</font></span></td>
    <td><span class="cattitle"><font color="FFFFFF">Newest Members</font></span></td>
    <td><span class="cattitle"><font color="FFFFFF">Forum Stats</font></span></td>
  </tr>
  <tr>
    <td width="25%" valign="top">
   
{MYFF.TOPPOSTERS}

</td>
    <td width="25%" valign="top">
   
{MYFF.NEWESTMEMBER} (change title to the component, then remove this part in brackets)

</td>
    <td width="50%" valign="top">

<table width="100%" border="0" cellpadding="3" align="center" cellspacing="0" class="forumline">
  <tr>
    <th><span class="cattitle"><font color="FFFFFF">Forum Statistics</font></span></th>
</tr>
<tr>
<td><span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_TOPICS}<br />{TOTAL_USERS_ONLINE}<br />{TOTAL_USERS}<br />{NEWEST_USER}</span></td>
</tr>
</table>
 
   </td>
  </tr>
</table>
Danaldinho

Nick, alot better, this is what it looks like now:



But would it be possible for it to look more along the lines of:



If its not dont worry and sorry for this Embarassed

Thanks again Smile
Danaldinho

Is this possible to even do Nick Question
admin(Nick_NR)

yup, tis indeed, but may be better hanging on until I tidy up the tables side images for the headers.
Danaldinho

Ok thanks Nick, take your time Smile
Danaldinho

Any more news on this Nick Question
admin(Nick_NR)

tbh, it's something I'd have to do live on a forum, as newest members isn't something I'm using on here and tbh I have one or two things more than I should on here anyways, the last thing I want is another.
Danaldinho

So are you saying you want to be admin on my forum

Or your not going to bother with it

Or your going to make a test forum etc
Danaldinho

So are you saying you want to be admin on my forum

Or your not going to bother with it

Or your going to make a test forum etc
admin(Nick_NR)

It would have to be on yours, but will have to be at the weekend I'm affraid.
Danaldinho

Ok then Smile

       portalogy.myfastforum.org Forum Index -> General Support
Page 1 of 1
Create your own free forum | Buy a domain to use with your forum
If you feel that PORTALOGY has been helpful and would like to say thank you then please click the donation button below.