vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Aligning the tables on the main forum page (https://vborg.vbsupport.ru/showthread.php?t=85331)

pgowder 11-15-2002 01:52 PM

Aligning the tables on the main forum page
 
Take a look at my forum:

http://www.powwows.com/gathering

I want to align the columns on this page to make it look a little better.

What template is that?

I tried editing forumdisplay_forumbit_level2_post to:

<tr align="center">
<td bgcolor="#F9F9F9" valign="top" width="30"><img src="images/$forum[onoff].gif" border="0" alt=""></td>
<td bgcolor="#FFFFFF" align="left" width="200"><a href="forumdisplay.php?s=$session[sessionhash]&forumid=$forum[forumid]"><normalfont><b>$forum[title]</b></normalfont></a>
<br><smallfont>$forum[description]</smallfont></td>
<td bgcolor="#F9F9F9" width="25"><normalfont>$forum[replycount]</normalfont></td>
<td bgcolor="#FFFFFF" width="25"><normalfont>$forum[threadcount]</normalfont></td>
<td bgcolor="#F9F9F9" width="25"><smallfont>$forum[lastpostinfo]</smallfont></td>
<td bgcolor="#FFFFFF" width="25"><smallfont>$forum[moderators]</smallfont></td>
</tr>

But I don't see a difference??!!??

pgowder 11-20-2002 09:52 PM

Can someone help?

Tony G 11-21-2002 02:58 AM

Edit forumdisplay, you'll need to edit the <table> tags to change the alignment of a WHOLE table.

pgowder 11-22-2002 04:10 PM

Maybe I'm missing it, but below is my template, where???

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>$foruminfo[title] - $bbtitle</title>
$headinclude
</head>
<body>
$header

<table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td valign="top">$navbar
<smallfont>$moderatedby$onlineusers</smallfont></td>
<td valign="bottom" align="right"><smallfont>$newthreadlink&nbsp;</smallfont></td>
</tr>
</table>

<br>

$forumdisplay[forumslist]

$forumdisplay[threadslist]

<!-- forum jump and timezone -->
<table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
<tr valign="bottom">
<td>$forumjump</td>
<td align="right">
<table cellpadding="0" cellspacing="0" border="0"><tr>
<form action="search.php" method="post">
<td><smallfont><b>Search this Forum:</b>
<input type="hidden" name="s" value="$session[sessionhash]"><input type="hidden" name="searchdate" value="-1">
<input type="hidden" name="beforeafter" value="after"><input type="hidden" name="forumchoice" value="$forumid">
<input type="hidden" name="action" value="simplesearch"><br><input type="text" class="bginput" name="query">$gobutton
</smallfont></td>
</form>
</tr></table>
</td>
</tr>
</table>
<!-- /forum jump and timezone -->

<br>

<!-- icon key -->
<table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
<tr><td colspan="5" align="center"><smallfont>$timezone</smallfont></td></tr>
<tr><td rowspan="2" width="50%">&nbsp;</td>
<td nowrap><smallfont><img src="images/newfolder.gif" border="0" alt="New Posts"> <b>New posts</b> &nbsp;&nbsp;</smallfont></td>
<td nowrap><smallfont>( <img src="images/newhotfolder.gif" border=0 alt="Hot Thread"> <b>More than $hotnumberposts replies or $hotnumberviews views</b> )&nbsp;&nbsp;</smallfont></td>
<td nowrap><smallfont><img src="images/lockfolder.gif" border="0" alt="Closed Thread"> <b>Closed thread</b></smallfont></td>
</tr>
<tr>
<td nowrap><smallfont><img src="images/folder.gif" border="0" alt="No New Posts"> <b>No new posts</b> &nbsp;&nbsp;</smallfont></td>
<td nowrap colspan="2"><smallfont>( <img src="images/hotfolder.gif" border=0 alt="Hot Thread"> <b>More than $hotnumberposts replies or $hotnumberviews views</b> )&nbsp;&nbsp;</smallfont></td>
<td rowspan="2" width="50%">&nbsp;</td></tr>
</table>
<!-- /icon key -->

<br>

<!-- forum rules and admin options -->
<table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
<tr valign="bottom">
<td><smallfont><b>Forum Rules:</b>$forumrules</smallfont></td>
<td align="right">$adminoptions</td>
</tr>
</table>
<!-- /forum rules and admin options -->

$footer
</body>
</html>

Tony G 11-22-2002 08:00 PM

Actaully, I'm wrong. Check forumdisplay_forumslist. I'm not sure if thats wrong I'll take a deeper look later.

pgowder 11-22-2002 08:29 PM

Tried that, but it didn't make a change???

PHP Code:

<table cellpadding="{tableouterborderwidth}" cellspacing="0" border="0" bgcolor="{tablebordercolor}" {tableouterextrawidth="{contenttablewidth}" align="center"><tr><td>
<
table cellpadding="4" cellspacing="{tableinnerborderwidth}" border="0" {tableinnerextrawidth="100%">
<
tr align="center" valign="bottom">
    <
td bgcolor="{tableheadbgcolor}" width="10"><smallfont>&nbsp;</smallfont></td>
    <
td bgcolor="{tableheadbgcolor}" align="left" width="250"><smallfont color="{tableheadtextcolor}"><b>Forum</b></smallfont></td>
    <
td bgcolor="{tableheadbgcolor}" width="25"><smallfont color="{tableheadtextcolor}"><b>Posts</b></smallfont></td>
    <
td bgcolor="{tableheadbgcolor}" width="25"><smallfont color="{tableheadtextcolor}"><b>Threads</b></smallfont></td>
    <
td bgcolor="{tableheadbgcolor}" width="50"><smallfont color="{tableheadtextcolor}"><b>Last Post</b></smallfont></td>
    <
td bgcolor="{tableheadbgcolor}" width="100"><smallfont color="{tableheadtextcolor}"><b>Moderator</b></smallfont></td>
</
tr>
$forumbits
</table>
</
td></tr></table>

<
br


Tony G 11-22-2002 08:59 PM

I think those are the <table> tags (At the top) you need to edit.

pgowder 11-23-2002 12:53 AM

How would that change the alignment of the columns?

Tony G 11-23-2002 01:29 AM

I got it now, sorry.

Go into your forumhome_forumbit_level1_nopost and check the code for the forum/replies/threads etc. header under the category have width %'s.

pgowder 11-23-2002 01:33 AM

Here's that section:

PHP Code:

<tr align="center">
  <
td bgcolor="{tableheadbgcolor}"><smallfont> </smallfont></td>
  <
td bgcolor="{tableheadbgcolor}" width="250" align="left"><smallfont color="{tableheadtextcolor}"><b>Forum</b></smallfont></td>
  <
td bgcolor="{tableheadbgcolor}" width="25"><smallfont color="{tableheadtextcolor}"><b>Posts</b></smallfont></td>
  <
td bgcolor="{tableheadbgcolor}" width="25"><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="75"><smallfont color="{tableheadtextcolor}"><b>Moderator</b></smallfont></td>
</
tr



All times are GMT. The time now is 10:50 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01198 seconds
  • Memory Usage 1,773KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete