• My website is built with Posts, which don’t need Previous & Next Posts listed.
    I would like to hide those from the bottom of the screen. The Theme is Hemingway.

    I have tried pasting each of these into the Custom CSS, based on searching the forums, but none have worked. Any suggestions…?

    <strong>.post-navigation .nav-links {    display: none;}
    
    .single .nav-links {    display: none;}
    
    .nav-links {	display: none;}
    
    #paging,.entry-related{display:none;}
    
    .single .post-navigation { display: none; }
    
    .nav-previous {display: none;}
    .nav-next {display: none;}
    
    .default-wp-page{	display: none;}
    
    .post-navigation {    display: none;}
    
    #nav-single { display: none; }</strong>

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • I check the site you provided a link to with your post and I do not see the Previous & Next post links you are referring to. I would be happy to provide you the specific CSS that would accomplish this for the theme you are using but since I do not see them I can not. Kindly let me know which theme you are having the problem with so I can get you the CSS you need for the theme you are using.

    Thread Starter wayneseger

    (@wayneseger)

    Thank you! Maybe they are not visible, because the Home Page and immediately following are Pages. The Posts are in a little deeper. The Theme is Hemingway.

    Here is one of the post links. https://playmap.net/charlevoix-area-couples-in-summer-33-2/

    Try adding the below CSS to your Custom CSS.

    nav.post-nav.group {
        display: none;
    }

    Hope this helps, if it does not try adding !important like the code below:

    nav.post-nav.group {
        display: none !important;
    }

    Do your best not to use !important unless you have to it is generally not considered development standards to use it. Feel free to let me know if you are having to use it to get your desired result or if neither of these solutions work. I will try to think of another solution for you if needed.

    Happy Blogging!

    Thread Starter wayneseger

    (@wayneseger)

    It worked! Thank you!!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide Previous Post Next Post’ is closed to new replies.