Gossamer Forum
Home : Products : Links 2.0 : Customization :

can't get rid of <B> effect in subcategory

Quote Reply
can't get rid of <B> effect in subcategory
Hmm. I can't seem to figure out how to not make my subcategories show up as bold. See www.waterwater.ca. They are in bold, aren't they??

In sub site_html_print_cat, I have <font size="2"> for the subcategories, but no reference to bold.

Thanks.
Vito

Quote Reply
Re: [ceniti] can't get rid of <B> effect in subcategory In reply to
Think the reason it is showing up is cos you have got <strong>, rather than <b> in there. Have a look. I think thats where your problem lies Tongue

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [AndyNewby] can't get rid of <B> effect in subcategory In reply to
Thanks, Andy.

Actually, as far as I can see, I have <strong> for the categories, but I removed all tags for the subcategories...

I want the categories to be bold and the subcategories not bold.
Quote Reply
Re: [ceniti] can't get rid of <B> effect in subcategory In reply to
Aha! Problem solved!

In links.css I had

TD.category { font-family:Arial, Helvetica, sans-serif; font-size:16px; color: #000000; font-weight:800; }

I simply changed the weight to 400, and made sure that I applied <strong> to the category in sub site_html_print_cat.

Thanks, Andy!