Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Dumb question, category loop

Quote Reply
Dumb question, category loop
Hi guys, sorry for making this dumb question as it might be probably css related anyway, I've been trying different things with no luck :p so I hope someone can pointme to the right direction (sometimes it happens when you see code and more code together :p)

I'll like to know why I'm missing my 2 columns here on my categories area, please check this link

Thanks again for looking, here its the code I'm using it:
Code:
<%if category_loop.length~%>
<h3>Categor&iacute;as</h3>
<%~set split = Links::Utils::column_split($category_loop.length, $category_cols)%>
<div class="clear-categorias">
<%loop category_loop%>
<%~set splitmod = $row_num % $split%>
<%~if row_num == 1 or splitmod == 1 or split == 1%><dl><%endif%>
<%~include subcategory.html%>
<%~if row_num == $category_loop.length or splitmod == 0%></dl><%endif%>
<%~endloop%>
<br/>
</div>
<%~endif%>

and my globals are fine (2 columns)
Quote Reply
Re: [Jesus] Dumb question, category loop In reply to
Sorry guys, I figured out. As always happens when you saw a lot of code together, I was missing an id :p

Thanks anyway.