• Resolved javadth

    (@javadth)


    hi
    when you enable the ” read more “button, it adds this button exactly after the post ends,

    how can i add this ” read more ” 1 line lower in first of paragraph?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WPKube

    (@wpkube)

    Hi,

    Add this in WP admin > Appearance > Customize > Additional CSS:

    a.read-more {
        display: block;
    }
    Thread Starter javadth

    (@javadth)

    how can I give it a border

    something like it https://ibb.co/qpY1RxN

    Plugin Author WPKube

    (@wpkube)

    Hi,

    Go to WP admin > Settings > Excerpt. For the “Read More Link” option there is a text input field, set it to:

    <span>The button text</span>

    Change “The button text” to what you need of course.

    And for the CSS, add this:

    a.read-more {
        display: block;
        margin-top: 10px;
        color: inherit;
    }
    a.read-more span {
        display: inline-block;
        border: 1px solid #000;
        padding: 7px 15px;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘how to add read more button 1 line lower?’ is closed to new replies.