I’ve finally got round to building a new site from scratch with Treepl. I’ve figure out most things but don’t know how to get to the pagination code to modify how its rendered. Hopefully its something easy to do?
Does anyone know how ?
Hey @Adele_Taylor looks like you need some styling. Pagination is set up internally as an unordered list, so you can target the ul and li’s.
To display inline, set your li to display: inline-block, to remove bullets just set ul to have: list-style-type: none. Then from there you can style as you wish. You can also target “prev”, “next” and “active” states.
I think the default for this should be the default formatting we all apply i.e. horizontal, no bullets. And maybe there should be an option to output the raw list as displayPaginationRaw. What do you think?
It has already been release (v5.9)
In the component toobox, when you select “Display Pagination” you’ll now have the option to select “Styled Pagination”.
Basically this added a new parameter to the component tag of styledPagination: "true".