Вариант верстки на дивах, может быть, кому-то пригодится. CSS, соответственно, вставить в CSS, id родительского дива изменить по своему усмотрению.
<style type="text/css">
#row div {
position: relative;
float: left;
width: 100px;
height: 100px;
background: #CCC;
margin: 10px;
}
</style>
<div id="row">
<xsl:apply-templates select="blocks/items/item[item_status=1]" />
<br clear="all" />
</div>
<xsl:template match="blocks/items/item">
<div>
<a href="{item_path}"><b><xsl:value-of disable-output-escaping="yes" select="item_name"/></b></a>
</div>
</xsl:template>