Wie bekomm ich es hin, dass es mir die Info zu der Anzahl der Comments am rechten Rand ausrichten und dann auch noch in andere Schriftfarbe und - größe als den Titel das Blogs?
PHP
<div class="post">
<h2 class="post-titulo" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent link to'); ?> <?php the_title(); ?>"><?php the_title() ?> <?php comments_number('0 comments','1 comment','% comments'); ?></a></h2>
<p class="postmeta"><?php the_time('F j, Y') ?> <?php _e('at'); ?> <?php the_time() ?> · <?php _e('Filed under'); ?> <?php the_category(', ') ?><?php edit_post_link(__('Edit'), ' · ', ''); ?></p>
<?php if (is_search()) { ?>
<?php the_excerpt() ?>
<?php } else { ?>
<?php the_content(__('Read the rest of this entry »')); ?>
<?php } ?>
</div>