summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--themes/garland/comment.tpl.php26
1 files changed, 15 insertions, 11 deletions
diff --git a/themes/garland/comment.tpl.php b/themes/garland/comment.tpl.php
index 65237e89c..b2646c695 100644
--- a/themes/garland/comment.tpl.php
+++ b/themes/garland/comment.tpl.php
@@ -1,19 +1,23 @@
<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ($comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
- <?php print $picture ?>
-<?php if ($submitted): ?>
- <span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $comment), '!date' => format_date($comment->timestamp))); ?></span>
-<?php endif; ?>
+ <div class="clear-block">
+ <?php if ($submitted): ?>
+ <span class="submitted"><?php print t('!date — !username', array('!username' => theme('username', $comment), '!date' => format_date($comment->timestamp))); ?></span>
+ <?php endif; ?>
-<?php if ($comment->new) : ?>
- <a id="new"></a>
- <span class="new"><?php print drupal_ucfirst($new) ?></span>
-<?php endif; ?>
+ <?php if ($comment->new) : ?>
+ <a id="new"></a>
+ <span class="new"><?php print drupal_ucfirst($new) ?></span>
+ <?php endif; ?>
+
+ <?php print $picture ?>
- <h3><?php print $title ?></h3>
+ <h3><?php print $title ?></h3>
- <div class="content">
- <?php print $content ?>
+ <div class="content">
+ <?php print $content ?>
+ </div>
+
</div>
<?php if ($links): ?>