Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Category Listing Style

Quote Reply
Category Listing Style
Hello all,

Is it possible to list a category look like:
A B
C D
E F

Instead of:
A D
B E
C F

Please help.
Quote Reply
Re: [reenee] Category Listing Style In reply to
Hi,

Instead of using <%category%> tag, you can use

<table>
<%loop category_loop%>
<%if odd%>
<tr>
<%endif%>
<td><a href="<%URL%>"><%Name%></a></td>
<%if odd%>
</tr>
<%endif%>
<%endloop%>

or something like that. =)

Cheres,

Alex
--
Gossamer Threads Inc.
Quote Reply
Re: [Alex] Category Listing Style In reply to
Code:
<table>
<%loop category_loop%>
<%if odd%>
<tr>
<%endif%>
<td><a href="<%URL%>"><%Name%></a></td>
<%if odd%>
</tr>
<%endif%>
<%endloop%>


Hi Alex,

Thanks for reply, i did change the <%category%> at home.html with the tag above but the list just look like:

A
B
C
D
E
F

How to make the category look like:

A B
C D
E F

In the same time, i have an image to every category, Please help.