Hi there,
Use the following CSS, replacing own text with the text you want to display in each case. Please make sure that you don’t remove the ” ” – the quotation marks need to be there.
/* Replace "Previous", "Next" and "Archive" text with custom text */
.single-jetpack-portfolio .nav-links .nav-previous span.meta-nav, .single-jetpack-portfolio .nav-links .nav-next span.meta-nav, .single-jetpack-portfolio .nav-links .nav-archive span.meta-nav {
font-size: 0;
}
.single-jetpack-portfolio .nav-links .nav-previous span.meta-nav::before {
content: "own text";
font-size: 13px;
}
.single-jetpack-portfolio .nav-links .nav-next span.meta-nav::before {
content: "own text";
font-size: 13px;
}
.single-jetpack-portfolio .nav-links .nav-archive span.meta-nav::before {
content: "own text";
font-size: 13px;
}
/* Replace "View other projects" with custom text */
.single-jetpack-portfolio .nav-links .nav-archive a span:nth-child(2) {
font-size: 0;
}
.single-jetpack-portfolio .nav-links .nav-archive a span:nth-child(2)::before {
content: "own text";
font-size: 15px;
}
Thanks kokkieh! It works 🙂