Rooms General Divi change text of “older entries” Reply To: change text of “older entries”

#1084
Terry Hale
Keymaster
    @mizagorn
    Up
    1
    Down
    ::

    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.