Yes it should work with any kind of rows template.
css play important role here, they are so helpful.
Here is my actual code of rows.html
Code:
<%$hook_html_rows_begin%>
<%if $sponsored%>
<%include file="sponsored_rows.html"%>
<%elseif $premium%>
<%include file="premium_rows.html"%>
<%else%>
<%if $number % 2 eq 1%>
<div class="row_nl">
<%/if%>
<div class="row_item myrow">
<div style="float:left">
<img src="http://open.thumbshots.org/image.aspx?url=<%$url%>" alt="<%$title%>" style="border:1px solid #777;">
</div>
<div style="float:left;margin-left:10px;width:200px;">
<div style="text-align:right;"><%$rating_img%></div>
<h3><a href="<%$url%>" name="link_<%$link_id%>"><%$title%></a></h3>
<p><%$description%></p>
<p><a href="<%$url%>" name="link_<%$link_id%>"><%$url%></a> - <a href="<%$site_url%>/<%$detail_page_url%>"><%t%>details<%/t%></a></p>
<p>Google PR : <img src="<%$site_url%>/googlepr.php?link_id=<%$link_id%>" alt="" /></p>
</div>
<div style="clear:both;">
</div>
</div>
<%if $number % 2 eq 0%>
</div>
<%/if%>
<%/if%>
<%$hook_html_rows_end%>