Tightened up HTML Public Forum Page. Just modified the HTML for the public forum display. I think it looks good. If you are interested see example at
http://www.teamd86.com/cgi-bin/ultimatebb.cgi?ubb=forum&f=1 In public_forum_page.pl
Replace this:
my $PageTop = qq~
<center>
<table border="0" width="$vars_style{TableWidth}">
<tr>
<td align="left" valign="top">
<A HREF="$vars_config{CGIURL}/ultimatebb.cgi"><IMG SRC="$vars_config{NonCGIURL}/$vars_style{BBTitle}" BORDER="0"></A>
<FONT SIZE="$vars_style{TextSize}" FACE="$vars_style{FontFace}" color="$vars_style{LinkColor}"><B>
$forum_name
</B>
<FONT size= "1" COLOR="$vars_style{VisitedLinkColor}">
($vars_wordlets{moderated_by} $Moderator)
</FONT></font>
</td>
<td valign="top" nowrap>
<CENTER>
<FONT SIZE="$vars_style{TextSize}" FACE="$vars_style{FontFace}">
$new_topic_button
</FONT>
<FONT SIZE="1" FACE="$vars_style{FontFace}">
$MainButtonsLine
$topic_view_line
</FONT>
</CENTER>
</td></tr></table>
<table border="0" width="$vars_style{TableWidth}">
<tr>
<TD valign="bottom" align="right">
<FONT SIZE="1" FACE="$vars_style{FontFace}">
$more_topics_wording
</FONT>
</TD>
</tr>
</table>
With this:
my $PageTop = qq~
<center>
<table border="0" width="$vars_style{TableWidth}">
<tr>
<td align="left" valign="top">
<FONT SIZE="$vars_style{TextSize}" FACE="$vars_style{FontFace}" color="$vars_style{LinkColor}"><B>
$forum_name </B>
<FONT size= "1" COLOR="$vars_style{VisitedLinkColor}"> ($vars_wordlets{moderated_by}
$Moderator)
</FONT></font> </td>
<td valign="top" align="right" nowrap>
<FONT SIZE="$vars_style{TextSize}" FACE="$vars_style{FontFace}"> </FONT>
<FONT SIZE="1" FACE="$vars_style{FontFace}"> $MainButtonsLine
</FONT>
</CENTER>
</td>
</tr>
<tr>
<td align="left" valign="top"><font size="$vars_style{TextSize}" face="$vars_style{FontFace}">$new_topic_button</font></td>
<td valign="top" align="right" nowrap><font size="1" face="$vars_style{FontFace}">$topic_view_line</font></td>
</tr>
</table>
<table border="0" width="$vars_style{TableWidth}">
<tr>
<TD valign="bottom" align="right">
<FONT SIZE="1" FACE="$vars_style{FontFace}">
$more_topics_wording
</FONT>
</TD>
</tr>
</table>