How do I add a line separator between posts ?

  • Unknown's avatar

    Currently my theme doesnt show wordpresss’s built in function.

    I need to separate each post on the homepage with a horizontal line ?

    anybody know the code and where I would insert this ?

    Thank you

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Your posts on the main page already have a horizontal line separating them. If you wish to change the color of that line, add the following CSS and edit the border-color value as desired.

    #recent-excerpts li {
        border-color: #cc0000;
    }

    It is currently a dotted border, so if you want to change color and make it solid, add the following instead.

    #recent-excerpts li {
        border-color: #cc0000;
        border-bottom-style: solid;
    }
  • The topic ‘How do I add a line separator between posts ?’ is closed to new replies.