Ok I searched the board. I am trying to get my sub cats to lay out in 3 columns instead of 2. What I found on the board was to change
my ($half) = int (($#subcat+2) / 2);
to
my ($half) = int (($#subcat+2) / 3);
or
my ($half) = int (($#subcat+3) / 3);
in site_html_template.pl
I tried both and they both create one shorter
column and one longer column meaning it puts one third in the first and 2 thirds in the 2nd but doesnt create 3 columns. Any suggestions?
Kelly
my ($half) = int (($#subcat+2) / 2);
to
my ($half) = int (($#subcat+2) / 3);
or
my ($half) = int (($#subcat+3) / 3);
in site_html_template.pl
I tried both and they both create one shorter
column and one longer column meaning it puts one third in the first and 2 thirds in the 2nd but doesnt create 3 columns. Any suggestions?
Kelly

