• Resolved Scott Foshee

    (@scott-foshee)


    I have a custom footer and the Leave a Comment link seems to be in the footer and is obscured. How do I move the Leave a Comment link out of the footer and to the bottom of the post? I am running Decode theme. Since the footer is centered, Leave a Comment, Author, and post tags are all centered too, which is not good. The link is https://lallabee.com/backstage/

    Thank you for your help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Scott Foshee

    (@scott-foshee)

    I found the following code in the Decode: content.php file. Is there a way to change this in CSS?

    <footer class="entry-footer below-content">
    		<?php if (get_theme_mod( 'enable_comments', true ) == true && ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
    			<div class="comments-link <?php echo get_theme_mod( 'enable_comments', '' ); ?>"><?php comments_popup_link( __( 'Leave a comment', 'decode' ), __( '1 Comment', 'decode' ), __( '% Comments', 'decode' ) ); ?></div>
    		<?php endif; ?>
    		<?php edit_post_link( __( 'Edit', 'decode' ), '<div class="edit-link">', '</div>' ); ?>
    		<?php if (get_theme_mod( 'show_tags', false ) == true ) : ?>
    			<p class="tags"><?php the_tags(__( 'Tagged as: ', 'decode' ),', '); ?></p>
    		<?php endif; ?>
    		<?php if (get_theme_mod( 'show_categories', false ) == true ) : ?>
    			<p class="categories"><?php _e( 'Categorized in: ', 'decode' ) . the_category(', '); ?></p>
    		<?php endif; ?>
    		<?php if ( get_theme_mod( 'entry_date_position', 'below' ) == 'below' ) : ?>
    			<p class="date"><?php decode_posted_on(); ?></p>
    		<?php endif; ?>
    	</footer><!-- .entry-footer -->

    Did you manage to fix this ? I’ve visited your site and everything seems ok from my point of view.

    Feel free to leave a comment here if this hasn’t been resolved.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Leave a Comment, Author and Tags are in footer – how to move to bottom of post?’ is closed to new replies.