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 alexandria-library.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
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 alexandria-library.com.
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.
Hi! Sorry for the belated answer, I was on vacations. It's working just fine, thanks a million! :)
This topic has been closed to new replies.