diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/default/css.php | 3 | ||||
-rw-r--r-- | views/default/output/tagcloud.php | 9 |
2 files changed, 10 insertions, 2 deletions
diff --git a/views/default/css.php b/views/default/css.php index dd1e1449d..dba14194a 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -238,6 +238,9 @@ h2 { padding:1px 0 0 16px; font-size: 90%; } +.tagcloud { + text-align:justify; +} .ajax_loader { background-color: white; background-image: url(<?php echo $vars['url']; ?>_graphics/ajax_loader_bw.gif); diff --git a/views/default/output/tagcloud.php b/views/default/output/tagcloud.php index e8fffa705..2296c01fe 100644 --- a/views/default/output/tagcloud.php +++ b/views/default/output/tagcloud.php @@ -33,6 +33,9 @@ if (!empty($vars['tagcloud']) && is_array($vars['tagcloud'])) { $counter = 0; $cloud = ""; $max = 0; + + $cloud .= "<h3>".elgg_echo('tagcloud')."</h3><div class='tagcloud'>"; + foreach($vars['tagcloud'] as $tag) { if ($tag->total > $max) { $max = $tag->total; @@ -44,11 +47,13 @@ if (!empty($vars['tagcloud']) && is_array($vars['tagcloud'])) { } // protecting against division by zero warnings $size = round((log($tag->total) / log($max + .0001)) * 100) + 30; - if ($size < 60) { - $size = 60; + if ($size < 100) { + $size = 100; } $url = $vars['url'] . "pg/search/?q=". urlencode($tag->tag) . "&search_type=tags{$type}{$subtype}"; $cloud .= "<a href=\"{$url}\" style=\"font-size: {$size}%\" title=\"".addslashes($tag->tag)." ({$tag->total})\" style=\"text-decoration:none;\">" . htmlentities($tag->tag, ENT_QUOTES, 'UTF-8') . "</a>"; } + + $cloud .= "</div>"; echo $cloud; }
\ No newline at end of file |