[Support request] How to add a divider line ?

Home Forums Support [Support request] How to add a divider line ?

Home Forums Support How to add a divider line ?

  • This topic has 1 reply, 2 voices, and was last updated 4 years ago by David.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #887700
    David

    Hi,

    I snipped this photo from another blog… was wondering if it is possible to add this type of small divider line with some spacing options to generate press ? – below the blog title on the home page / categories ?

    Screen shot: https://cl.ly/587705f84a69

    Thanks!

    #887751
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    body:not(.single) .entry-title {
        position: relative;
        padding-bottom: 1.5em;
    }
    body:not(.single) .entry-title:after {
        content: '';
        position: absolute;
        bottom: 0.75em;
        left: 0;
        width: 60px;
        border-bottom: 2px solid #000000;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.