Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter jack_martin_leith

    (@jack_martin_leith)

    This seems to be the CSS for the Posts page separator:

    `.postlist .postfooterarea footer {
    padding: 10px 20px;
    border-top: 1px solid #eee;
    border-top-color: rgb(238, 238, 238);
    border-top-color: rgba(0,0,0,.1);
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-bottom-left-radius: 5px;
    -moz-border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -moz-box-shadow: 0 -3px rgba(0,0,0,.1) inset;
    -webkit-box-shadow: 0 -3px rgba(0,0,0,.1) inset;
    -o-box-shadow: 0 -3px rgba(0,0,0,.1) inset;
    box-shadow: 0 -3px rgba(0,0,0,.1) inset;

    Ideally, I’d like the whole thing to be replaced by a 1px rule, #CCCCCC. Failing that, for it to disappear altogether. Hope someone can help me with this.

    hannah

    (@hannahritner)

    Hi,
    Thanks for reaching out and sincere apologies for the delay!
    You can use this css for what you’re after:

    footer.single-footer.clearfix {
        display: none;
    }
    .postlist .postfooterarea {
        display: none;
    }

    Hope that helps!

    Best,
    Hannah

    Thread Starter jack_martin_leith

    (@jack_martin_leith)

    Thanks Hannah. Success! The posts list is now a bit gappy, but it’s a big improvement. Best wishes from Bristol, UK.

    hannah

    (@hannahritner)

    Of course! Let me know if there’s anything else I can help you with.

    Best,
    Hannah

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove separator between blog summaries’ is closed to new replies.