--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=.
I used this approach, was explained on "Learning website development with Django book", give a look there:style.css file:.tag-cloud-0 { font-size: 100%; }.tag-cloud-1 { font-size: 120%; }.tag-cloud-2 { font-size: 140%; }.tag-cloud-3 { font-size: 160%; }.tag-cloud-4 { font-size: 180%; }.tag-cloud-5 { font-size: 200%; }And generated the tag number dynamically counting the objects that has that tag.
Obviously I can't use that number in font-size (150pt is too big) and
I have to make a proportion (150 -> 20pt, 1 -> 5pt, 50 ~>10pt and so
on).
How can I accomplish that?