Support » Fixing WordPress » How to add horizontal line between posts

  • Hi All,

    I am trying to add a line between posts. I am using F8 lite theme and have tried to change style.css files and many other files but can’t seem to make it work.

    Looking forward to a response….

    Thanks!

Viewing 2 replies - 16 through 17 (of 17 total)
  • Thread Starter neerajdoshi

    (@neerajdoshi)

    thanks Jarret, I was able to create separator. really appreciate your and davidandre’s help here.
    a quick follow up question is it possible to decorate the separator like instead of a line, could it be ‘*’ ?

    thanks

    In the CSS styling code I showed above

    .separator {
    margin: 10px auto 10px auto;
    width: 75%;
    height: 2px;
    border-bottom: 1px solid black;

    on border-bottom there are 8 possible solutions.

    dotted
    dashed
    solid
    double
    groove
    ridge
    inset
    outset

    so if you wanted to try the groove styling you would do

    border-bottom: 1px groove black;

    Due to the groove styling you may need to increase the 1px to something higher like 2px or 3px.

Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘How to add horizontal line between posts’ is closed to new replies.