Avatar support for classic theme

git-svn-id: http://svn.automattic.com/wordpress/trunk@7361 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-03-17 23:16:10 +00:00
parent d587b08c0b
commit c7d6a001d0
2 changed files with 8 additions and 0 deletions

View File

@ -13,6 +13,7 @@
<?php foreach ($comments as $comment) : ?>
<li id="comment-<?php comment_ID() ?>">
<?php echo get_avatar( $comment, 32 ); ?>
<?php comment_text() ?>
<p><cite><?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> &#8212; <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite> <?php edit_comment_link(__("Edit This"), ' |'); ?></p>
</li>

View File

@ -160,6 +160,13 @@ ul.post-meta span.post-meta-key {
list-style-type: none;
}
#commentlist li .avatar {
float: right;
margin-right: 25px;
border: 1px dotted #ccc;
padding: 2px;
}
#content {
margin: 30px 13em 0 3em;
padding-right: 60px;