• Resolved stunterjason

    (@stunterjason)


    I was wondering if anyone knows how to add a horizontal line after each post?
    Also how can I remove the “posted in” in each post?
    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • What theme are you using?

    Thread Starter stunterjason

    (@stunterjason)

    I am using twenty ten theme. I figured out the horizontal line… I put the <hr /> tag in single.php

    <div class="entry-utility">
    						<?php twentyten_posted_in(); ?>
    						<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
    				<strong><hr /></strong>	</div><!-- .entry-utility -->

    I sill need to figure out how to remove the “Posted In” from each post…???

    Open loop.php and go to line 145 and replace “Posted in” to whatever you want.

    Instead of using hr tag, open style.css add this entry at the end

    .entry-utility {
      border-bottom: 1px solid #000000;
    }

    It gives a 1 pixel width black border at bottom.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘how to add a horizontal line after each post? & remove "posted in"’ is closed to new replies.