Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Category and subcategory

Quote Reply
Category and subcategory
Hi

Is it possible to have no extra line between name of subcategories. What I mean I want to have something like this:
Code:
------------------------------------------
Subcategory 1 Subcategory4
Subcategory 2 Subcategory5
Subcategory 3 Subcategory6
------------------------------------------
But on front page I would like to have:
Code:
------------------------------------------
Category 1 Category4

Category 2 Category5

Category 3 Category6
------------------------------------------
Thanks. Regards.

UnReal Network
Quote Reply
Re: [deadroot] Category and subcategory In reply to
I guess this isn't possible... Unsure

Regards.

UnReal Network
Quote Reply
Re: [deadroot] Category and subcategory In reply to
Hi,
On your home.html place
<%set show_space = 'Yes'%>
and than in your subcategory.html (depending on your code)
place something like:

<a href="<%URL%>" class="categorylinks"><%Short_Name%><%if Related%>@<%endif%></a>
<br>
<%if show_space eq 'Yes'%>
<br>
<%endif%>

This will add another <br> only on your home page.
Hope that helps.