Gossamer Forum
Home : Products : Links 2.0 : Customization :

Re: Why only one column not two

Quote Reply
Re: Why only one column not two In reply to
Well, in hacking the scripts, you have deleted the following codes in the sub site_html_print_cat routine, which causes the tables to be into columns:

Code:
# 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 valign="top" width="50%">\n|;
}
$i++;

That is why you do not have two columns...As I mentioned before if you use the original sub mentioned above, IT WILL WORK!!!!

Wink

Regards,

------------------
Eliot Lee....
Former Handle: Eliot
Anthro TECH, L.L.C
anthrotech.com
* Check Resource Center
* Search Forums
* Thinking out of the box (codes) is not only fun, but effective.


Subject Author Views Date
Thread Why only one column not two RobL 1558 Apr 22, 2000, 7:57 AM
Post Re: Why only one column not two
Stealth 1526 Apr 22, 2000, 10:02 AM
Post Re: Why only one column not two
RobL 1525 Apr 22, 2000, 10:26 PM
Post Re: Why only one column not two
Stealth 1530 Apr 23, 2000, 7:48 AM
Post Re: Why only one column not two
RobL 1531 Apr 28, 2000, 10:28 PM
Post Re: Why only one column not two
Stealth 1524 Apr 29, 2000, 8:22 AM