You need to do two things
1. Change the query to return the 10 top topics
Edit default.asp - about line 428 you will find the following
strSQL = "SELECT Top 6 tblTopic.Forum_ID, tblTopic.Topic_ID, tblTopic.Subject, tblForum.Password, tblForum." & strMemberStatus & " "
edit this and change the reference to "Top 6" to "Top 10" or whatever else is required
2. This will display the additional topics but you will get a lobsided look to your site. So go to line 574 - you should see this
Response.Write(vbCrLf & " <br>" & strTxtThereAre & " " & intActiveUsers & " <a href=""active_users.asp"" target=""_self"">" & strTxtActiveUsers & "</a>, " & intActiveGuests & " " & strTxtGuestsAnd & " " & intActiveMembers & " " & strTxtMembers & "</span>")
and on the next line
%>
insert a new line after this and put in
<br><br><br><br><br>
(i.e. one more <br> than the additonal number of topics you have decided on.
Hope this helps
Edited by sandy771