Author is Aleš Sýkora
Updated: 9. 3. 2022, Added: 9. 3. 2022
Repeater pagination position FIX for Oxygen Builder
If you use repeater in Oxygen Builder you may already know, that pagination component is on same position as columns.
So when you use the grid in repeater, you may encounter it at wrong position. How to fix it? Just add this to your CSS:
For CSS Grid:
.oxy-repeater-pages-wrap {
grid-column: 1 / -1;
}
For flexbox:
.oxy-repeater-pages-wrap {
width: 100%;
}
And after that, position in CSS Grid should be fixed:
You can also use the css grid column span with the number of your columns, but it is not really responsive.