Hi and thanks for a great plugin. It works like a charm except for one little thing.
After selecting "Your Bookmarks", when I click on the "Tags" link in the menu bar, the resulting box containing the tagcloud is too small. At least in my browser (IE6).
It seems to me that there is a missing div clause that should encompass the tagcloud. What I did to fix it was the following:
- Open the file path_to_elgg/units/bookmarks/bookmarks_tags_display.php
- Prior to parsing the tags (the foreach-loop starting on line 67) insert the following line: $run_result .= "<div id="tagcloud">";
- Immediately after that foreach-loop (line 91), add the following line: $run_result .= "</div>"; to close the div.
- Save and close the file.
The tagcloud should now be OK.
