I am using links2.0 with the set of templates -Script Resource Center Templates - as used on the gossamer-threads site - made by alex.
I am tring to change the category listings from 1 column to 2 columns.
I have added this to the site_html_templates.pl
# We check to see if we are half way through, if so we stop this table cell
# and begin a new one (this lets us have category names in two columns).
if ($i == $half) {
$output .= qq|</td><td class="catlist" valign="top">\n|;
}
$i++;
But I am still getting only 1 column, does anyone know what else has to be done to get 2 columns to display???
Question 2.
the Categorys are displayed like this..
Cat 1
Space
Cat 2
Space
Cat 3
etc
how can I get it to display like this..
Cat 1
Cat 2
Cat 3
etc
Thanks
Steve
I am tring to change the category listings from 1 column to 2 columns.
I have added this to the site_html_templates.pl
# We check to see if we are half way through, if so we stop this table cell
# and begin a new one (this lets us have category names in two columns).
if ($i == $half) {
$output .= qq|</td><td class="catlist" valign="top">\n|;
}
$i++;
But I am still getting only 1 column, does anyone know what else has to be done to get 2 columns to display???
Question 2.
the Categorys are displayed like this..
Cat 1
Space
Cat 2
Space
Cat 3
etc
how can I get it to display like this..
Cat 1
Cat 2
Cat 3
etc
Thanks
Steve


Categorys in two columns