How make a repeating group's cells flow like text?

Hi David, That worked perfectly, thanks.

image

I found the previous post you were talking about;

Thanks @sudsy for that.

I’d never tried adding CSS before. For any other beginners out there this was super easy…

  1. Set up a HTML block to add your CSS and associate your element’s ID. This oldish YouTube video explains that well.
  2. Paste in this code (where yourelementid is id you’d assigned to your rg as per the above video)
<style>
   #yourelementid 
   {
      display: flex;
      flex-wrap: wrap;
   }
</style>
3 Likes