Forums

[resolved] [Theme: Painter] Adding a divider line between posts (3 posts)

  1. kellyjmat
    Member
    Posted 8 months ago #

    I am using the Painter theme and would like to add a simple line between my posts in the burgundy color (#a11313) to match my blog, Coupons, Crafts and Causes. I'm in need of the code and instructions of where to put it.
    Thanks, Kelly

    http://wordpress.org/extend/themes/painter/

  2. alchymyth
    The Sweeper
    Posted 8 months ago #

    in style.css of your theme, find:

    /**********************************************************************
      Posts
    **********************************************************************/
    <hr />
    .post
    {
      clear:both;
      margin:0px 0px 10px 0px;
      padding:10px 10px 14px 10px;
    }

    remove the invalid <hr /> from the styles (html is not allowed in a stylesheet) and add something like this instead:

    #content .post
    {
      border-bottom: 1px solid #a11313;
    }
  3. kellyjmat
    Member
    Posted 8 months ago #

    OMG!!! You are awesome!!! Thank you SO much!! I've worked for hours trying to figure this out!

    Have a great day!! :)

Reply

You must log in to post.

About this Topic