1
Hello
I'm trying to adapt the bootstrap tdmdownload module.
I would like to display on the page viewcat.php 4 images on two lines which therefore 8 images. To setup this kind of display, so I set my preference as :

Tdmdowloads_viewcat.html the side, I modified the template by adding span adaptable to make my pictures, here is the code tdmdowloads_viewcat.html
le="color: #000000"><?php <{if $file != ""}> <div class="container-fluid"> <div class="row-fluid"> <ul class="thumbnail"> <{section name=i loop=$file}> <li class="span3"><{include file="db:tdmdownloads_download.html" down=$file[i]}></li> <{/section}> </ul> </div> </div> <{if $pagenav != ''}> <div class="tdmdownloads-pagenav"><{$pagenav}></div> <{/if}> <{/if}>
With this type of code that shows me <ul class="thumbnail"> for 8 images or having a span of 3, I need a <ul class="thumbnail"> for a column of 4 images.

What php file I need to change to create a class="thumbnail"> <ul between each column?