bis jetzt habe ich wp nur lokal installiert - daher kann ich mit einem link nicht dienen...
auszug aus der css:
.avatar {
margin: 4px; 10px;
border: 1px #ccc;
padding: 3px;
}
#comment {
background: #ffffff;
border: 1px solid #e9e9d9;
color: #595949;
font-size: 11px;
margin-left: 100px
padding-left: 2px;
vertical-align: middle;
width: 350px;
}
.commentbody {
color: #595949;
font-size: 12px;
margin: 0 0 10px 0;
padding: 15px 15px 5px 15px;
background: #f7f7f0;
border: 1px solid #f0f0e0;
position: relative;
}
.commentbody p {
line-height: 1.2em;
}
.commentlink {
font-size: 10px;
}
.commentlist {
list-style: none;
}
Alles anzeigen
auszug aus der comments.php:
<?php foreach ($comments as $comment) : ?>
<li class="commentbody" id="comment-<?php comment_ID() ?>">
<?php echo get_avatar( $comment, 40 ); ?>
<?php comment_author_link() ?>
<?php if ($comment->comment_approved == '0') : ?>
<em><?php _e('Your comment is awaiting moderation.','relaxation') ?></em>
<?php endif; ?>
<br />
<a class="commentlink" href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('j. F Y') ?> <?php comment_time('G:i \U\h\r') ?></a> <?php edit_comment_link('e','',''); ?>
<div class="commentcount"><?php echo $relax_comment_count; ?></div>
<?php comment_text() ?>
</li>
Alles anzeigen
ich hoffe, ihr könnt mit diesen angaben etwas anfangen...