What I would do, is look at the HTML for something I think will be unique to that template, such as:
HTML Code:
<h2 class="searchlisthead">
Then I would follow:
AdminCP -> Styles & Templates -> Search in Templates
Then in the "Search for Text" field paste:
<h2 class="searchlisthead">
and click "Find"
You should see the "search_resultlist" template in the result. Double-click it to open the template, and then you will see your search text in the "Search in Template" field, so click the "Find" button, and you will be taken to where the search text is located within the template. Several lines below that, you will find the block:
HTML Code:
<div class="blockbody">
<vb:if condition="$displayCommon">
<h3 class="blocksubhead">{vb:rawphrase words_very_common}: $displayCommon</h3>
</vb:if>
<vb:if condition="$show['results']">
<ol id="searchbits" start="1" class="searchbits">
{vb:raw searchbits}
</ol>
<vb:else />
<div class="blockrow">{vb:rawphrase no_unread_threads}</div>
</vb:if>
</div>
Then you can edit the HTML as you desire, and click "Save" or "Save and Reload." Then go to your forum, and see if the changes you made work as you want.