Så har jeg endnu et lille design problem :-)
Som man kan se her : http://www.pimpdaddy.dk/?p=249
Så er brugerens avatar ovenover selve kommentaren. Jeg ville gerne have den til at står til venstre for. Altså på denne her måde: http://peecee.dk/upload/view/164102
Hvad skal der ændres i denne kode:
<?php if ($comments) : ?>
<h3 id="comments"><?php comments_number('Ingen kommentarer', 'En kommentar', '% kommentarer' );?> til “<?php the_title(); ?>”</h3>
<ol class="commentlist">
<?php foreach ($comments as $comment) : ?>
<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
<?echo get_avatar( get_comment_author_email(), '60')?>
<?php comment_author_link() ?> skrev:
<?php if ($comment->comment_approved == '0') : ?>
Your comment is awaiting moderation.
<?php endif; ?>
<small class="commentmetadata">" title="">Den <?php comment_date('j. F Y') ?> <?php edit_comment_link('edit',' ',''); ?></small>
<div class="ctext"><?php comment_text() ?></div>
På forhånd tak..
not resolved