Currently, I am utilizing the TablePress plugin on my WordPress website and I am aiming to achieve a pagination layout similar to this illustration: . How can I modify the pagination to display the text 'page 1 of X' instead of 'previous' and 'next' buttons?
You can view how my current pagination appears on my site here: . Below is the CSS code that I am currently using:
.dataTables_paginate a {
font-family: Montserrat;
font-size: 12px;
text-decoration: none !important;
}
.dataTables_paginate {
float: none;
text-align: center;
}
.paging_simple .paginate_button.previous,
.paging_simple .paginate_button.next {
background-image: linear-gradient(to right,#fbcabb,#ceb6d9);
border-radius: 15px;
}
.paging_simple .paginate_button.previous,
.paging_simple .paginate_button.previous:before,
.paging_simple .paginate_button.next {
padding: 10px 40px;
}