Quote:
Originally Posted by schonhose
Uhm... if you only need to change the fontsize why not do this in the CSS file?
|
It's not just about the font size. guiz is talking about getting more control over when certain css classes are applied. I think he was under the impression that there was a set rule that when a tag is used once it gets the tags01 class applied, if it's used twice it gets tags02, if it's used three to five times it gets tags03, etc.
guiz the reason you can't find where to change the settings, is that everything is dynamic. What GeoS is telling us with the metacode he posted is that the classes for each tag are calculated dynamically. What it's doing, generally speaking, is finding the tag that you use the most and assigning class10 to it. Then it finds the tag you use the least and assigns class00 to it. For all other tags they are assigned a class based on how close they are to either of these extremes.
For example, if your most used tag was used 10 times, and your least used tag was only used once, then a tag that's been used 5 times is going to be assigned tag05. If you're extremes are 1 and 100 though, you would need to use a tag 50 times in order for it to get tag05.
Does that make sense?