Gracias!
A ver.. el problema viene también que me está tocando arreglar lo hecho por otro.. pero bueno...
En principio, los comentarios son una función dentro de functions.php, siendo el código el siguiente:
Código PHP:
Ver originalfunction custom_comment($comment, $args, $depth) {
$GLOBALS['comment'] = $comment; ?>
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID()
?>">
<div id="author">
<?php
echo '<cite>';
if(get_comment_author_url())
{
echo '<a href="' . get_comment_author_url() .
'" target="_blank" title="Website of ' .
get_comment_author() . '">' . get_comment_author() . '</a>';
}
else { comment_author(); }
echo '</cite>'; ?>
</div>
<?php comment_text() ?>
<div class="coment-edit"><?php edit_comment_link(__('(Edit)'),' ','') ?></div>
<div class="comment-author vcard"><div class="coment-fecha">
<?php printf(get_comment_date
()) ?></div>
<?php if (current_user_can('administrator')) : ?><div class="reply">
<?php comment_reply_link
(array ('reply_text' => '', 'depth' => $depth, 'max_depth' => $args['max_depth'])) ?>
</div><?php endif; ?>
</div>
<?php if ($comment->comment_approved == '0') : ?>
<em><?php _e('Your comment is awaiting moderation.') ?></em>
<br />
<?php endif; ?>
Luego, el CSS que entra en juego es el siguiente:
Código CSS:
Ver original.commentlist {
margin: 0px !important;
border:1px solid #c1987a;
max-height:220px;
overflow:hidden;
border-radius:5px;
padding: 5px 5px 5px !important;
line-height: 6px;
}
.commentlist ol {
margin: 0px;
padding: 10px;
}
.commentlist li {
list-style: none;
margin:0px 0px 5px 0px !important;
padding: 0px 0px 8px 0px !important;
}
.commentlist li ul li {
list-style:none;
}
.nocomments {
text-align: center;
margin: 0px;
padding: 0px;
}
.reply {
padding: 5px 0px 5px 0px;
margin: 0px;
float:right;
margin-top:-10px;
background: url('images/reply.png') no-repeat 0 0 !important;
}
.reply a, .reply a:visited {
color: #999999;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
font-weight: normal;
font-style: italic;
text-decoration: none;
margin: 0px;
padding: 6px 8px 6px 8px;
}
.reply a:hover {
color: #999999;
text-decoration: none;
}
.thread-alt {
margin: 0px;
padding: 0px;
}
.thread-even {
margin: 0px;
padding: 0px;
}
.depth-1 {
margin: 0px;
padding: 0px;
border-bottom: 1px dotted #dfd6d1;
}
.even, .alt {
margin-bottom: 5px;
padding-bottom: 5px;
}
.coment-fecha {
float:right;
position:relative;
font-size:9px;
margin-left:5px;
line-height:10px;
color:#be9874;
top:-9px;
}
.coment-edit {
font-size:9px;
position:relative;
margin-left:5px !important;
line-height:10px;
color:#bb0046 !important;
top: -7px;
}
.coment-edit a{
font-size:9px;
position:relative;
margin-left:5px !important;
line-height:10px;
color:#bb0046 !important;
}
Creo que esto sería todo... la verdad que la hoja de estilos está totalmente revuelta porque los diseñadores que la han ido tomando con el tiempo han ido agregando cosas sin un orden y ahora vienen los problemas porque limpiarla me está costando la misma vida...
Un saludo y muchísimas gracias por adelantado!