Make data repeat horizontal

What is the best way to make data repeat horizontal? I want to use data to display sponsors in one row across the page. (Like in blocks)

@rokit
The repeater just repeats the elements inside, it does not control the direction.
The direction is controlled by the type of elements you are repeating. If they are block elements, they will appear vertically, while if you are repeating inline or inline-block elements they will be repeated on one line …

So the easiest way would be to use CSS, add a class to the repeated element and set the element display properties to inline.

.my-element {
    display: inline;
}

More info about this: https://www.w3schools.com/css/css_display_visibility.asp

I put a repeat on the column and it displays exactly like i want in wappler but the page displays blank live.
https://www.pasprintseries.com/Includes/SponsorBlockHor.php

But this is just some include page you cannot just run it like that in the browser. It needs to be previewed in its main page.

1 Like

Oh cool, sorry, I thought since it was php it would just display. I added it to my page and it works! thanks

1 Like