Hi All,
I have this gallery that is shown vertically as in:
-Consider that the brackets are is the gallery and the "i"'s are the items
[ i , i , i , i , i , i , i , i , i]
This works well and all.
Problem is that I am handling the size of the items dynamically so it scales with different screen sizes.
Given that, If I try to display the gallery by wrapping the number of items that fits the width. See below an example:
-Let's say the current width of the screen can accommodate 3 items horizontally in the gallery then wrap will be 3:
[ i , i , i ,
i , i , i ,
i , i , i]
Happens exactly like that but then, I have huge gaps between the rows because I can't control (dynamically) the template height, only template width, do we have any alternatives for galleries? that I can achieve this pattern?
Thank you all.