Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Re: Making a single column display

Quote Reply
Re: Making a single column display In reply to
The answer turned out to be so easy I'm stunned.
I backtracked to the default, and then changed
# 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++;

I killed the code referring to the second column like so:

if ($i == $half) {
$output .= qq~\n~;
}
$i++;

Voila, One Column!!

Subject Author Views Date
Thread Making a single column display webfairy 3454 Aug 13, 2001, 7:16 AM
Thread Re: Making a single column display
QooQ 3357 Aug 13, 2001, 7:54 AM
Thread Re: Making a single column display
webfairy 3351 Aug 13, 2001, 11:00 AM
Thread Re: Making a single column display
QooQ 3352 Aug 13, 2001, 11:09 PM
Thread Re: Making a single column display
webfairy 3332 Aug 14, 2001, 5:11 PM
Post Re: Making a single column display
QooQ 3326 Aug 14, 2001, 7:44 PM