› Rooms › General Divi › change text of “older entries” › Reply To: change text of “older entries”
6 September 2021 at 6:42 am
#1084
::
This should help you out. Also includes changing “Newer Entries”. Put in your child stylesheet or theme Custom CSS area.
.pagination > .alignleft a:before {
content: '<< Your Older Posts Text Here'; visibility: visible; } .pagination > .alignleft a {
visibility: collapse;
}
.pagination > .alignright a:before {
content: 'Your Newer Posts Text Here >>';
visibility: visible;
}
.pagination > .alignright a {
visibility: collapse;
}
-
This reply was modified 2 years ago by
Colin Sik.