Remove "next/previous post" links from a Post – CSS snippet

  • Also I was struggling with removing the next/previous page links at the bottom of my posts. Initially I thought it was the “Related Content” stuff, but finally got the correct code to remove the black, italicized links that appear at the bottom of Posts – use both of these snippets:

    .main .comments-navigation .nav-previous, .main .post-navigation .nav-previous { display: none !important; }
    
    .main .comments-navigation .nav-next, .main .post-navigation .nav-next { display: none !important; }

    The blog I need help with is: (visible only to logged in users)

  • The topic ‘Remove "next/previous post" links from a Post – CSS snippet’ is closed to new replies.