bmos
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Iconic One] Move "comments" link to bottom of postwhat you probably are wanting to do is ONLY have the comments below. in that case use only this part (and remove it from the earlier section):
<div class="below-title-meta"> <div class="adt-comment"> <a class="link-comments" href="<?php comments_link(); ?>"><?php comments_number(__('0 Comment','themonic'),__('1 Comment'),__('% Comments')); ?></a> </div> </div>Forum: Themes and Templates
In reply to: [Iconic One] Move "comments" link to bottom of postcontent.php is the file. mine is so modified at this point i can’t even tell you where to look in yours but look for these lines.
<div class="below-title-meta"> <div class="adt"> <?php _e('By','themonic'); ?> <span class="author"> <?php echo the_author_posts_link(); ?> </span> <span class="meta-sep">|</span> <?php echo get_the_date(); ?> </div> <div class="adt-comment"> <a class="link-comments" href="<?php comments_link(); ?>"><?php comments_number(__('0 Comment','themonic'),__('1 Comment'),__('% Comments')); ?></a> </div> </div>move that down so it’s right before
<footer class="entry-meta">Forum: Themes and Templates
In reply to: [Iconic One] How to see the number of comments on homepage?easy. look for this in content.php and change to below
<!– Removed the meta data here so it doesn’t duplicate on single post pages line 31-43 –>
<?php endif; // display meta-date on single page() ?>
<div class=”below-title-meta”>
<div class=”adt”>
<?php _e(‘By’,’themonic’); ?>
<span class=”author”>
<?php echo the_author_posts_link(); ?>
</span>
<span class=”meta-sep”>|</span>
<?php echo get_the_date(); ?>
</div>
<div class=”adt-comment”>
“><?php comments_number(__(‘0 Comment’,’themonic’),__(‘1 Comment’),__(‘% Comments’)); ?>
</div>
</div><!– below title meta end –>i have the same issue. the demo image doesn’t stretch the whole width of the header so you can’t tell if that’s going to do it or not. but yeah, FF and IE don’t look good.