In your default.asp, look for this piece of code (lines 563-574):
next '## Next Category
end if
if strPMStatus = "1" then
%>
<!--#INCLUDE FILE="privatemess.asp"-->
<% end if
if strShowStatistics = "1" then
WriteStatistics
end if
%>
<!--#include file="inc_activeusers.asp"-->
<%
Change it to this:
next '## Next Category
end if
%><!--#include file="inc_activeusers.asp"--><%
if strPMStatus = "1" then
%>
<!--#INCLUDE FILE="privatemess.asp"-->
<% end if
if strShowStatistics = "1" then
WriteStatistics
end if
Then it will look as you want it to.