PDA

View Full Version : Making the Table Bar Show under each cat name...



ZiRu$
Sat 23rd Mar '02, 6:40pm
I want to make the Table Bar which shows

Forum, Posts, Threads, Last Post, Moderator

to show under each category name like this site http://forums.411hype.com/

I know i need to move this code in forumhome:



<tr align="center">
<td bgcolor="{tableheadbgcolor}"><smallfont>&nbsp;</smallfont></td>
<td bgcolor="{tableheadbgcolor}" width="80%" align="left"><smallfont color="{tableheadtextcolor}"><b>Forum</b></smallfont></td>
<td bgcolor="{tableheadbgcolor}"><smallfont color="{tableheadtextcolor}"><b>Posts</b></smallfont></td>
<td bgcolor="{tableheadbgcolor}"><smallfont color="{tableheadtextcolor}"><b>Threads</b></smallfont></td>
<td bgcolor="{tableheadbgcolor}" nowrap><smallfont color="{tableheadtextcolor}"><b>Last Post</b></smallfont></td>
<td bgcolor="{tableheadbgcolor}" width="20%"><smallfont color="{tableheadtextcolor}"><b>Moderator</b></smallfont></td>
</tr>


somewhere....

I think i could sove this myself if i new what template the $forumbits string goes to!

Please help me

ja5es
Sun 24th Mar '02, 6:48am
forumhome_forumbit_level1_nopost

Just smack that code right underneath what is already there.

ZiRu$
Sun 24th Mar '02, 2:26pm
ok that worked great!

1 more problem

how do i remove the top one in forumhome?


i got this between MAIN and /MAIN


<!-- main -->
<table cellpadding="{tableouterborderwidth}" cellspacing="0" border="0" bgcolor="{tablebordercolor}" {tableouterextra} width="{contenttablewidth}" align="center"><tr><td>
<table cellpadding="4" cellspacing="{tableinnerborderwidth}" border="0" {tableinnerextra} width="100%">
<tr align="center">
<td bgcolor="{tableheadbgcolor}"><smallfont>&nbsp;</smallfont></td>
<td bgcolor="{tableheadbgcolor}" width="80%" align="left"><smallfont color="{tableheadtextcolor}"><b>Forum</b></smallfont></td>
<td bgcolor="{tableheadbgcolor}"><smallfont color="{tableheadtextcolor}"><b>Posts</b></smallfont></td>
<td bgcolor="{tableheadbgcolor}"><smallfont color="{tableheadtextcolor}"><b>Threads</b></smallfont></td>
<td bgcolor="{tableheadbgcolor}" nowrap><smallfont color="{tableheadtextcolor}"><b>Last Post</b></smallfont></td>
<td bgcolor="{tableheadbgcolor}" width="20%"><smallfont color="{tableheadtextcolor}"><b>Moderators</b></smallfont></td>
</tr>
$forumbits
$loggedinusers
$todayloggedinusers
$birthdaybits

</table>
</td></tr></table>
<!-- /main -->


i tried making it


<!-- main -->
$forumbits
$loggedinusers
$todayloggedinusers
$birthdaybits

</table>
</td></tr></table>
<!-- /main -->


but it screwed up the look of the board....all tables had no borders the pm and welcome panel went really small on the left

ja5es
Sun 24th Mar '02, 5:53pm
make it look like this:
<!-- main -->
<table cellpadding="0" cellspacing="0" border="0" bgcolor="#555576" width="100%" align="center"><tr><td>
<table cellpadding="4" cellspacing="1" border="0" width="100%">
$forumbits
$loggedinusers
$todayloggedinusers
$birthdaybits

</table>
</td></tr></table>
<!-- /main -->



I just took away the

<tr align="center">
<td bgcolor="#8080A6"><smallfont>&nbsp;</smallfont></td>
<td bgcolor="#8080A6" width="80%" align="left"><smallfont color="#EEEEFF"><b>Forum</b></smallfont></td>
<td bgcolor="#8080A6"><smallfont color="#EEEEFF"><b>Posts</b></smallfont></td>
<td bgcolor="#8080A6"><smallfont color="#EEEEFF"><b>Threads</b></smallfont></td>
<td bgcolor="#8080A6" nowrap><smallfont color="#EEEEFF"><b>Last Post</b></smallfont></td>
<td bgcolor="#8080A6" width="20%"><smallfont color="#EEEEFF"><b>Moderators</b></smallfont></td>
</tr>

ZiRu$
Mon 25th Mar '02, 1:22am
thanks so much! worked perfect

Preasidium
Sat 11th May '02, 11:14pm
Ok. I installed this modification on my forum as well. But I have my tables in my forum dotted borders. So when I did that to my template it made a long dotted line where the top forum,post, etc.. was .. When i completely got rid of the table tages i messed my width to all my tables up. How would I get rid of this?