Falls jemand ein ähnliches Problem hat, dass die Anzahl der Pagination-Buttons (Seitennavigation) zu hoch ist, z.B. zur Darstellung auf dem Smartphone, hier die Lösung:
Den hier
Pagination not responsive on mobile · Issue #32674 · joomla/joomla-cms
gezeigten Code muss man in der Datei .../layouts/joomla/pagination/list.php (nicht im Template-Ordner, sondern im Hauptordner "Layouts") an der besagten Stelle ergänzen und dann die $maxPages-Variable nach BEdarf anpassen.
Ich habe in user.css dann die Knöpfe und Abstände für kleine Viewports noch schmaler gemacht, dann passt es:
@media (max-width: 480px) {
.pagination .page-item {
margin: 3px;
}
a.page-link, span.page-link {
width: 25px;
text-align: center !important;
padding-left: 0px;
padding-right: 0px;
}
}