hi
Open subsonic\jetty\1130\webapp\WEB-INF\jsp\ Search.jsp
find this script and copy the script and paste to the bottom line
<c:if test="${command.matches != null}">
<table class="indent"><tr>
<c:choose>
<c:when test="${command.totalHits eq 0}">
<th><fmt:message key="search.hits.none"/></th>
</c:when>
<c:otherwise>
<th style="padding-right:2em">
<fmt:message key="search.hits">
<fmt:param value="${command.firstHit}"/>
<fmt:param value="${command.lastHit}"/>
<fmt:param value="${command.totalHits}"/>
</fmt:message>
</th>
<c:if test="${command.firstHit > 1}">
<th><div class="back" style="padding-right:1em"> <a href="javascript:noop()" onclick="previous()"><fmt:message key="search.hits.previous"/></a></div></th>
</c:if>
<c:if test="${command.lastHit < command.totalHits}">
<th><div class="forward"> <a href="javascript:noop()" onclick="next()"><fmt:message key="search.hits.next"/></a></div></th>
</c:if>
</c:otherwise>
</c:choose>
</tr></table>
</c:if>
-----------------
Paste here in search.jsp
</body></html>
