Recent Topics

1 Nov 21, 2005 20:12    

As I have a lot of sub-categories, I would like to make the main categories bold for better/faster recognition. All I can do in _categories.php is to make ALL categories invisible. Is there way to single out main categories and make them bold or italic or - even better - in a different color?

2 Nov 21, 2005 22:05

Yes, I have an idea. Post a link to your site so I can see what css you would need.

4 Nov 21, 2005 22:58

See how this works. Add this to the bottom of /skins/custom/custom.css

.bSideItem ul {
font-weight: bold;
font-size: 1.3em;
}
.bSideItem ul ul {
font-weight: normal;
font-size: 0.6em;
}

If you don't like the way that makes other parts of the sidebar look, then you can change .bSideItem to something else and make sure your category is labeled the same way.

5 Nov 21, 2005 23:08

That worked great, thank you! I tried to change the font color as well, but I guess this has to be done another way. (Actually, since there was font-weight and font-size I figured I could add some font-color, which, of course, didn't work... *g*)

6 Nov 21, 2005 23:18

It didn't work because they are links. You can change the color,

.bSideItem ul {
font-weight: bold;
font-size: 1.3em;
}
.bSideItem ul ul {
font-weight: normal;
font-size: 0.6em;
} 
.bSideItem ul a {
color: #FF0000;
}
.bSideItem ul ul a {
color: #569;
}


Form is loading...