Archived topic
pagination for GP custom page template
3 replies · Started by yuuta4ds on August 7, 2022
Viewing posts 1–4 of 4
H!
How can i do to customize the pagination symbol → to >
Hello there,
You can try adding this CSS in Customize > Additional CSS:
.next.page-numbers span {
display: none;
}
.next.page-numbers:after {
content: ">";
}
previous not changes
.next.page-numbers span, .prev.page-numbers span {
display: none;
}
.next.page-numbers:after {
content: ">";
}
.prev.page-numbers:before {
content: "<";
}
This archived topic is closed to new replies.