Forum Discussion
BrandonHudson-0
5 months agoCommunity Member
IFrame embed not working properly
Articulate Rise is not properly displaying Iframe embedded objects. See the attached image. Its basically displaying it as like a banner or something. I've done nothing weird with the iframe code. J...
KendalRasnake-1
Community Member
Hi Brandon,
I am able to replicate your issue.
A quick fix is simply changing the percentage of the height parameter. Here is the embed code with that simple fix.
<iframe src="https://www.youtube.com/embed/F3inX3-VtOk?si=iFlfsRLikjzavNzc" width="200%" height="900%"></iframe>
If I understand HTML code correctly, you are also not restricted to using percentages. Changing the percent parameters to numbers may allow you to specify the pixel sizes for width and height. Here is some embed code that I tried doing that.
<iframe src="https://www.youtube.com/embed/F3inX3-VtOk?si=iFlfsRLikjzavNzc" width="1000" height="600"></iframe>
BrandonHudson-0
5 months agoCommunity Member
That worked! Much appreciated! Weird that is now happening, but whatevs...this workaround works!