| Re: tdmdownloads and bootstrap |
| by tatane on 2013/6/23 8:04:34 Quote:
The problem is that the images in an array, the responsive system does not work so you have to create the div Quote: Can you show me the html Output of that, please? ![]() and my preference tdmdownload ![]() This means that there are 9 images on three columns. Unfortunately for the span of bootstrap I have to manually adjust the image according to the numbers |
| Re: tdmdownloads and bootstrap |
| by studioC on 2013/6/23 7:41:04 Fine, so you make 2 (or more) ul's out of one, if there is an item divided by 4 = 1Can you show me the html Output of that, please? I thought different for i wouldn't love to kill the structure of an unordered list. Last Night i made a quick an Dirty test with Mylinks categories display. I made 8 categories but "divided" the list only to be visible like a two column with css only. mylinks 2 column category list using unordered list Look into the source, One unordered list using CSS to display a 2 colum Arrangement. Didn't know if i would use it this Way, though. It was just quick and Dirty and Thats not what you Need but for me it was Fun ![]() Keep on good work and have fun, playing with xoops! Michael |
| Re: tdmdownloads and bootstrap |
| by tatane on 2013/6/23 7:20:10 Hello studioC I finally succeeded. Here is my code: le="color: #000000"><?php <{if $file != ""}> <div class="container-fluid"> <div class="row-fluid"> <ul class="thumbnails"> <{section name=i loop=$file}> <li class="span4"><{include file="db:tdmdownloads_download.html" down=$file[i]}></li> <{if $file[i].count is div by $nb_dowcol}> </ul> <ul class="thumbnails"> <{/if}> <{/section}> </ul> </div> </div> <{if $pagenav != ''}> <div class="tdmdownloads-pagenav"><{$pagenav}></div> <{/if}> <{/if}> This now allows for categories responsive bootstrap
|
| Re: tdmdownloads and bootstrap |
| by studioC on 2013/6/22 21:17:33 I'm not sure if i understand correct what you want to achieve. (Puuuh, there are so many nested divs there ...) To sum up in short, what i understand: You want to display an unordered list with 8 list-Elements but not "the normal way" with a list in one column but within 2 columns/blocks?, 4 list-Elements left and 4 list-Elements right, is it that simple? Michael |
| tdmdownloads and bootstrap |
| by tatane on 2013/6/22 9:57:00 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? |