Gossamer Forum
Home : Products : Links 2.0 : Customization :

Changing catagory description font color

Quote Reply
Changing catagory description font color
Ive been trying to change the font color on the catagory description and cant figure it out. Im using the css but it always goes back to black when i build. Are there anyway to make it stay another color? I searched the forum but didnt see anything regarding this. If its been asked before please point me to it
Quote Reply
Re: [spankys] Changing catagory description font color In reply to
It has been covered before, but here it is again...

In site_html_templates.pl, find sub site_html_print_cat, then look for this:

$output .= qq|<dd><span class="descript">$description </span></dd>| if (!($description =~ /^[\s\n]*$/));

This line tells us that the CSS used is called "descript". Either change the links.css file to make it look how you want, or add the HTML code in right here.

/* The link description */
span.descript {
font-size: small;
color: #333333;
background: #FFFFFF;
font-family: "verdana", "arial", "geneva", sans-serif;
}


The 'color' line is the one that effects the font.


Leonard
aka PerlFlunkie
Post deleted by spankys In reply to
Quote Reply
Re: [PerlFlunkie] Changing catagory description font color In reply to
Thanks for the response, I got it to work but the css wouldnt do it..had to do it with html...your a lifesaver!
Quote Reply
Re: [spankys] Changing catagory description font color In reply to
Is your CSS file working for other aspects? If not, maybe it's not being read. It needs to be in the same directory as the pages created by links, the default would be like .com/pages/links.css.


Leonard
aka PerlFlunkie