background-color: white;
}
+.elgg-comments {
+ margin-top: 25px;
+}
+.elgg-comments > form {
+ margin-top: 15px;
+}
+
<?php //@todo remove ?>
.radius8 {
-webkit-border-radius: 8px;
/* ***************************************
USER INPUT DISPLAY RESET
*************************************** */
+.elgg-output {
+ margin-top: 10px;
+}
.elgg-output ul, ol {
margin: 0 1.5em 1.5em 0;
padding-left: 1.5em;
if (isset($vars['entity']) && elgg_is_logged_in()) {
?>
<div class="mbn">
- <label><?php echo elgg_echo("generic_comments:text"); ?></label>
+ <label><?php echo elgg_echo("generic_comments:add"); ?></label>
<?php echo elgg_view('input/longtext', array('name' => 'generic_comment')); ?>
</div>
<?php
'guid' => $vars['entity']->getGUID(),
'annotation_name' => 'generic_comment'
);
-echo elgg_list_annotations($options);
+$html = elgg_list_annotations($options);
+if ($html) {
+ echo '<h3>Comments</h3>';
+ echo $html;
+}
+//echo strlen($html);
if ($show_add_form) {
$form_vars = array('name' => 'elgg_add_comment');