Hello,
I'm new to PW and need some help. I created a simple gallery which is working fine, but I can't figure it out how to create some styling for pagination.
I use this for pagination:
<?= $a->renderPager() ?>
My html look like this:
<div class="numeric-pagination">
<a href="#" class="button"><i class="icons icon-left-dir"></i></a>
<a href="#" class="button">1</a>
<a href="#" class="button active-button">2</a>
<a href="#" class="button">3</a>
<a href="#" class="button"><i class="icons icon-right-dir"></i></a>
</div>
I hope you understand what I want to create.
Thank you
R