Sorry but yes, i did understand it. You just call the getPagesCounter and getPagesLinks function from Joomla. But the above additional lines change the CSS in PG, not the template. So maybe you could use a more configurable pagination for PG instead of the standard Joomla function. That would be extremly nice. Just a small configuration for horizontal, vertical, bullets, no bullets, spacing or colors. Nothing fancy.
I finally managed to change the CSS of PG with
Code: Select all
.pagination li {
display:inline;
padding:10px;
}Now i only have to work on the spacing between the links.
Dieter
PS:
I am wondering why there is only the pagination on the bottom. Wouldn't it be nice to have it on the top as well for easy navigation ? Then you don't have to scroll the page all the way down ... just an idea.
EDIT
You were right. All the styling is done via the template.css. I just added the lines
Code: Select all
.pagination ul li {display: inline-block;margin-right: 8px;}
.pagination ul {text-align: center;}

