• Hi there

    What should I do to align my gravatar on the right side of comments?

    The code from comments.php is:

    <?php if ( $comments ) : ?>
    <ol id="commentlist">
    
    <?php foreach ($comments as $comment) : ?>
    
    <li id="comment-<?php comment_ID() ?>"><cite><?php comment_type(__('Komentarz'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> — <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite> <?php edit_comment_link(__("Edit This"), ' |'); ?>
        <?php comment_text() ?>
    <?php echo get_avatar( $comment, '48' ) ; ?>
    
        </li>
    
    <?php endforeach; ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • <?php if ( $comments ) : ?>
    <ol id="commentlist">
    <?php foreach ($comments as $comment) : ?>
    <li id="comment-<?php comment_ID() ?>"><cite><?php comment_type(__('Komentarz'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> — <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite> <?php edit_comment_link(__("Edit This"), ' |'); ?>
    <?php echo get_avatar( $comment, '48' ) ; ?>
        <?php comment_text() ?>
        </li>
    <?php endforeach; ?>

    CSS
    img.avatar {float: right;}

    try that out

    Thread Starter krzysztof114

    (@krzysztof114)

    I had to change the size but it works great. Thanks a lot, beer for you 😉

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘gravatar customization’ is closed to new replies.