Hi David, That worked perfectly, thanks.
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…
- Set up a HTML block to add your CSS and associate your element’s ID. This oldish YouTube video explains that well.
- 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>