This mod puts the Topic Review window in a scrollable area below the post composition area.
Edit post.asp (Do not copy on top of existing installation - line numbers are approx. ---------------- 3 Line ADDITION 1 Line EDIT 1 Line ADDITION ----------------
*** 3 Line ADDITION around line 1020
</table> <table border="0" width="100%" align=center> <table border="0" width="75%" cellspacing="0" cellpadding="0" align="center"> <tr> <td bgcolor="<% =strTableBorderColor %>"> <table border="0" width="100%" cellspacing="1" cellpadding="4"> <tr> <td bgcolor="<% =strHeadCellColor %>" colspan="2" align="center"><b><font <% =strDefaultFontFace %> size="<% =strDefaultFontSize %>" color="<% =strHeadFontColor %>">T O P I C R E V I E W</font></b></td> </tr> <%' BEGIN 3 line ADDITION of Scrolling Topic Review '%> </table> <div style="overflow:scroll;width:100%;height:300px;"> <table border="0" width="100%" cellspacing="1" cellpadding="4"> <%' END 3 line ADDITION of Scrolling Topic Review '%>
*** 1 Line Edit around line 1125 remove the underscore at the end of the line
rs.MoveNext strI = strI + 1 if strI = 2 then strI = 0 end if loop end if
' BEGIN 1 Line EDIT for Scrolling Topic Review ' Remove the underscore at the end of the line. Response.Write " </table>" & vbNewline ' END 1 Line EDIT for Scrolling Topic Review ' Remove the underscore at the end of the line.
*** 1 line addition right below
' BEGIN 1 Line ADDITION for Scrolling Topic Review Response.Write " </div>" & _ ' END 1 Line ADDITION for Scrolling Topic Review