Support » Fixing WordPress » Remove two lines from previous and next post

  • Hi there,

    Is it possible to remove the two lines at the end of blog posts?

    I’ve already removed the previous and next post option with code.

    The first two lines of the code I found online helped eliminate the previous and next option, the other lines were attempts at solving the lines issue.

    Website:
    https://westernmonkey.com/confucius-institute-scholarship-review/

    Code:

    .single-post .post-navigation {
      display: none;
    }
    
    hr.styled-separator {
    display: none;
    }
    
    .pagination-single.section-inner.only-one.only-prev {
        display: none;
    }

    Any help is much appreciated!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Could you describe which lines you mean in that link? What do the lines currently display?

    Thread Starter Leonardo

    (@xleonardo)

    They are at the bottom of the page, just above the comments section. They have no purpose whatsoever, before, it used to appear inside of them a Before and Next Post but I deleted these buttons with the first two lines of code because they are unnecesary.

    html.colibri-wp-theme #colibri .style-572 .blog-post-comments {
     border: none;
    }

    Will remove the bottom border.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.