Quote:
Originally Posted by Alien
This is terrific. I'll have use for this.
I wonder if you would consider going into more detail on this just working for a particular category or specified group of forums. I haven't yet figured this out.
|
If you look at your page source, you'll see that all the different categories/forums have their own ids (id="xxx"). So, you can append that to the front of the css and have it only apply to those categories/forums. So, for instance, if you just want it applied to stuff in category 3, or cat3 is the id, then instead of:
HTML Code:
ol.childforum {
.....
}
You would do:
HTML Code:
#cat3 ol.childforum {
.....
}
Then that particular CSS isn't applied to every ol.childforum, but only to those that also have the id cat3.
The best thing to do to understand how it works is to take some time to read up on it.