http://dmtesting.vforums.co.uk/
Code:
- <table align="center" cellpadding="4" cellspacing="1" class="border" width=100% id="info_center">
- <tr>
- <td align="center" class="title1" colspan="3">
- <font size="2">
- Advanced Info Center
- </font>
- </td>
- </tr>
- <tr>
- <td align="center" class="window1">
- <font size="2">
- <SCRIPT Language="JavaScript">
- <!-- http://icodes.vforums.co.uk
- var curDateTime = new Date()
- document.write(curDateTime.toLocaleString())
- //-->
- </SCRIPT>
- </font>
- </td>
- <td align="center" class="window1">
- <font size="2">
- Member of the Month: <i>None</i>
- </font>
- </td>
- </tr>
- <tr>
- <td align="center" class="title1" colspan="3">
- <!--Leave Blank-->
- </td>
- </tr>
- <tr>
- <td align="center" class="title1">
- <font size="2">
- Members Legend
- </font>
- </td>
- <td align="center" class="title1">
- <font size="2">
- Board Stats
- </font>
- </td>
- <td align="center" class="title1">
- <font size="2">
- Your Info
- </font>
- </td>
- </tr>
- <tr>
- <td align="Left" class="window1">
- <font size="2">
- Staff: {staff_on}<br />
- Members: {member_on}<br />
- Guests: {guest_on}
- </font>
- </td>
- <td align="Left" class="window1">
- <font size="2">
- Members: {total_members} <br />
- Posts: {total_posts}<br />
- Topics: {total_topics}<br />
- Boards: {total_boards}<br />
- Categories: {total_categories}<br /><br />
- <a href="action/members/view/top_posters">Top Posters</a>
- </font>
- </td>
- <td align="Left" class="window1" width=25%>
- <font size="2">
- Welcome Back <br />
- You have: {new_pms} New Messages<br />
- You have: {total_pms} Old Messages <br /><br />
- <a href="/action/view_profile">Your Profile</a>
- </font>
- </td>
- </tr>
- <tr>
- <td align="center" class="title1" colspan="3">
- <!--Leave Blank-->
- </td>
- </tr>
- <tr>
- <td align="center" class="title1">
- <font size="2">
- Online Info
- </font>
- </td>
- <td align="center" class="title1">
- <font size="2">
- History Info
- </font>
- </td>
- </tr>
- <tr>
- <td align="left" class="window1">
- <font size="2">
- Members Online: {online_total}<br />
- Newest Member to Our Forum: {foreach:newest_members:1}{number}: {member} ({user_name})<br />{/foreach}<br />
- Members viewing Our Forum: {foreach:members_online_today}{user}{ifnot:foreach_last}, {/if}{/foreach}
- </font>
- </td>
- <td align="center" class="title1">
- <font size="2">
- View the <a href-"/action/recent/posts">Top most recent posts</a> of our forum.<br />
- The Most Members Online was: {today_total}<br />
- The Last Post was: {last_post}, by: {last_post_user}, at {last_post_date}
- </font>
- </td>
- </tr>
- <tr>
- <td align="center" class="title1" colspan="3">
- <!--Leave Blank-->
- </td>
- </tr>
- <tr>
- <td align="center" class="title1">
- <font size="2">
- Events This Month:
- </font>
- </td>
- <td align="center" width=50% class="title1">
- <font size="2">
- Happy Birthday:
- </font>
- </td>
- <tr>
- <td align="center" class="window1">
- <font size="2">
- {foreach:events}{event} ({day}/{month}){ifnot:foreach_last}, {/if}{/foreach}
- </font>
- </td>
- <td align="center" class="window1">
- <font size="2">
- {foreach:birthdays}{member}{if:hidden} (Hidden){/if}{ifnot:foreach_last}, {/if}{/foreach}
- </font>
- </td>
- </tr>
- <tr>
- <td align="center" class="title1" colspan="3">
- <!--Leave Blank-->
- </td>
- </tr>
- <tr>
- <td align="center" class="title1" colspan="3">
- Active members in the last 24 hours:
- <td>
- </tr>
- <tr>
- <td align="center" class="window1">
- {foreach:staff_online_today}{user}{ifnot:foreach_last}, {/if}{/foreach}, {foreach:members_online_today}{user}{ifnot:foreach_last}, {/if}{/foreach}
- <td>
- </tr>
- </table>
if you can see what I did wrong, do fix it for me please. You can see the preview in the link above. Also I can't get the date/time code to work...![]()
Thanks.
Darkmage can I recommend using {if:member} ? So guests won't see PM links?
You can also use the ifs to show entire new sections, or hide them for events/birthdays, etc.
Yeah I know, I'm confused by the new system just a bit, been awhile since I've actually coded. and I do not want to hide those.
There is this whole section of black on the right hand side of the screen. and it's not showing anything I want. It's supposed to be divided in 3 sections each.
Half of the problem is a missing closing tag (it needs the red)
</tr>
<tr>
<td align="center" class="title1" colspan="3">
Active members in the last 24 hours:
</td>
</tr>
The rest of the issue comes from there only being two cells in the History and Birthday rows. You should either add an extra cell to each or use colspans to spread one cell over multiple columns.
Yeah I know it was supposed to be 3 cells, which it did at one point. o_O but I don't know how that happened. I don't even remember what was supposed to be in the 3rd columns.
I was copying a PB forums' info center because it looked cool.