Gossamer Forum
Home : Products : Links 2.0 : Discussions :

font size for description

Quote Reply
font size for description
Hello. I want to make the description on the homepage a smaller font and unbold it.
I checked sub site_html_print_cat and it has the following code:

# This routine determines how the list of categories will look.
# We now use a table to split the category name up into two columns.
# For each category you can use the following variables:
#
# $url : The URL to go to that category
# $category_name : The category name with _ and / removed.
# $category_descriptions{$subcat}: The category description (if any).
# $numlinks : The number of links inside that category (and subcategories).
# $mod : The newest link inside of that category.
#

my (@subcat) = @_;
my ($url, $numlinks, $mod, $subcat, $category_name, $description, $output, $i);
my ($half) = int (($#subcat+2) / 2);

# Print Header.
$output = qq|<div class="margin"><table width="80%" border="0" cellspacing="0" cellpadding="0"><tr><td class="catlist" valign="top">\n|;

foreach $subcat (sort @subcat) {
($description) = @{$category{$subcat}}[2];

Am I in the right area? What do I need to chage?

Also, I've been using and altering the site_html_templates.pl which is from a Yahoo template download. Is site_html.pl being used in any way?

Thanks.

Mike...back again

Subject Author Views Date
Thread font size for description gnomepark 2242 Oct 24, 2000, 8:10 PM
Thread Re: font size for description
Stealth 2157 Oct 24, 2000, 8:14 PM
Thread Re: font size for description
gnomepark 2165 Oct 24, 2000, 9:13 PM
Thread Re: font size for description
Stealth 2134 Oct 25, 2000, 7:30 AM
Thread Re: font size for description
gnomepark 2123 Oct 25, 2000, 1:30 PM
Thread Re: font size for description
Stealth 2117 Oct 25, 2000, 3:26 PM
Thread Re: font size for description
gnomepark 2109 Oct 25, 2000, 4:09 PM
Post Re: font size for description
Stealth 2106 Oct 25, 2000, 6:06 PM