Os comentários das minhas notícias vem com tamanhos diferentes do Firefox e Internet Explore.
Se eu coloco no código em px no firefox a fonte fica menor e se coloco em "em" o firefox fica maior que o IE.
O que poderia estar acontecendo?
Minha página:
http://www.ilhacarioca.com.br/noticias/?p=347
Parte do código:
<ol class="commentlist">
<?php $comments = array_reverse($comments, true); ?>
<?php foreach ($comments as $comment) : ?>
<li class="<?php echo $oddcomment; ?>" id="comment-<?php comment_ID() ?>">
<cite><?php comment_author_link() ?></cite> comentou:
<?php if ($comment->comment_approved == '0') : ?>
O seu comentário aguarda moderação.
<?php endif; ?>
<small class="commentmetadata">" title=""><?php comment_date('d/m/y - H:i') ?> </small>
<font size="3.1em"><?php comment_text() ?></fonte>
<hr color="#666666" size="1" width="560" />
<?php /* Changes every other comment to a different class */
if ('alt' == $oddcomment) $oddcomment = '';
else $oddcomment = 'alt';
?>
<?php endforeach; /* end for each comment */ ?>