How can i make the first image is on top of other image in repeating group

image
So the default of repeating group is like this last photo is on top and I want to reverse that to first photo is on top. How can I do it

Good question! I’m not sure it can be done natively in Bubble within a repeating group without adding some CSS (to adjust the Z-index)

@boredapewokeclub Hi, have you solved this problem?
I’m facing the exact same situation and willing to know the solution for this.

@lregefalk It would be great if you can explain how to solve this using css

Here’s the solution
Add an HTML element to your RG first cell
use this:

<style>
.entry-Current cell's index {
 z-index: -Current cell's index;
}
</style>