To remove the box:
In forum.asp find this bit of code and remove the red parts:Response.Write " </font></td>" & vbNewLine & _
" <td align=""right"" valign=""top"" width=""33%"" nowrap>" & vbNewLine
%>
<!--#INCLUDE FILE="inc_jump_to.asp" -->
<%
Response.Write " </td>" & vbNewLine & _
" </tr>" & vbNewLine & _
So that it looks like:Response.Write " </font></td>" & vbNewLine
Response.Write " </tr>" & vbNewLine & _
You will then need to adjust the width from 33% to 50% on the two table cells above that code.
A similar thing will need to be done to topic.asp and active.asp.
MarkM, to move that bit of code to the top of the page, follow the instructions above and then find the following code in forum.asp:
if maxpages > 1 then
Response.Write " <tr>" & vbNewLine & _
" <td colspan=""3"" align=""right"" valign=""bottom"">" & vbNewLine & _
" <table border=""0"" align=""right"">" & vbNewLine & _
" <tr>" & vbNewLine
Call DropDownPaging(1)
Response.Write " </tr>" & vbNewLine & _
" </table>" & vbNewLine & _
" </td>" & vbNewLine & _
" </tr>" & vbNewLine
else
Response.Write " <tr>" & vbNewLine & _
" <td colspan=""3""><span style=""font-size: 6px;""><br /></span></td>" & vbNewLine & _
" </tr>" & vbNewLine
end if
And make it look like:
if maxpages > 1 then
Response.Write " <tr>" & vbNewLine & _
" <td colspan=""2"" align=""left"" valign=""bottom"">" & vbNewLine
%>
<!--#include file="inc_jump_to.asp"-->
<%
Response.Write " </td>" & vbNewLine & _
" <td align=""right"" valign=""bottom"">" & vbNewLine & _
" <table border=""0"" align=""right"">" & vbNewLine & _
" <tr>" & vbNewLine
Call DropDownPaging(1)
Response.Write " </tr>" & vbNewLine & _
" </table>" & vbNewLine & _
" </td>" & vbNewLine & _
" </tr>" & vbNewLine
else
Response.Write " <tr>" & vbNewLine & _
" <td colspan=""2"" align=""left"" valign=""bottom"">" & vbNewLine
%>
<!--#include file="inc_jump_to.asp"-->
<%
Response.Write " </td>" & vbNewLine & _
" <td><span style=""font-size: 6px;""><br /></span></td>" & vbNewLine & _
" </tr>" & vbNewLine
end if