"Embed" datafield size is not changeable anymore

In the List details block, changing the width of the embed field type no longer changes the size. Changing width has no effect at all now.

Hello @meenal.malhotra,

Can I please ask you to share the URL where I can see this problem?

1 Like

I’ve also been having issues with this.

1 Like

Well, I was able to have a way around this by changing the iframe code.

Old code: that worked fine earlier, but doesn’t now


<div style="position: relative; padding-bottom: 56.25%; height: 0;">
<iframe src="https://drive.google.com/file/d/1pRM4f1WESDMlXcvt3B5gGMWqRT-6yAKZ/preview" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"></iframe>
</div>

New code: which now works with softr embed field:

<div style="position:relative;width:fit-content;height:fit-content;">              
<iframe allow="autoplay;" allowfullscreen style="border:none" src="https://soundcloud.com/tawqir-abdullah-974921250/new-recording-7" width="640" height="360"></iframe>           
</div>

So this new code you can control the width and height directly from iframe code.
Hope this helps!