I see. The file is /themes/komet/rows.html
In line 10
Code:
<h3><%$number%>. <a href="<%$url%>" name="link_<%$link_id%>"><b><%$title%></b></a></h3>
You need to change <%$url%> to pointing to detail page. Change it to : <%$site_url%>/<%$detail_page_url%>
The final code will be :
Code:
<h3><%$number%>. <a href="<%$site_url%>/<%$detail_page_url%>" name="link_<%$link_id%>"><b><%$title%></b></a></h3>
Also notice that it has name="link_<%$link_id%>
That is used to count the hit counter. So when someone clicking on that link, the hit counter will be up. Of course it has some prevention method to prevent multiple count from the same person.