› Rooms › General Divi › change text of “older entries”
Tagged: archive, category, change text, pagination
- This topic has 6 replies, 2 voices, and was last updated 2 years ago by
Colin Sik.
-
-
6 September 2021 at 6:35 am #1076
-
6 September 2021 at 6:36 am #1077
-
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.
-
This reply was modified 2 years ago by
-
6 September 2021 at 6:43 am #1085::
If you prefer JavaScript, you can put this into the “Integrations” tab:
<script type="text/javascript">
(function($) {
$(document).ready(function() {
var olderText = '<< Your Older Posts Text Here'; var newerText = 'Your Newer Posts Text Here >>';
$('.pagination > .alignleft a').html( olderText );
$('.pagination > .alignright a').html( newerText );
});
})(jQuery);
</script>
-
6 September 2021 at 6:44 am #1087
-
-
- You must be logged in to reply to this topic.