Hi!I have a client that is using icons instead of tag names. They wish to use these icons throughout the site, using K2 tags.Each tag has an ID, and I want to use this ID to assign a CSS selector in order to show the icon instead of the tag name.The first challenge was in the K2 item view, and I was able to get the ID's by simply echoing <?php echo $tag->id; ?>. It works like a charm so far, and I can assign the different CSS selectors to the tags in the item view.(this modification was done in com_k2/templates/default/item.php - line 333)The second challenge is to do the same in the tag cloud module. I tried echoing the same string value in the module html template, but nothing returns and I don't know how to extract the tag ID from the module.(I am trying this mod in mod_k2_tools/tmpl/tags.php - line 18)Can anyone help me to extract the tag ID in the module? Any clues would be highly appreciated, thanks in advance!