Suppress 'Précédent' button?

  • Unknown's avatar

    Hi, i would like to suppress the ‘Précédent’ button at the bottom of all the pages because it dosen’t work good on a smartphone…

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

  • Hi @kurunglu!

    I’ve just moved this over to the CSS forum, since that’s what we’d need to hide those links.

    When I test your site on my phone, the link for the previous post works – can you tell me a little more about what’s happening for you, and what kind of phone and browser you’re seeing an issue on?

    Here’s the CSS to hide the previous post link:

    div.nav-prev {
    	display: none;
    }

    This is to hide the next post s link:

    div.nav-prev {
    	display: none;
    }

    And this will hide them both at the same time, if that’s what you’d like to do:

    .post-navigation {
    	display: none;
    }

    Let me know how it goes!

  • The topic ‘Suppress 'Précédent' button?’ is closed to new replies.