I am currently transferring an application from Bootstrap 3 where the previous pager had this appearance:
https://i.sstatic.net/0gqIo.png
Here is the code snippet for the old pager:
<nav>
<ul class="pager">
<li class="previous disabled"><a href="#"><span class="glyphicon glyphicon-arrow-left"></span></a></li>
<li>1/402</li>
<li class="next"><a href="#"><span class="glyphicon glyphicon-arrow-right"></span></a></li>
</ul>
</nav>
After consulting the Bootstrap 4 documentation, I have transitioned to the following structure:
<nav>
<ul class="pagination">
<li class="page-item disabled"><a class="page-link" href="#" tabindex="-1"><span class="fa fa-arrow-left"></span></a></li>
<li class="justify-content-center">1/395</li>
<li class="page-item"><a class="page-link" href="#"><span class="fa fa-arrow-right"></span></a></li>
</ul>
</nav>
This now renders as shown below:
https://i.sstatic.net/Ukye1.png
If anyone knows how to position the buttons at both ends of the screen and make them round in shape, your help would be greatly appreciated.
Thank you
EDIT 1: With the assistance of ZimSystem, the desired button shape is almost achieved, but there is still a rendering issue where the buttons appear as half circles instead of full circles.