Edit "Older Posts" link on homepage

  • Unknown's avatar

    Hi all,

    At the bottom of the homepage of the blog, I need to change the phrasing “Older posts” to “More resources”.

    How can I do that?
    Thanks a lot! :)
    Anne

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

  • Unknown's avatar

    There really isn’t a simple way to do that with CSS, but here’s one possible workaround. It’s a bit tricky:

    .nav-entries a div {
    	visibility: hidden;
    }
    
    .nav-entries a .nav-next span:after {
    	content: "More resources 2192";
    	visibility: visible;
    }
    
    .nav-entries a .nav-prev span:before {
    	content: "2190 More resources";
    	visibility: visible;
    }

    Note that depending on which page you’re on, you would have seen “Older posts” or “Newer posts” and the example above sets them both to say “More resources.” Adjust the text in the example as necessary.

  • Unknown's avatar

    Hi! Sorry for the belated answer, I was on vacations. It’s working just fine, thanks a million! :)

  • The topic ‘Edit "Older Posts" link on homepage’ is closed to new replies.