Viewing 3 replies - 1 through 3 (of 3 total)
  • Line 702 of your style.css

    .hentry, .no-results {
        border-bottom: 1px solid #DDDDDD;
        margin: 0 0 1.625em;
        padding: 0 0 1.625em;
        position: relative;
    }

    just remove the border-bottom

    Since you using default theme Twenty eleven you will need to create a child theme and then make changes to theme
    http://codex.wordpress.org/Child_Themes
    copy this code in child theme style.css
    .hentry, .no-results {
    border-bottom: 1px solid #DDDDDD;
    margin: 0 0 1.625em;
    padding: 0 0 1.625em;
    position: relative;
    }
    change border-bottom 1px to 0

    Thread Starter drumlerry

    (@drumlerry)

    Thank you Christine and thank you govpatel for great support 🙂
    Horizontal line is now gone

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove horizontal line above comments’ is closed to new replies.